diff --git a/stage0/src/runtime/hash.cpp b/stage0/src/runtime/hash.cpp index 3ca1ce0d2c..526411ac18 100644 --- a/stage0/src/runtime/hash.cpp +++ b/stage0/src/runtime/hash.cpp @@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ +#include #include "runtime/hash.h" namespace lean { @@ -17,11 +18,13 @@ static uint64 MurmurHash64A(void const * key, size_t len, uint64 seed) { uint64 h = seed ^ (len * m); - const uint64 * data = (const uint64 *)key; - const uint64 * end = data + (len/8); + const unsigned char * data = reinterpret_cast(key); + const unsigned char * end = data + (len/8)*8; while (data != end) { - uint64 k = *data++; + uint64 k; + memcpy(&k, data, 8); + data += 8; k *= m; k ^= k >> r; diff --git a/stage0/src/runtime/io.cpp b/stage0/src/runtime/io.cpp index 8b2611515a..7f1e96f870 100644 --- a/stage0/src/runtime/io.cpp +++ b/stage0/src/runtime/io.cpp @@ -1094,28 +1094,20 @@ structure Metadata where constant metadata : @& FilePath → IO IO.FS.Metadata */ -static obj_res timespec_to_obj(timespec const & ts) { +static obj_res timespec_to_obj(uv_timespec_t const & ts) { object * o = alloc_cnstr(0, 1, sizeof(uint32)); cnstr_set(o, 0, lean_int64_to_int(ts.tv_sec)); cnstr_set_uint32(o, sizeof(object *), ts.tv_nsec); return o; } -static obj_res metadata_core(struct stat const & st) { - object * mdata = alloc_cnstr(0, 2, sizeof(uint64) + sizeof(uint8)); -#ifdef __APPLE__ - cnstr_set(mdata, 0, timespec_to_obj(st.st_atimespec)); - cnstr_set(mdata, 1, timespec_to_obj(st.st_mtimespec)); -#elif defined(LEAN_WINDOWS) - // TODO: sub-second precision on Windows - cnstr_set(mdata, 0, timespec_to_obj(timespec { st.st_atime, 0 })); - cnstr_set(mdata, 1, timespec_to_obj(timespec { st.st_mtime, 0 })); -#else +static obj_res metadata_core(uv_stat_t const & st) { + object * mdata = alloc_cnstr(0, 2, 2 * sizeof(uint64) + sizeof(uint8)); cnstr_set(mdata, 0, timespec_to_obj(st.st_atim)); cnstr_set(mdata, 1, timespec_to_obj(st.st_mtim)); -#endif cnstr_set_uint64(mdata, 2 * sizeof(object *), st.st_size); - cnstr_set_uint8(mdata, 2 * sizeof(object *) + sizeof(uint64), + cnstr_set_uint64(mdata, 2 * sizeof(object *) + sizeof(uint64), st.st_nlink); + cnstr_set_uint8(mdata, 2 * sizeof(object *) + 2 * sizeof(uint64), S_ISDIR(st.st_mode) ? 0 : S_ISREG(st.st_mode) ? 1 : #ifndef LEAN_WINDOWS @@ -1130,11 +1122,16 @@ extern "C" LEAN_EXPORT obj_res lean_io_metadata(b_obj_arg filename) { if (strlen(fname) != lean_string_size(filename) - 1) { return mk_embedded_nul_error(filename); } - struct stat st; - if (stat(fname, &st) != 0) { - return io_result_mk_error(decode_io_error(errno, filename)); + uv_fs_t req; + int ret = uv_fs_stat(NULL, &req, fname, NULL); + if (ret < 0) { + uv_fs_req_cleanup(&req); + return io_result_mk_error(decode_uv_error(ret, filename)); + } else { + object* mdata = metadata_core(req.statbuf); + uv_fs_req_cleanup(&req); + return mdata; } - return metadata_core(st); } extern "C" LEAN_EXPORT obj_res lean_io_symlink_metadata(b_obj_arg filename) { @@ -1145,11 +1142,16 @@ extern "C" LEAN_EXPORT obj_res lean_io_symlink_metadata(b_obj_arg filename) { if (strlen(fname) != lean_string_size(filename) - 1) { return mk_embedded_nul_error(filename); } - struct stat st; - if (lstat(string_cstr(filename), &st) != 0) { - return io_result_mk_error(decode_io_error(errno, filename)); + uv_fs_t req; + int ret = uv_fs_lstat(NULL, &req, fname, NULL); + if (ret < 0) { + uv_fs_req_cleanup(&req); + return io_result_mk_error(decode_uv_error(ret, filename)); + } else { + object* mdata = metadata_core(req.statbuf); + uv_fs_req_cleanup(&req); + return mdata; } - return metadata_core(st); #endif } @@ -1328,10 +1330,13 @@ extern "C" LEAN_EXPORT obj_res lean_io_remove_file(b_obj_arg filename) { if (strlen(fname) != lean_string_size(filename) - 1) { return mk_embedded_nul_error(filename); } - if (std::remove(fname) == 0) { - return io_result_mk_ok(box(0)); + uv_fs_t req; + int ret = uv_fs_unlink(NULL, &req, fname, NULL); + uv_fs_req_cleanup(&req); + if (ret < 0) { + return io_result_mk_error(decode_uv_error(ret, filename)); } else { - return io_result_mk_error(decode_io_error(errno, filename)); + return io_result_mk_ok(box(0)); } } diff --git a/stage0/stdlib/Init/Data/Ord/Basic.c b/stage0/stdlib/Init/Data/Ord/Basic.c index c183ac313a..65ae1c2fe4 100644 --- a/stage0/stdlib/Init/Data/Ord/Basic.c +++ b/stage0/stdlib/Init/Data/Ord/Basic.c @@ -191,14 +191,10 @@ LEAN_EXPORT uint8_t l_Ord_opposite___redArg___lam__0(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Ord_opposite___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_opposite___redArg(lean_object*); LEAN_EXPORT lean_object* l_Ord_opposite(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Ord_on___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Ord_on___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_on___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_on(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_lex___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_lex(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Ord_lex_x27___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Ord_lex_x27___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_lex_x27___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ord_lex_x27(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Ordering_ctorIdx(uint8_t x_1) { @@ -2187,34 +2183,15 @@ lean_closure_set(x_3, 0, x_2); return x_3; } } -LEAN_EXPORT uint8_t l_Ord_on___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -lean_inc(x_1); -x_5 = lean_apply_1(x_1, x_3); -x_6 = lean_apply_1(x_1, x_4); -x_7 = lean_apply_2(x_2, x_5, x_6); -x_8 = lean_unbox(x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Ord_on___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; lean_object* x_6; -x_5 = l_Ord_on___redArg___lam__0(x_1, x_2, x_3, x_4); -x_6 = lean_box(x_5); -return x_6; -} -} LEAN_EXPORT lean_object* l_Ord_on___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Ord_on___redArg___lam__0___boxed), 4, 2); -lean_closure_set(x_3, 0, x_2); -lean_closure_set(x_3, 1, x_1); +x_3 = lean_alloc_closure((void*)(l_compareOn___boxed), 6, 4); +lean_closure_set(x_3, 0, lean_box(0)); +lean_closure_set(x_3, 1, lean_box(0)); +lean_closure_set(x_3, 2, x_1); +lean_closure_set(x_3, 3, x_2); return x_3; } } @@ -2222,9 +2199,11 @@ LEAN_EXPORT lean_object* l_Ord_on(lean_object* x_1, lean_object* x_2, lean_objec _start: { lean_object* x_5; -x_5 = lean_alloc_closure((void*)(l_Ord_on___redArg___lam__0___boxed), 4, 2); -lean_closure_set(x_5, 0, x_4); -lean_closure_set(x_5, 1, x_3); +x_5 = lean_alloc_closure((void*)(l_compareOn___boxed), 6, 4); +lean_closure_set(x_5, 0, lean_box(0)); +lean_closure_set(x_5, 1, lean_box(0)); +lean_closure_set(x_5, 2, x_3); +lean_closure_set(x_5, 3, x_4); return x_5; } } @@ -2244,48 +2223,15 @@ x_5 = l_lexOrd___redArg(x_3, x_4); return x_5; } } -LEAN_EXPORT uint8_t l_Ord_lex_x27___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_6; -lean_inc(x_4); -lean_inc(x_3); -x_5 = lean_apply_2(x_1, x_3, x_4); -x_6 = lean_unbox(x_5); -if (x_6 == 1) -{ -lean_object* x_7; uint8_t x_8; -x_7 = lean_apply_2(x_2, x_3, x_4); -x_8 = lean_unbox(x_7); -return x_8; -} -else -{ -uint8_t x_9; -lean_dec(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_9 = lean_unbox(x_5); -return x_9; -} -} -} -LEAN_EXPORT lean_object* l_Ord_lex_x27___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; lean_object* x_6; -x_5 = l_Ord_lex_x27___redArg___lam__0(x_1, x_2, x_3, x_4); -x_6 = lean_box(x_5); -return x_6; -} -} LEAN_EXPORT lean_object* l_Ord_lex_x27___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Ord_lex_x27___redArg___lam__0___boxed), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); +x_3 = lean_alloc_closure((void*)(l_compareLex___boxed), 6, 4); +lean_closure_set(x_3, 0, lean_box(0)); +lean_closure_set(x_3, 1, lean_box(0)); +lean_closure_set(x_3, 2, x_1); +lean_closure_set(x_3, 3, x_2); return x_3; } } @@ -2293,9 +2239,11 @@ LEAN_EXPORT lean_object* l_Ord_lex_x27(lean_object* x_1, lean_object* x_2, lean_ _start: { lean_object* x_4; -x_4 = lean_alloc_closure((void*)(l_Ord_lex_x27___redArg___lam__0___boxed), 4, 2); -lean_closure_set(x_4, 0, x_2); -lean_closure_set(x_4, 1, x_3); +x_4 = lean_alloc_closure((void*)(l_compareLex___boxed), 6, 4); +lean_closure_set(x_4, 0, lean_box(0)); +lean_closure_set(x_4, 1, lean_box(0)); +lean_closure_set(x_4, 2, x_2); +lean_closure_set(x_4, 3, x_3); return x_4; } } diff --git a/stage0/stdlib/Init/Data/Slice/Array/Lemmas.c b/stage0/stdlib/Init/Data/Slice/Array/Lemmas.c index 554ac2f3a1..b49d47c072 100644 --- a/stage0/stdlib/Init/Data/Slice/Array/Lemmas.c +++ b/stage0/stdlib/Init/Data/Slice/Array/Lemmas.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.Slice.Array.Lemmas -// Imports: import all Init.Data.Array.Subarray import all Init.Data.Slice.Array.Basic import Init.Data.Slice.Lemmas public import Init.Data.Slice.Array.Iterator import all Init.Data.Slice.Array.Iterator import all Init.Data.Slice.Operations import all Init.Data.Range.Polymorphic.Iterators import all Init.Data.Range.Polymorphic.Lemmas import Init.Data.Slice.List.Lemmas public import Init.Data.List.Control public import Init.Data.Nat.MinMax public import Init.Data.Slice.Array.Basic import Init.Data.List.Nat.TakeDrop import Init.Data.List.TakeDrop +// Imports: public import Init.Data.Slice.Array.Iterator import all Init.Data.Array.Subarray import all Init.Data.Slice.Array.Basic import Init.Data.Slice.Lemmas import all Init.Data.Slice.Array.Iterator import all Init.Data.Slice.Operations import all Init.Data.Range.Polymorphic.Iterators import all Init.Data.Range.Polymorphic.Lemmas import Init.Data.Slice.List.Lemmas public import Init.Data.List.Control public import Init.Data.Nat.MinMax public import Init.Data.Slice.Array.Basic import Init.Data.List.Nat.TakeDrop import Init.Data.List.TakeDrop public import Init.Data.Array.Subarray.Split import all Init.Data.Array.Subarray.Split import Init.Data.Slice.InternalLemmas #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -63,11 +63,11 @@ x_8 = l___private_Init_Data_Slice_Array_Lemmas_0__Std_IterStep_successor_match__ return x_8; } } +lean_object* initialize_Init_Data_Slice_Array_Iterator(uint8_t builtin); lean_object* initialize_Init_Data_Array_Subarray(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Array_Basic(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Lemmas(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Array_Iterator(uint8_t builtin); -lean_object* initialize_Init_Data_Slice_Array_Iterator(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Operations(uint8_t builtin); lean_object* initialize_Init_Data_Range_Polymorphic_Iterators(uint8_t builtin); lean_object* initialize_Init_Data_Range_Polymorphic_Lemmas(uint8_t builtin); @@ -77,11 +77,17 @@ lean_object* initialize_Init_Data_Nat_MinMax(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Array_Basic(uint8_t builtin); lean_object* initialize_Init_Data_List_Nat_TakeDrop(uint8_t builtin); lean_object* initialize_Init_Data_List_TakeDrop(uint8_t builtin); +lean_object* initialize_Init_Data_Array_Subarray_Split(uint8_t builtin); +lean_object* initialize_Init_Data_Array_Subarray_Split(uint8_t builtin); +lean_object* initialize_Init_Data_Slice_InternalLemmas(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data_Slice_Array_Lemmas(uint8_t builtin) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; +res = initialize_Init_Data_Slice_Array_Iterator(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Init_Data_Array_Subarray(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -94,9 +100,6 @@ lean_dec_ref(res); res = initialize_Init_Data_Slice_Array_Iterator(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Data_Slice_Array_Iterator(builtin); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Init_Data_Slice_Operations(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -124,6 +127,15 @@ lean_dec_ref(res); res = initialize_Init_Data_List_TakeDrop(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Array_Subarray_Split(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Array_Subarray_Split(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Slice_InternalLemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/Slice/InternalLemmas.c b/stage0/stdlib/Init/Data/Slice/InternalLemmas.c new file mode 100644 index 0000000000..71bb709af2 --- /dev/null +++ b/stage0/stdlib/Init/Data/Slice/InternalLemmas.c @@ -0,0 +1,45 @@ +// Lean compiler output +// Module: Init.Data.Slice.InternalLemmas +// Imports: public import Init.Data.Slice.Operations import all Init.Data.Slice.Operations public import Init.Data.Iterators.Consumers.Collect import Init.Data.Iterators.Lemmas.Consumers import Init.Data.List.Control +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* initialize_Init_Data_Slice_Operations(uint8_t builtin); +lean_object* initialize_Init_Data_Slice_Operations(uint8_t builtin); +lean_object* initialize_Init_Data_Iterators_Consumers_Collect(uint8_t builtin); +lean_object* initialize_Init_Data_Iterators_Lemmas_Consumers(uint8_t builtin); +lean_object* initialize_Init_Data_List_Control(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_Data_Slice_InternalLemmas(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_Slice_Operations(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Slice_Operations(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Iterators_Consumers_Collect(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Iterators_Lemmas_Consumers(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List_Control(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Data/Slice/Lemmas.c b/stage0/stdlib/Init/Data/Slice/Lemmas.c index 9d807353c2..b7c6d2ac1d 100644 --- a/stage0/stdlib/Init/Data/Slice/Lemmas.c +++ b/stage0/stdlib/Init/Data/Slice/Lemmas.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.Slice.Lemmas -// Imports: public import Init.Data.Slice.Operations import all Init.Data.Slice.Operations import Init.Data.Iterators.Lemmas.Consumers public import Init.Data.List.Control public import Init.Data.Iterators.Consumers.Collect +// Imports: public import Init.Data.Slice.Operations import all Init.Data.Slice.Operations import Init.Data.Iterators.Lemmas.Consumers public import Init.Data.List.Control public import Init.Data.Iterators.Consumers.Collect import Init.Data.Slice.InternalLemmas #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,6 +18,7 @@ lean_object* initialize_Init_Data_Slice_Operations(uint8_t builtin); lean_object* initialize_Init_Data_Iterators_Lemmas_Consumers(uint8_t builtin); lean_object* initialize_Init_Data_List_Control(uint8_t builtin); lean_object* initialize_Init_Data_Iterators_Consumers_Collect(uint8_t builtin); +lean_object* initialize_Init_Data_Slice_InternalLemmas(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data_Slice_Lemmas(uint8_t builtin) { lean_object * res; @@ -38,6 +39,9 @@ lean_dec_ref(res); res = initialize_Init_Data_Iterators_Consumers_Collect(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Slice_InternalLemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/String/Basic.c b/stage0/stdlib/Init/Data/String/Basic.c index 38db016214..d2883096fa 100644 --- a/stage0/stdlib/Init/Data/String/Basic.c +++ b/stage0/stdlib/Init/Data/String/Basic.c @@ -2213,7 +2213,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 = ((lean_object*)(l_String_Slice_slice_x21___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(1111u); +x_3 = lean_unsigned_to_nat(1115u); x_4 = ((lean_object*)(l_String_Slice_slice_x21___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -2429,7 +2429,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 = ((lean_object*)(l_String_Slice_Pos_get_x21___closed__1)); x_2 = lean_unsigned_to_nat(29u); -x_3 = lean_unsigned_to_nat(1196u); +x_3 = lean_unsigned_to_nat(1200u); x_4 = ((lean_object*)(l_String_Slice_Pos_get_x21___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -3198,7 +3198,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 = ((lean_object*)(l_String_Slice_Pos_next_x21___closed__1)); x_2 = lean_unsigned_to_nat(29u); -x_3 = lean_unsigned_to_nat(1576u); +x_3 = lean_unsigned_to_nat(1580u); x_4 = ((lean_object*)(l_String_Slice_Pos_next_x21___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -3507,7 +3507,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 = ((lean_object*)(l_String_Slice_Pos_prev_x21___closed__1)); x_2 = lean_unsigned_to_nat(31u); -x_3 = lean_unsigned_to_nat(1658u); +x_3 = lean_unsigned_to_nat(1662u); x_4 = ((lean_object*)(l_String_Slice_Pos_prev_x21___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -3616,7 +3616,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 = ((lean_object*)(l_String_Slice_pos_x21___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(1683u); +x_3 = lean_unsigned_to_nat(1687u); x_4 = ((lean_object*)(l_String_Slice_pos_x21___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -4956,7 +4956,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 = ((lean_object*)(l_String_Slice_Pos_sliceOrPanic___redArg___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(2540u); +x_3 = lean_unsigned_to_nat(2544u); x_4 = ((lean_object*)(l_String_Slice_Pos_sliceOrPanic___redArg___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -5151,7 +5151,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 = ((lean_object*)(l_String_Slice_slice_x21___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(2564u); +x_3 = lean_unsigned_to_nat(2568u); x_4 = ((lean_object*)(l_String_Slice_Pos_ofSlice_x21___redArg___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -5294,7 +5294,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 = ((lean_object*)(l_String_Slice_Pos_slice_x21___redArg___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(2582u); +x_3 = lean_unsigned_to_nat(2586u); x_4 = ((lean_object*)(l_String_Slice_Pos_slice_x21___redArg___closed__0)); x_5 = ((lean_object*)(l_String_fromUTF8_x21___closed__1)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); diff --git a/stage0/stdlib/Init/Data/String/Defs.c b/stage0/stdlib/Init/Data/String/Defs.c index c18c832451..294558e7a5 100644 --- a/stage0/stdlib/Init/Data/String/Defs.c +++ b/stage0/stdlib/Init/Data/String/Defs.c @@ -862,7 +862,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 = ((lean_object*)(l_String_Slice_getUTF8Byte_x21___closed__2)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(504u); +x_3 = lean_unsigned_to_nat(510u); x_4 = ((lean_object*)(l_String_Slice_getUTF8Byte_x21___closed__1)); x_5 = ((lean_object*)(l_String_Slice_getUTF8Byte_x21___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern.c index 4be60c2928..524bb48301 100644 --- a/stage0/stdlib/Init/Data/String/Lemmas/Pattern.c +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Data.String.Lemmas.Pattern -// Imports: public import Init.Data.String.Lemmas.Pattern.Basic public import Init.Data.String.Lemmas.Pattern.Memcmp public import Init.Data.String.Lemmas.Pattern.Pred public import Init.Data.String.Lemmas.Pattern.Char +// Imports: public import Init.Data.String.Lemmas.Pattern.Basic public import Init.Data.String.Lemmas.Pattern.Memcmp public import Init.Data.String.Lemmas.Pattern.Pred public import Init.Data.String.Lemmas.Pattern.Char public import Init.Data.String.Lemmas.Pattern.String #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,6 +17,7 @@ lean_object* initialize_Init_Data_String_Lemmas_Pattern_Basic(uint8_t builtin); lean_object* initialize_Init_Data_String_Lemmas_Pattern_Memcmp(uint8_t builtin); lean_object* initialize_Init_Data_String_Lemmas_Pattern_Pred(uint8_t builtin); lean_object* initialize_Init_Data_String_Lemmas_Pattern_Char(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_Pattern_String(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Init_Data_String_Lemmas_Pattern(uint8_t builtin) { lean_object * res; @@ -34,6 +35,9 @@ lean_dec_ref(res); res = initialize_Init_Data_String_Lemmas_Pattern_Char(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_Pattern_String(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Char.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Char.c index 1fae9a90f2..bb2353efc3 100644 --- a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Char.c +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Char.c @@ -13,9 +13,9 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Char_0__String_Slice_Pattern_Char_instForwardPatternModelChar(uint32_t); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Char_0__String_Slice_Pattern_Char_instForwardPatternModelChar___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Char_0__String_Slice_Pattern_Char_instForwardPatternModelChar(uint32_t x_1) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_Char_instForwardPatternModelChar(uint32_t); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_Char_instForwardPatternModelChar___boxed(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_Char_instForwardPatternModelChar(uint32_t x_1) { _start: { lean_object* x_2; @@ -23,13 +23,13 @@ x_2 = lean_box(0); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Char_0__String_Slice_Pattern_Char_instForwardPatternModelChar___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_Char_instForwardPatternModelChar___boxed(lean_object* x_1) { _start: { uint32_t x_2; lean_object* x_3; x_2 = lean_unbox_uint32(x_1); lean_dec(x_1); -x_3 = l___private_Init_Data_String_Lemmas_Pattern_Char_0__String_Slice_Pattern_Char_instForwardPatternModelChar(x_2); +x_3 = l_String_Slice_Pattern_Char_instForwardPatternModelChar(x_2); return x_3; } } diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Pred.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Pred.c index 1f64a97026..506f8c0421 100644 --- a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Pred.c +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/Pred.c @@ -13,11 +13,11 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(lean_object* x_1) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool___boxed(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(lean_object* x_1) { _start: { lean_object* x_2; @@ -25,16 +25,16 @@ x_2 = lean_box(0); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(x_1); +x_2 = l_String_Slice_Pattern_CharPred_instForwardPatternModelForallCharBool(x_1); lean_dec_ref(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -42,11 +42,11 @@ x_3 = lean_box(0); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Data_String_Lemmas_Pattern_Pred_0__String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(x_1, x_2); +x_3 = l_String_Slice_Pattern_CharPred_Decidable_instForwardPatternModelForallCharPropOfDecidablePred(x_1, x_2); lean_dec_ref(x_2); return x_3; } diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String.c new file mode 100644 index 0000000000..9c89e80c5d --- /dev/null +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String.c @@ -0,0 +1,33 @@ +// Lean compiler output +// Module: Init.Data.String.Lemmas.Pattern.String +// Imports: public import Init.Data.String.Lemmas.Pattern.String.Basic public import Init.Data.String.Lemmas.Pattern.String.ForwardPattern +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* initialize_Init_Data_String_Lemmas_Pattern_String_Basic(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_Pattern_String_ForwardPattern(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_Data_String_Lemmas_Pattern_String(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_String_Lemmas_Pattern_String_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_Pattern_String_ForwardPattern(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/Basic.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/Basic.c new file mode 100644 index 0000000000..73319b2955 --- /dev/null +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/Basic.c @@ -0,0 +1,64 @@ +// Lean compiler output +// Module: Init.Data.String.Lemmas.Pattern.String.Basic +// Imports: public import Init.Data.String.Lemmas.Pattern.Basic import Init.Data.String.Lemmas.IsEmpty import Init.Data.String.Lemmas.Basic import Init.Data.ByteArray.Lemmas import Init.Omega +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardSliceSearcher_instForwardPatternModel(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardSliceSearcher_instForwardPatternModel___boxed(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardSliceSearcher_instForwardPatternModel(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pattern_ForwardSliceSearcher_instForwardPatternModel___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_String_Slice_Pattern_ForwardSliceSearcher_instForwardPatternModel(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +lean_object* initialize_Init_Data_String_Lemmas_Pattern_Basic(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_IsEmpty(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_Basic(uint8_t builtin); +lean_object* initialize_Init_Data_ByteArray_Lemmas(uint8_t builtin); +lean_object* initialize_Init_Omega(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_Data_String_Lemmas_Pattern_String_Basic(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_String_Lemmas_Pattern_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_IsEmpty(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_ByteArray_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Omega(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/ForwardPattern.c b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/ForwardPattern.c new file mode 100644 index 0000000000..ef83fa3ac6 --- /dev/null +++ b/stage0/stdlib/Init/Data/String/Lemmas/Pattern/String/ForwardPattern.c @@ -0,0 +1,49 @@ +// Lean compiler output +// Module: Init.Data.String.Lemmas.Pattern.String.ForwardPattern +// Imports: public import Init.Data.String.Lemmas.Pattern.String.Basic public import Init.Data.String.Pattern.String import all Init.Data.String.Pattern.String import Init.Data.String.Lemmas.Pattern.Memcmp import Init.Data.String.Lemmas.Basic import Init.Data.ByteArray.Lemmas +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* initialize_Init_Data_String_Lemmas_Pattern_String_Basic(uint8_t builtin); +lean_object* initialize_Init_Data_String_Pattern_String(uint8_t builtin); +lean_object* initialize_Init_Data_String_Pattern_String(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_Pattern_Memcmp(uint8_t builtin); +lean_object* initialize_Init_Data_String_Lemmas_Basic(uint8_t builtin); +lean_object* initialize_Init_Data_ByteArray_Lemmas(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Init_Data_String_Lemmas_Pattern_String_ForwardPattern(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_String_Lemmas_Pattern_String_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Pattern_String(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Pattern_String(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_Pattern_Memcmp(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_String_Lemmas_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_ByteArray_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Init/Data/String/Lemmas/Splits.c b/stage0/stdlib/Init/Data/String/Lemmas/Splits.c index 3882f948cf..3159288cac 100644 --- a/stage0/stdlib/Init/Data/String/Lemmas/Splits.c +++ b/stage0/stdlib/Init/Data/String/Lemmas/Splits.c @@ -13,6 +13,182 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___redArg(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___redArg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___redArg(lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___redArg___boxed(lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_string_utf8_byte_size(x_2); +x_4 = lean_nat_add(x_1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_String_Slice_Pos_Splits_rotateRight___redArg(x_1, x_2); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_string_utf8_byte_size(x_4); +x_8 = lean_nat_add(x_2, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateRight___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) { +_start: +{ +lean_object* x_7; +x_7 = l_String_Slice_Pos_Splits_rotateRight(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___redArg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_String_Slice_Pos_Splits_rotateLeft___redArg(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_string_utf8_byte_size(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_String_Slice_Pos_Splits_rotateLeft___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) { +_start: +{ +lean_object* x_7; +x_7 = l_String_Slice_Pos_Splits_rotateLeft(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_string_utf8_byte_size(x_2); +x_4 = lean_nat_add(x_1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_String_Pos_Splits_rotateRight___redArg(x_1, x_2); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_string_utf8_byte_size(x_4); +x_8 = lean_nat_add(x_2, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateRight___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) { +_start: +{ +lean_object* x_7; +x_7 = l_String_Pos_Splits_rotateRight(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___redArg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_String_Pos_Splits_rotateLeft___redArg(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_string_utf8_byte_size(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_String_Pos_Splits_rotateLeft___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) { +_start: +{ +lean_object* x_7; +x_7 = l_String_Pos_Splits_rotateLeft(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_7; +} +} lean_object* initialize_Init_Data_String_Basic(uint8_t builtin); lean_object* initialize_Init_Data_ByteArray_Lemmas(uint8_t builtin); lean_object* initialize_Init_Data_String_Lemmas_Basic(uint8_t builtin); diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index e6b12d8b5b..024d583ea8 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -745,6 +745,10 @@ static const lean_string_object l_IO_FS_instReprMetadata_repr___redArg___closed_ static const lean_object* l_IO_FS_instReprMetadata_repr___redArg___closed__8 = (const lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__8_value; static const lean_ctor_object l_IO_FS_instReprMetadata_repr___redArg___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 3}, .m_objs = {((lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__8_value)}}; static const lean_object* l_IO_FS_instReprMetadata_repr___redArg___closed__9 = (const lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__9_value; +static const lean_string_object l_IO_FS_instReprMetadata_repr___redArg___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "numLinks"}; +static const lean_object* l_IO_FS_instReprMetadata_repr___redArg___closed__10 = (const lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__10_value; +static const lean_ctor_object l_IO_FS_instReprMetadata_repr___redArg___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 3}, .m_objs = {((lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__10_value)}}; +static const lean_object* l_IO_FS_instReprMetadata_repr___redArg___closed__11 = (const lean_object*)&l_IO_FS_instReprMetadata_repr___redArg___closed__11_value; lean_object* lean_uint64_to_nat(uint64_t); LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata_repr___redArg(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata_repr___redArg___boxed(lean_object*); @@ -7271,117 +7275,144 @@ return x_1; LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata_repr___redArg(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; uint64_t x_4; uint8_t 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; uint8_t x_12; lean_object* x_13; 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; lean_object* x_21; 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; 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; 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; 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_2; lean_object* x_3; uint64_t x_4; uint8_t x_5; uint64_t 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; uint8_t x_13; 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; lean_object* x_21; 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; 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; 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; 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; 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; x_2 = lean_ctor_get(x_1, 0); x_3 = lean_ctor_get(x_1, 1); x_4 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); -x_5 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 8); -x_6 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__5)); -x_7 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__3)); -x_8 = l_IO_FS_instReprDirEntry_repr___redArg___closed__14; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_IO_FS_instReprSystemTime_repr___redArg(x_2); -x_11 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_11, 0, x_8); -lean_ctor_set(x_11, 1, x_10); -x_12 = 0; -x_13 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_12); -x_14 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_14, 0, x_7); -lean_ctor_set(x_14, 1, x_13); -x_15 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__11)); -x_16 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_16, 0, x_14); -lean_ctor_set(x_16, 1, x_15); -x_17 = lean_box(1); -x_18 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -x_19 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__5)); -x_20 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); +x_5 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 16); +x_6 = lean_ctor_get_uint64(x_1, sizeof(void*)*2 + 8); +x_7 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__5)); +x_8 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__3)); +x_9 = l_IO_FS_instReprDirEntry_repr___redArg___closed__14; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_IO_FS_instReprSystemTime_repr___redArg(x_2); +x_12 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_12, 0, x_9); +lean_ctor_set(x_12, 1, x_11); +x_13 = 0; +x_14 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set_uint8(x_14, sizeof(void*)*1, x_13); +x_15 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_15, 0, x_8); +lean_ctor_set(x_15, 1, x_14); +x_16 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__11)); +x_17 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_box(1); +x_19 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__5)); x_21 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_6); -x_22 = l_IO_FS_instReprSystemTime_repr___redArg(x_3); -x_23 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_23, 0, x_8); -lean_ctor_set(x_23, 1, x_22); -x_24 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set_uint8(x_24, sizeof(void*)*1, x_12); -x_25 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_25, 0, x_21); -lean_ctor_set(x_25, 1, x_24); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_7); +x_23 = l_IO_FS_instReprSystemTime_repr___redArg(x_3); +x_24 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_24, 0, x_9); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set_uint8(x_25, sizeof(void*)*1, x_13); x_26 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_15); +lean_ctor_set(x_26, 0, x_22); +lean_ctor_set(x_26, 1, x_25); x_27 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_17); -x_28 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__7)); -x_29 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_27, 1, x_16); +x_28 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_18); +x_29 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__7)); x_30 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_6); -x_31 = lean_uint64_to_nat(x_4); -x_32 = l_Nat_reprFast(x_31); -x_33 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_33, 0, x_32); -x_34 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_34, 0, x_8); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set_uint8(x_35, sizeof(void*)*1, x_12); -x_36 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_36, 0, x_30); -lean_ctor_set(x_36, 1, x_35); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_7); +x_32 = lean_uint64_to_nat(x_4); +x_33 = l_Nat_reprFast(x_32); +x_34 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_35, 0, x_9); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set_uint8(x_36, sizeof(void*)*1, x_13); x_37 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_15); +lean_ctor_set(x_37, 0, x_31); +lean_ctor_set(x_37, 1, x_36); x_38 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_17); -x_39 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__9)); -x_40 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); +lean_ctor_set(x_38, 1, x_16); +x_39 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_18); +x_40 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__9)); x_41 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_6); -x_42 = l_IO_FS_instReprDirEntry_repr___redArg___closed__7; -x_43 = l_IO_FS_instReprFileType_repr(x_5, x_9); -x_44 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -x_45 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set_uint8(x_45, sizeof(void*)*1, x_12); -x_46 = lean_alloc_ctor(5, 2, 0); -lean_ctor_set(x_46, 0, x_41); -lean_ctor_set(x_46, 1, x_45); -x_47 = l_IO_FS_instReprDirEntry_repr___redArg___closed__17; -x_48 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__18)); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_7); +x_43 = l_IO_FS_instReprDirEntry_repr___redArg___closed__7; +x_44 = l_IO_FS_instReprFileType_repr(x_5, x_10); +x_45 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +x_46 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set_uint8(x_46, sizeof(void*)*1, x_13); +x_47 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_47, 0, x_42); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_16); x_49 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_46); -x_50 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__19)); +lean_ctor_set(x_49, 1, x_18); +x_50 = ((lean_object*)(l_IO_FS_instReprMetadata_repr___redArg___closed__11)); x_51 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); -x_52 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_52, 0, x_47); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_alloc_ctor(6, 1, 1); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set_uint8(x_53, sizeof(void*)*1, x_12); -return x_53; +x_52 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_7); +x_53 = lean_uint64_to_nat(x_6); +x_54 = l_Nat_reprFast(x_53); +x_55 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_55, 0, x_54); +x_56 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_56, 0, x_9); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set_uint8(x_57, sizeof(void*)*1, x_13); +x_58 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_58, 0, x_52); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_IO_FS_instReprDirEntry_repr___redArg___closed__17; +x_60 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__18)); +x_61 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_58); +x_62 = ((lean_object*)(l_IO_FS_instReprDirEntry_repr___redArg___closed__19)); +x_63 = lean_alloc_ctor(5, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_64, 0, x_59); +lean_ctor_set(x_64, 1, x_63); +x_65 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set_uint8(x_65, sizeof(void*)*1, x_13); +return x_65; } } LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata_repr___redArg___boxed(lean_object* x_1) { @@ -7449,7 +7480,7 @@ lean_object* x_4; uint8_t x_5; uint8_t x_6; uint8_t x_7; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); lean_dec_ref(x_3); -x_5 = lean_ctor_get_uint8(x_4, sizeof(void*)*2 + 8); +x_5 = lean_ctor_get_uint8(x_4, sizeof(void*)*2 + 16); lean_dec(x_4); x_6 = 0; x_7 = l_IO_FS_instBEqFileType_beq(x_5, x_6); @@ -7537,7 +7568,7 @@ lean_object* x_24; uint8_t x_25; x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); lean_dec_ref(x_23); -x_25 = lean_ctor_get_uint8(x_24, sizeof(void*)*2 + 8); +x_25 = lean_ctor_get_uint8(x_24, sizeof(void*)*2 + 16); lean_dec(x_24); switch (x_25) { case 2: @@ -8958,7 +8989,7 @@ lean_object* x_17; uint8_t x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); lean_dec_ref(x_16); -x_18 = lean_ctor_get_uint8(x_17, sizeof(void*)*2 + 8); +x_18 = lean_ctor_get_uint8(x_17, sizeof(void*)*2 + 16); lean_dec(x_17); x_19 = lean_box(0); x_20 = 0; @@ -11270,27 +11301,27 @@ x_16 = 13; x_17 = lean_uint32_dec_eq(x_15, x_16); if (x_17 == 0) { +lean_dec(x_14); lean_dec(x_13); -lean_dec(x_12); -x_8 = x_14; +x_8 = x_12; goto block_11; } else { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_18 = lean_string_utf8_byte_size(x_14); -lean_inc(x_13); -lean_inc_ref(x_14); +x_18 = lean_string_utf8_byte_size(x_12); +lean_inc(x_14); +lean_inc_ref(x_12); x_19 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_19, 0, x_14); -lean_ctor_set(x_19, 1, x_13); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_14); lean_ctor_set(x_19, 2, x_18); -x_20 = l_String_Slice_Pos_prevn(x_19, x_18, x_12); +x_20 = l_String_Slice_Pos_prevn(x_19, x_18, x_13); lean_dec_ref(x_19); -x_21 = lean_string_utf8_extract(x_14, x_13, x_20); +x_21 = lean_string_utf8_extract(x_12, x_14, x_20); lean_dec(x_20); -lean_dec(x_13); -lean_dec_ref(x_14); +lean_dec(x_14); +lean_dec_ref(x_12); x_8 = x_21; goto block_11; } @@ -11342,9 +11373,9 @@ if (lean_obj_tag(x_36) == 0) uint32_t x_37; lean_dec_ref(x_35); x_37 = 65; -x_12 = x_28; -x_13 = x_29; -x_14 = x_33; +x_12 = x_33; +x_13 = x_28; +x_14 = x_29; x_15 = x_37; goto block_22; } @@ -11361,9 +11392,9 @@ if (lean_obj_tag(x_39) == 0) { uint32_t x_40; x_40 = 65; -x_12 = x_28; -x_13 = x_29; -x_14 = x_33; +x_12 = x_33; +x_13 = x_28; +x_14 = x_29; x_15 = x_40; goto block_22; } @@ -11375,9 +11406,9 @@ lean_inc(x_41); lean_dec_ref(x_39); x_42 = lean_unbox_uint32(x_41); lean_dec(x_41); -x_12 = x_28; -x_13 = x_29; -x_14 = x_33; +x_12 = x_33; +x_13 = x_28; +x_14 = x_29; x_15 = x_42; goto block_22; } diff --git a/stage0/stdlib/Lake/Build/Common.c b/stage0/stdlib/Lake/Build/Common.c index 31aec0826e..cefb53983d 100644 --- a/stage0/stdlib/Lake/Build/Common.c +++ b/stage0/stdlib/Lake/Build/Common.c @@ -451,9 +451,8 @@ static const lean_string_object l_Lake_getArtifacts_x3f___redArg___closed__0_val static const lean_object* l_Lake_getArtifacts_x3f___redArg___closed__0 = (const lean_object*)&l_Lake_getArtifacts_x3f___redArg___closed__0_value; static const lean_string_object l_Lake_getArtifacts_x3f___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 68, .m_capacity = 68, .m_length = 67, .m_data = "' found in package artifact cache, but some output(s) have issues: "}; static const lean_object* l_Lake_getArtifacts_x3f___redArg___closed__1 = (const lean_object*)&l_Lake_getArtifacts_x3f___redArg___closed__1_value; -lean_object* l_Lake_Package_isArtifactCacheEnabled___redArg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lake_Package_cacheScope(lean_object*); lean_object* l_Lake_Cache_writeOutputsCore(lean_object*, lean_object*, uint64_t, lean_object*); +lean_object* l_Lake_Package_cacheScope(lean_object*); lean_object* l_Lake_Cache_readOutputs_x3f(lean_object*, lean_object*, uint64_t, lean_object*); lean_object* l_String_Slice_Pos_nextn(lean_object*, lean_object*, lean_object*); lean_object* l_String_Slice_toString(lean_object*); @@ -483,14 +482,11 @@ LEAN_EXPORT lean_object* l_Lake_buildAction___at___00__private_Lake_Build_Common LEAN_EXPORT lean_object* l_Lake_buildAction___at___00__private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild_spec__0___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_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(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_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild___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*); -uint8_t l_Lake_Workspace_enableArtifactCache(lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lake_Cache_getArtifact(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__1(lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__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_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0(lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_Lake_buildArtifactUnlessUpToDate___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 34, .m_capacity = 34, .m_length = 33, .m_data = "restored artifact from cache to: "}; static const lean_object* l_Lake_buildArtifactUnlessUpToDate___lam__0___closed__0 = (const lean_object*)&l_Lake_buildArtifactUnlessUpToDate___lam__0___closed__0_value; lean_object* l_Lake_copyFile(lean_object*, lean_object*); @@ -2758,9 +2754,9 @@ block_9: { lean_object* x_7; lean_object* x_8; x_7 = lean_alloc_ctor(0, 3, 9); -lean_ctor_set(x_7, 0, x_2); -lean_ctor_set(x_7, 1, x_4); -lean_ctor_set(x_7, 2, x_3); +lean_ctor_set(x_7, 0, x_4); +lean_ctor_set(x_7, 1, x_3); +lean_ctor_set(x_7, 2, x_2); lean_ctor_set_uint64(x_7, sizeof(void*)*3, x_5); lean_ctor_set_uint8(x_7, sizeof(void*)*3 + 8, x_6); x_8 = lean_alloc_ctor(1, 1, 0); @@ -2785,8 +2781,8 @@ x_20 = ((lean_object*)(l_Lake_BuildMetadata_toJson___closed__7)); x_21 = l_Lake_JsonObject_getJson_x3f(x_1, x_20); if (lean_obj_tag(x_21) == 0) { -x_10 = x_16; -x_11 = x_19; +x_10 = x_19; +x_11 = x_16; x_12 = x_17; x_13 = x_18; goto block_15; @@ -2803,8 +2799,8 @@ if (lean_obj_tag(x_23) == 0) { uint8_t x_24; lean_dec_ref(x_19); -lean_dec(x_17); -lean_dec_ref(x_16); +lean_dec_ref(x_17); +lean_dec(x_16); x_24 = !lean_is_exclusive(x_23); if (x_24 == 0) { @@ -2836,8 +2832,8 @@ if (lean_obj_tag(x_23) == 0) { uint8_t x_32; lean_dec_ref(x_19); -lean_dec(x_17); -lean_dec_ref(x_16); +lean_dec_ref(x_17); +lean_dec(x_16); x_32 = !lean_is_exclusive(x_23); if (x_32 == 0) { @@ -2863,8 +2859,8 @@ lean_inc(x_35); lean_dec_ref(x_23); if (lean_obj_tag(x_35) == 0) { -x_10 = x_16; -x_11 = x_19; +x_10 = x_19; +x_11 = x_16; x_12 = x_17; x_13 = x_18; goto block_15; @@ -2877,8 +2873,8 @@ lean_inc(x_36); lean_dec_ref(x_35); x_37 = lean_unbox(x_36); lean_dec(x_36); -x_2 = x_16; -x_3 = x_19; +x_2 = x_19; +x_3 = x_16; x_4 = x_17; x_5 = x_18; x_6 = x_37; @@ -2905,8 +2901,8 @@ x_47 = ((lean_object*)(l_Lake_BuildMetadata_toJson___closed__6)); x_48 = l_Lake_JsonObject_getJson_x3f(x_1, x_47); if (lean_obj_tag(x_48) == 0) { -x_39 = x_44; -x_40 = x_46; +x_39 = x_46; +x_40 = x_44; x_41 = x_45; goto block_43; } @@ -2979,8 +2975,8 @@ lean_inc(x_62); lean_dec_ref(x_50); if (lean_obj_tag(x_62) == 0) { -x_39 = x_44; -x_40 = x_46; +x_39 = x_46; +x_40 = x_44; x_41 = x_45; goto block_43; } @@ -2990,8 +2986,8 @@ lean_object* x_63; x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); lean_dec_ref(x_62); -x_16 = x_44; -x_17 = x_46; +x_16 = x_46; +x_17 = x_44; x_18 = x_45; x_19 = x_63; goto block_38; @@ -8344,7 +8340,7 @@ return x_3; LEAN_EXPORT lean_object* l_Lake_fetchFileHash___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_48; lean_object* x_49; +lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_48; lean_object* x_49; x_6 = lean_ctor_get(x_3, 0); x_7 = lean_ctor_get_uint8(x_6, sizeof(void*)*2 + 1); x_8 = ((lean_object*)(l_Lake_writeFileHash___closed__0)); @@ -8406,9 +8402,9 @@ lean_object* x_21; lean_object* x_22; lean_dec_ref(x_20); x_21 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_21, 0, x_12); -lean_ctor_set(x_21, 1, x_14); -lean_ctor_set(x_21, 2, x_13); -lean_ctor_set_uint8(x_21, sizeof(void*)*3, x_11); +lean_ctor_set(x_21, 1, x_13); +lean_ctor_set(x_21, 2, x_11); +lean_ctor_set_uint8(x_21, sizeof(void*)*3, x_14); lean_ctor_set_uint8(x_21, sizeof(void*)*3 + 1, x_10); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_16); @@ -8431,9 +8427,9 @@ x_27 = lean_array_get_size(x_12); x_28 = lean_array_push(x_12, x_26); x_29 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_14); -lean_ctor_set(x_29, 2, x_13); -lean_ctor_set_uint8(x_29, sizeof(void*)*3, x_11); +lean_ctor_set(x_29, 1, x_13); +lean_ctor_set(x_29, 2, x_11); +lean_ctor_set_uint8(x_29, sizeof(void*)*3, x_14); lean_ctor_set_uint8(x_29, sizeof(void*)*3 + 1, x_10); x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_27); @@ -8458,9 +8454,9 @@ x_35 = lean_array_get_size(x_12); x_36 = lean_array_push(x_12, x_34); x_37 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_14); -lean_ctor_set(x_37, 2, x_13); -lean_ctor_set_uint8(x_37, sizeof(void*)*3, x_11); +lean_ctor_set(x_37, 1, x_13); +lean_ctor_set(x_37, 2, x_11); +lean_ctor_set_uint8(x_37, sizeof(void*)*3, x_14); lean_ctor_set_uint8(x_37, sizeof(void*)*3 + 1, x_10); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_35); @@ -8484,9 +8480,9 @@ x_43 = lean_array_get_size(x_12); x_44 = lean_array_push(x_12, x_42); x_45 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_14); -lean_ctor_set(x_45, 2, x_13); -lean_ctor_set_uint8(x_45, sizeof(void*)*3, x_11); +lean_ctor_set(x_45, 1, x_13); +lean_ctor_set(x_45, 2, x_11); +lean_ctor_set_uint8(x_45, sizeof(void*)*3, x_14); lean_ctor_set_uint8(x_45, sizeof(void*)*3 + 1, x_10); x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_43); @@ -8511,10 +8507,10 @@ lean_dec_ref(x_48); x_55 = l_Lake_computeBinFileHash(x_1); lean_dec_ref(x_1); x_10 = x_52; -x_11 = x_51; +x_11 = x_54; x_12 = x_50; -x_13 = x_54; -x_14 = x_53; +x_13 = x_53; +x_14 = x_51; x_15 = x_55; goto block_47; } @@ -8533,10 +8529,10 @@ lean_dec_ref(x_48); x_61 = l_Lake_computeTextFileHash(x_1); lean_dec_ref(x_1); x_10 = x_58; -x_11 = x_57; +x_11 = x_60; x_12 = x_56; -x_13 = x_60; -x_14 = x_59; +x_13 = x_59; +x_14 = x_57; x_15 = x_61; goto block_47; } @@ -10825,7 +10821,7 @@ lean_object* x_8; x_8 = l_IO_FS_readBinFile(x_2); if (lean_obj_tag(x_8) == 0) { -lean_object* x_9; lean_object* x_10; uint64_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_23; lean_object* x_24; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_52; lean_object* x_53; uint8_t x_54; +lean_object* x_9; lean_object* x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_25; lean_object* x_26; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_54; lean_object* x_55; uint8_t x_56; x_9 = lean_ctor_get(x_8, 0); lean_inc(x_9); if (lean_is_exclusive(x_8)) { @@ -10835,486 +10831,488 @@ if (lean_is_exclusive(x_8)) { lean_dec_ref(x_8); x_10 = lean_box(0); } -x_11 = lean_byte_array_hash(x_9); +x_11 = l_Lake_Hash_nil; +x_12 = lean_byte_array_hash(x_9); +x_13 = lean_uint64_mix_hash(x_11, x_12); lean_inc_ref(x_3); -x_12 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_12, 0, x_3); -lean_ctor_set_uint64(x_12, sizeof(void*)*1, x_11); -x_34 = ((lean_object*)(l_Lake_Cache_saveArtifact___closed__0)); -x_35 = l_System_FilePath_join(x_1, x_34); -x_52 = lean_string_utf8_byte_size(x_3); -x_53 = lean_unsigned_to_nat(0u); -x_54 = lean_nat_dec_eq(x_52, x_53); -if (x_54 == 0) +x_14 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_14, 0, x_3); +lean_ctor_set_uint64(x_14, sizeof(void*)*1, x_13); +x_36 = ((lean_object*)(l_Lake_Cache_saveArtifact___closed__0)); +x_37 = l_System_FilePath_join(x_1, x_36); +x_54 = lean_string_utf8_byte_size(x_3); +x_55 = lean_unsigned_to_nat(0u); +x_56 = lean_nat_dec_eq(x_54, x_55); +if (x_56 == 0) { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = l_Lake_Hash_hex(x_11); -x_56 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); -x_57 = lean_string_append(x_55, x_56); -x_58 = lean_string_append(x_57, x_3); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = l_Lake_Hash_hex(x_13); +x_58 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); +x_59 = lean_string_append(x_57, x_58); +x_60 = lean_string_append(x_59, x_3); lean_dec_ref(x_3); -x_36 = x_58; -goto block_51; +x_38 = x_60; +goto block_53; } else { -lean_object* x_59; +lean_object* x_61; lean_dec_ref(x_3); -x_59 = l_Lake_Hash_hex(x_11); -x_36 = x_59; -goto block_51; +x_61 = l_Lake_Hash_hex(x_13); +x_38 = x_61; +goto block_53; } -block_18: +block_20: { -lean_object* x_16; lean_object* x_17; -x_16 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_16, 0, x_12); -lean_ctor_set(x_16, 1, x_15); -lean_ctor_set(x_16, 2, x_2); -lean_ctor_set(x_16, 3, x_13); +lean_object* x_18; lean_object* x_19; +x_18 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_18, 0, x_14); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set(x_18, 2, x_2); +lean_ctor_set(x_18, 3, x_16); if (lean_is_scalar(x_10)) { - x_17 = lean_alloc_ctor(0, 1, 0); + x_19 = lean_alloc_ctor(0, 1, 0); } else { - x_17 = x_10; + x_19 = x_10; } -lean_ctor_set(x_17, 0, x_16); -return x_17; +lean_ctor_set(x_19, 0, x_18); +return x_19; } -block_22: +block_24: { if (x_6 == 0) { -x_13 = x_21; -x_14 = lean_box(0); -x_15 = x_19; -goto block_18; +x_15 = lean_box(0); +x_16 = x_23; +x_17 = x_22; +goto block_20; } else { -lean_dec_ref(x_19); +lean_dec_ref(x_22); lean_inc_ref(x_2); -x_13 = x_21; -x_14 = lean_box(0); -x_15 = x_2; -goto block_18; +x_15 = lean_box(0); +x_16 = x_23; +x_17 = x_2; +goto block_20; } } -block_33: +block_35: { -lean_object* x_25; +lean_object* x_27; lean_inc_ref(x_2); -x_25 = l_Lake_writeFileHash(x_2, x_11); -if (lean_obj_tag(x_25) == 0) +x_27 = l_Lake_writeFileHash(x_2, x_13); +if (lean_obj_tag(x_27) == 0) { -lean_object* x_26; +lean_object* x_28; +lean_dec_ref(x_27); +x_28 = lean_io_metadata(x_25); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = lean_ctor_get(x_29, 1); +lean_inc_ref(x_30); +lean_dec(x_29); +x_21 = lean_box(0); +x_22 = x_25; +x_23 = x_30; +goto block_24; +} +else +{ +lean_object* x_31; +lean_dec_ref(x_28); +x_31 = l_Lake_platformTrace___closed__4; +x_21 = lean_box(0); +x_22 = x_25; +x_23 = x_31; +goto block_24; +} +} +else +{ +uint8_t x_32; lean_dec_ref(x_25); -x_26 = lean_io_metadata(x_23); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -lean_dec_ref(x_26); -x_28 = lean_ctor_get(x_27, 1); -lean_inc_ref(x_28); -lean_dec(x_27); -x_19 = x_23; -x_20 = lean_box(0); -x_21 = x_28; -goto block_22; -} -else -{ -lean_object* x_29; -lean_dec_ref(x_26); -x_29 = l_Lake_platformTrace___closed__4; -x_19 = x_23; -x_20 = lean_box(0); -x_21 = x_29; -goto block_22; -} -} -else -{ -uint8_t x_30; -lean_dec_ref(x_23); -lean_dec_ref(x_12); +lean_dec_ref(x_14); lean_dec(x_10); lean_dec_ref(x_2); -x_30 = !lean_is_exclusive(x_25); -if (x_30 == 0) +x_32 = !lean_is_exclusive(x_27); +if (x_32 == 0) { -return x_25; +return x_27; } else { -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_25, 0); -lean_inc(x_31); -lean_dec(x_25); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -return x_32; +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_33); +lean_dec(x_27); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; } } } -block_51: +block_53: { -lean_object* x_37; lean_object* x_38; -x_37 = l_Lake_joinRelative(x_35, x_36); -lean_inc_ref(x_37); -x_38 = l_Lake_createParentDirs(x_37); -if (lean_obj_tag(x_38) == 0) +lean_object* x_39; lean_object* x_40; +x_39 = l_Lake_joinRelative(x_37, x_38); +lean_inc_ref(x_39); +x_40 = l_Lake_createParentDirs(x_39); +if (lean_obj_tag(x_40) == 0) { -lean_object* x_39; -lean_dec_ref(x_38); -x_39 = l_IO_FS_writeBinFile(x_37, x_9); +lean_object* x_41; +lean_dec_ref(x_40); +x_41 = l_IO_FS_writeBinFile(x_39, x_9); lean_dec(x_9); -if (lean_obj_tag(x_39) == 0) -{ -lean_dec_ref(x_39); -if (x_5 == 0) -{ -x_23 = x_37; -x_24 = lean_box(0); -goto block_33; -} -else -{ -lean_object* x_40; lean_object* x_41; -x_40 = l_Lake_Cache_saveArtifact___closed__2; -x_41 = l_IO_setAccessRights(x_37, x_40); if (lean_obj_tag(x_41) == 0) { lean_dec_ref(x_41); -x_23 = x_37; -x_24 = lean_box(0); -goto block_33; +if (x_5 == 0) +{ +x_25 = x_39; +x_26 = lean_box(0); +goto block_35; } else { -uint8_t x_42; -lean_dec_ref(x_37); -lean_dec_ref(x_12); +lean_object* x_42; lean_object* x_43; +x_42 = l_Lake_Cache_saveArtifact___closed__2; +x_43 = l_IO_setAccessRights(x_39, x_42); +if (lean_obj_tag(x_43) == 0) +{ +lean_dec_ref(x_43); +x_25 = x_39; +x_26 = lean_box(0); +goto block_35; +} +else +{ +uint8_t x_44; +lean_dec_ref(x_39); +lean_dec_ref(x_14); lean_dec(x_10); lean_dec_ref(x_2); -x_42 = !lean_is_exclusive(x_41); -if (x_42 == 0) +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) +{ +return x_43; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_43, 0); +lean_inc(x_45); +lean_dec(x_43); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +return x_46; +} +} +} +} +else +{ +uint8_t x_47; +lean_dec_ref(x_39); +lean_dec_ref(x_14); +lean_dec(x_10); +lean_dec_ref(x_2); +x_47 = !lean_is_exclusive(x_41); +if (x_47 == 0) { return x_41; } else { -lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_41, 0); -lean_inc(x_43); +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_41, 0); +lean_inc(x_48); lean_dec(x_41); -x_44 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_44, 0, x_43); -return x_44; -} -} -} -} -else -{ -uint8_t x_45; -lean_dec_ref(x_37); -lean_dec_ref(x_12); -lean_dec(x_10); -lean_dec_ref(x_2); -x_45 = !lean_is_exclusive(x_39); -if (x_45 == 0) -{ -return x_39; -} -else -{ -lean_object* x_46; lean_object* x_47; -x_46 = lean_ctor_get(x_39, 0); -lean_inc(x_46); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_47, 0, x_46); -return x_47; +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; } } } else { -uint8_t x_48; -lean_dec_ref(x_37); -lean_dec_ref(x_12); +uint8_t x_50; +lean_dec_ref(x_39); +lean_dec_ref(x_14); lean_dec(x_10); lean_dec(x_9); lean_dec_ref(x_2); -x_48 = !lean_is_exclusive(x_38); -if (x_48 == 0) +x_50 = !lean_is_exclusive(x_40); +if (x_50 == 0) { -return x_38; +return x_40; } else { -lean_object* x_49; lean_object* x_50; -x_49 = lean_ctor_get(x_38, 0); -lean_inc(x_49); -lean_dec(x_38); -x_50 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_50, 0, x_49); -return x_50; +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_40, 0); +lean_inc(x_51); +lean_dec(x_40); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; } } } } else { -uint8_t x_60; +uint8_t x_62; lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_60 = !lean_is_exclusive(x_8); -if (x_60 == 0) +x_62 = !lean_is_exclusive(x_8); +if (x_62 == 0) { return x_8; } else { -lean_object* x_61; lean_object* x_62; -x_61 = lean_ctor_get(x_8, 0); -lean_inc(x_61); +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_8, 0); +lean_inc(x_63); lean_dec(x_8); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -return x_62; +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +return x_64; } } } else { -lean_object* x_63; -x_63 = l_IO_FS_readFile(x_2); -if (lean_obj_tag(x_63) == 0) +lean_object* x_65; +x_65 = l_IO_FS_readFile(x_2); +if (lean_obj_tag(x_65) == 0) { -lean_object* x_64; lean_object* x_65; lean_object* x_66; uint64_t x_67; uint64_t x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_102; lean_object* x_103; uint8_t x_104; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - x_65 = x_63; +lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; uint64_t x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_104; lean_object* x_105; uint8_t x_106; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + x_67 = x_65; } else { - lean_dec_ref(x_63); - x_65 = lean_box(0); + lean_dec_ref(x_65); + x_67 = lean_box(0); } -x_66 = l_String_crlfToLf(x_64); -lean_dec(x_64); -x_67 = l_Lake_Hash_nil; -x_68 = lean_string_hash(x_66); -x_69 = lean_uint64_mix_hash(x_67, x_68); +x_68 = l_String_crlfToLf(x_66); +lean_dec(x_66); +x_69 = l_Lake_Hash_nil; +x_70 = lean_string_hash(x_68); +x_71 = lean_uint64_mix_hash(x_69, x_70); lean_inc_ref(x_3); -x_70 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_70, 0, x_3); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_69); -x_81 = ((lean_object*)(l_Lake_Cache_saveArtifact___closed__0)); -x_82 = l_System_FilePath_join(x_1, x_81); -x_102 = lean_string_utf8_byte_size(x_3); -x_103 = lean_unsigned_to_nat(0u); -x_104 = lean_nat_dec_eq(x_102, x_103); -if (x_104 == 0) +x_72 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_72, 0, x_3); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_71); +x_83 = ((lean_object*)(l_Lake_Cache_saveArtifact___closed__0)); +x_84 = l_System_FilePath_join(x_1, x_83); +x_104 = lean_string_utf8_byte_size(x_3); +x_105 = lean_unsigned_to_nat(0u); +x_106 = lean_nat_dec_eq(x_104, x_105); +if (x_106 == 0) { -lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_105 = l_Lake_Hash_hex(x_69); -x_106 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); -x_107 = lean_string_append(x_105, x_106); -x_108 = lean_string_append(x_107, x_3); +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_107 = l_Lake_Hash_hex(x_71); +x_108 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); +x_109 = lean_string_append(x_107, x_108); +x_110 = lean_string_append(x_109, x_3); lean_dec_ref(x_3); -x_83 = x_108; -goto block_101; +x_85 = x_110; +goto block_103; } else { -lean_object* x_109; +lean_object* x_111; lean_dec_ref(x_3); -x_109 = l_Lake_Hash_hex(x_69); -x_83 = x_109; -goto block_101; +x_111 = l_Lake_Hash_hex(x_71); +x_85 = x_111; +goto block_103; } -block_76: +block_78: { -lean_object* x_74; lean_object* x_75; -x_74 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_74, 0, x_70); -lean_ctor_set(x_74, 1, x_73); -lean_ctor_set(x_74, 2, x_2); -lean_ctor_set(x_74, 3, x_71); -if (lean_is_scalar(x_65)) { - x_75 = lean_alloc_ctor(0, 1, 0); +lean_object* x_76; lean_object* x_77; +x_76 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_76, 0, x_72); +lean_ctor_set(x_76, 1, x_75); +lean_ctor_set(x_76, 2, x_2); +lean_ctor_set(x_76, 3, x_73); +if (lean_is_scalar(x_67)) { + x_77 = lean_alloc_ctor(0, 1, 0); } else { - x_75 = x_65; + x_77 = x_67; } -lean_ctor_set(x_75, 0, x_74); -return x_75; +lean_ctor_set(x_77, 0, x_76); +return x_77; } -block_80: +block_82: { if (x_6 == 0) { -x_71 = x_79; -x_72 = lean_box(0); -x_73 = x_77; -goto block_76; +x_73 = x_81; +x_74 = lean_box(0); +x_75 = x_79; +goto block_78; } else { -lean_dec_ref(x_77); +lean_dec_ref(x_79); lean_inc_ref(x_2); -x_71 = x_79; -x_72 = lean_box(0); -x_73 = x_2; -goto block_76; +x_73 = x_81; +x_74 = lean_box(0); +x_75 = x_2; +goto block_78; } } -block_101: +block_103: { -lean_object* x_84; lean_object* x_85; -x_84 = l_Lake_joinRelative(x_82, x_83); -lean_inc_ref(x_84); -x_85 = l_Lake_createParentDirs(x_84); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; -lean_dec_ref(x_85); -x_86 = l_IO_FS_writeFile(x_84, x_66); -lean_dec_ref(x_66); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; -lean_dec_ref(x_86); -lean_inc_ref(x_2); -x_87 = l_Lake_writeFileHash(x_2, x_69); +lean_object* x_86; lean_object* x_87; +x_86 = l_Lake_joinRelative(x_84, x_85); +lean_inc_ref(x_86); +x_87 = l_Lake_createParentDirs(x_86); if (lean_obj_tag(x_87) == 0) { lean_object* x_88; lean_dec_ref(x_87); -x_88 = lean_io_metadata(x_84); +x_88 = l_IO_FS_writeFile(x_86, x_68); +lean_dec_ref(x_68); if (lean_obj_tag(x_88) == 0) { -lean_object* x_89; lean_object* x_90; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); +lean_object* x_89; lean_dec_ref(x_88); -x_90 = lean_ctor_get(x_89, 1); -lean_inc_ref(x_90); -lean_dec(x_89); -x_77 = x_84; -x_78 = lean_box(0); -x_79 = x_90; -goto block_80; +lean_inc_ref(x_2); +x_89 = l_Lake_writeFileHash(x_2, x_71); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; +lean_dec_ref(x_89); +x_90 = lean_io_metadata(x_86); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +lean_dec_ref(x_90); +x_92 = lean_ctor_get(x_91, 1); +lean_inc_ref(x_92); +lean_dec(x_91); +x_79 = x_86; +x_80 = lean_box(0); +x_81 = x_92; +goto block_82; } else { -lean_object* x_91; -lean_dec_ref(x_88); -x_91 = l_Lake_platformTrace___closed__4; -x_77 = x_84; -x_78 = lean_box(0); -x_79 = x_91; -goto block_80; +lean_object* x_93; +lean_dec_ref(x_90); +x_93 = l_Lake_platformTrace___closed__4; +x_79 = x_86; +x_80 = lean_box(0); +x_81 = x_93; +goto block_82; } } else { -uint8_t x_92; -lean_dec_ref(x_84); -lean_dec_ref(x_70); -lean_dec(x_65); +uint8_t x_94; +lean_dec_ref(x_86); +lean_dec_ref(x_72); +lean_dec(x_67); lean_dec_ref(x_2); -x_92 = !lean_is_exclusive(x_87); -if (x_92 == 0) +x_94 = !lean_is_exclusive(x_89); +if (x_94 == 0) +{ +return x_89; +} +else +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_89, 0); +lean_inc(x_95); +lean_dec(x_89); +x_96 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_96, 0, x_95); +return x_96; +} +} +} +else +{ +uint8_t x_97; +lean_dec_ref(x_86); +lean_dec_ref(x_72); +lean_dec(x_67); +lean_dec_ref(x_2); +x_97 = !lean_is_exclusive(x_88); +if (x_97 == 0) +{ +return x_88; +} +else +{ +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_88, 0); +lean_inc(x_98); +lean_dec(x_88); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +return x_99; +} +} +} +else +{ +uint8_t x_100; +lean_dec_ref(x_86); +lean_dec_ref(x_72); +lean_dec_ref(x_68); +lean_dec(x_67); +lean_dec_ref(x_2); +x_100 = !lean_is_exclusive(x_87); +if (x_100 == 0) { return x_87; } else { -lean_object* x_93; lean_object* x_94; -x_93 = lean_ctor_get(x_87, 0); -lean_inc(x_93); +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_87, 0); +lean_inc(x_101); lean_dec(x_87); -x_94 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_94, 0, x_93); -return x_94; -} -} -} -else -{ -uint8_t x_95; -lean_dec_ref(x_84); -lean_dec_ref(x_70); -lean_dec(x_65); -lean_dec_ref(x_2); -x_95 = !lean_is_exclusive(x_86); -if (x_95 == 0) -{ -return x_86; -} -else -{ -lean_object* x_96; lean_object* x_97; -x_96 = lean_ctor_get(x_86, 0); -lean_inc(x_96); -lean_dec(x_86); -x_97 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_97, 0, x_96); -return x_97; -} -} -} -else -{ -uint8_t x_98; -lean_dec_ref(x_84); -lean_dec_ref(x_70); -lean_dec_ref(x_66); -lean_dec(x_65); -lean_dec_ref(x_2); -x_98 = !lean_is_exclusive(x_85); -if (x_98 == 0) -{ -return x_85; -} -else -{ -lean_object* x_99; lean_object* x_100; -x_99 = lean_ctor_get(x_85, 0); -lean_inc(x_99); -lean_dec(x_85); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -return x_100; +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +return x_102; } } } } else { -uint8_t x_110; +uint8_t x_112; lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_110 = !lean_is_exclusive(x_63); -if (x_110 == 0) +x_112 = !lean_is_exclusive(x_65); +if (x_112 == 0) { -return x_63; +return x_65; } else { -lean_object* x_111; lean_object* x_112; -x_111 = lean_ctor_get(x_63, 0); -lean_inc(x_111); -lean_dec(x_63); -x_112 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_112, 0, x_111); -return x_112; +lean_object* x_113; lean_object* x_114; +x_113 = lean_ctor_get(x_65, 0); +lean_inc(x_113); +lean_dec(x_65); +x_114 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_114, 0, x_113); +return x_114; } } } @@ -11461,3174 +11459,61 @@ return x_13; LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___redArg(lean_object* x_1, uint64_t 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_13; lean_object* x_14; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_24; uint8_t x_25; -x_24 = l_Lake_instMonadWorkspaceJobM___closed__0; -x_25 = !lean_is_exclusive(x_24); -if (x_25 == 0) +lean_object* x_13; lean_object* x_14; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_24; uint8_t 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; uint8_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_253; lean_object* x_254; +x_253 = lean_ctor_get(x_5, 6); +x_254 = lean_ctor_get(x_253, 25); +if (lean_obj_tag(x_254) == 0) { -lean_object* x_26; uint8_t x_27; -x_26 = lean_ctor_get(x_24, 0); -x_27 = !lean_is_exclusive(x_26); -if (x_27 == 0) +lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_255 = lean_ctor_get(x_10, 1); +x_256 = lean_ctor_get(x_255, 1); +x_257 = lean_ctor_get(x_256, 6); +if (lean_obj_tag(x_257) == 0) { -lean_object* x_28; 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; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_28 = lean_ctor_get(x_24, 1); -x_29 = lean_ctor_get(x_26, 0); -x_30 = lean_ctor_get(x_26, 1); -x_31 = lean_ctor_get(x_26, 4); -lean_dec(x_31); -x_32 = lean_ctor_get(x_26, 3); -lean_dec(x_32); -x_33 = lean_ctor_get(x_26, 2); -lean_dec(x_33); -lean_inc(x_28); -lean_inc(x_30); -x_34 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__1), 7, 2); -lean_closure_set(x_34, 0, x_30); -lean_closure_set(x_34, 1, x_28); -lean_inc(x_28); -lean_inc(x_30); -x_35 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__3), 7, 2); -lean_closure_set(x_35, 0, x_30); -lean_closure_set(x_35, 1, x_28); -lean_inc_ref(x_34); -lean_inc(x_30); -x_36 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__5), 7, 2); -lean_closure_set(x_36, 0, x_30); -lean_closure_set(x_36, 1, x_34); -lean_inc(x_30); -lean_inc_ref(x_29); -x_37 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__9), 8, 3); -lean_closure_set(x_37, 0, x_29); -lean_closure_set(x_37, 1, x_30); -lean_closure_set(x_37, 2, x_28); -x_38 = l_Lake_EStateT_instFunctor___redArg(x_29); -x_39 = lean_alloc_closure((void*)(l_Lake_EStateT_instPure___redArg___lam__0), 4, 1); -lean_closure_set(x_39, 0, x_30); -lean_ctor_set(x_26, 4, x_35); -lean_ctor_set(x_26, 3, x_36); -lean_ctor_set(x_26, 2, x_37); -lean_ctor_set(x_26, 1, x_39); -lean_ctor_set(x_26, 0, x_38); -lean_ctor_set(x_24, 1, x_34); -x_40 = l_ReaderT_instMonad___redArg(x_24); -x_41 = l_ReaderT_instMonad___redArg(x_40); -x_42 = l_ReaderT_instMonad___redArg(x_41); -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_258 = lean_ctor_get(x_255, 0); +x_259 = lean_ctor_get(x_258, 6); +x_260 = lean_ctor_get(x_259, 25); +if (lean_obj_tag(x_260) == 0) { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_44 = lean_ctor_get(x_42, 0); -x_45 = lean_ctor_get(x_42, 1); -lean_dec(x_45); -x_46 = lean_ctor_get(x_44, 0); -lean_inc_ref(x_46); -lean_dec_ref(x_44); -lean_inc_ref(x_46); -x_47 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_47, 0, x_46); -x_48 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_48, 0, x_46); -lean_ctor_set(x_42, 1, x_48); -lean_ctor_set(x_42, 0, x_47); -x_49 = l_Lake_EquipT_instFunctor___redArg(x_42); -x_50 = l_Lake_instMonadWorkspaceJobM; -lean_inc_ref(x_5); -x_51 = l_Lake_Package_isArtifactCacheEnabled___redArg(x_49, x_50, x_5); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_52 = lean_apply_7(x_51, x_6, x_7, x_8, x_9, x_10, x_11, lean_box(0)); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; uint8_t x_55; -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 0); -lean_inc(x_54); -lean_dec_ref(x_52); -x_55 = !lean_is_exclusive(x_53); -if (x_55 == 0) -{ -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_125; -x_56 = lean_ctor_get(x_53, 0); -x_57 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_57); -lean_inc_ref(x_4); -x_125 = l_Lake_Cache_readOutputs_x3f(x_4, x_57, x_2, x_56); -if (lean_obj_tag(x_125) == 0) -{ -lean_object* x_126; lean_object* x_127; -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec_ref(x_125); -lean_ctor_set(x_53, 0, x_127); -if (lean_obj_tag(x_126) == 1) -{ -uint8_t x_128; -x_128 = !lean_is_exclusive(x_126); -if (x_128 == 0) -{ -lean_object* x_129; lean_object* x_130; -x_129 = lean_ctor_get(x_126, 0); -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_130 = lean_apply_8(x_1, x_129, x_6, x_7, x_8, x_9, x_10, x_53, lean_box(0)); -if (lean_obj_tag(x_130) == 0) -{ -lean_object* x_131; -x_131 = lean_ctor_get(x_130, 0); -lean_inc(x_131); -if (lean_obj_tag(x_131) == 0) -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; -lean_free_object(x_126); -x_132 = lean_ctor_get(x_130, 1); -lean_inc(x_132); -lean_dec_ref(x_130); -x_133 = lean_ctor_get(x_131, 0); -lean_inc(x_133); -lean_dec_ref(x_131); -x_134 = l_Lake_Hash_hex(x_2); -x_135 = lean_unsigned_to_nat(0u); -x_136 = lean_string_utf8_byte_size(x_134); -lean_inc_ref(x_134); -x_137 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_137, 0, x_134); -lean_ctor_set(x_137, 1, x_135); -lean_ctor_set(x_137, 2, x_136); -x_138 = !lean_is_exclusive(x_132); -if (x_138 == 0) -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; lean_object* x_151; -x_139 = lean_ctor_get(x_132, 0); -x_140 = lean_unsigned_to_nat(7u); -x_141 = l_String_Slice_Pos_nextn(x_137, x_135, x_140); -lean_dec_ref(x_137); -x_142 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_143 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_143, 0, x_134); -lean_ctor_set(x_143, 1, x_135); -lean_ctor_set(x_143, 2, x_141); -x_144 = l_String_Slice_toString(x_143); -lean_dec_ref(x_143); -x_145 = lean_string_append(x_142, x_144); -lean_dec_ref(x_144); -x_146 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_147 = lean_string_append(x_145, x_146); -x_148 = lean_string_append(x_147, x_133); -lean_dec(x_133); -x_149 = 2; -x_150 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set_uint8(x_150, sizeof(void*)*1, x_149); -x_151 = lean_array_push(x_139, x_150); -lean_ctor_set(x_132, 0, x_151); -x_58 = x_6; -x_59 = x_7; -x_60 = x_8; -x_61 = x_9; -x_62 = x_10; -x_63 = x_132; -x_64 = lean_box(0); -goto block_124; -} -else -{ -lean_object* x_152; uint8_t x_153; uint8_t x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_152 = lean_ctor_get(x_132, 0); -x_153 = lean_ctor_get_uint8(x_132, sizeof(void*)*3); -x_154 = lean_ctor_get_uint8(x_132, sizeof(void*)*3 + 1); -x_155 = lean_ctor_get(x_132, 1); -x_156 = lean_ctor_get(x_132, 2); -lean_inc(x_156); -lean_inc(x_155); -lean_inc(x_152); -lean_dec(x_132); -x_157 = lean_unsigned_to_nat(7u); -x_158 = l_String_Slice_Pos_nextn(x_137, x_135, x_157); -lean_dec_ref(x_137); -x_159 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_160 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_160, 0, x_134); -lean_ctor_set(x_160, 1, x_135); -lean_ctor_set(x_160, 2, x_158); -x_161 = l_String_Slice_toString(x_160); -lean_dec_ref(x_160); -x_162 = lean_string_append(x_159, x_161); -lean_dec_ref(x_161); -x_163 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_164 = lean_string_append(x_162, x_163); -x_165 = lean_string_append(x_164, x_133); -lean_dec(x_133); -x_166 = 2; -x_167 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set_uint8(x_167, sizeof(void*)*1, x_166); -x_168 = lean_array_push(x_152, x_167); -x_169 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_155); -lean_ctor_set(x_169, 2, x_156); -lean_ctor_set_uint8(x_169, sizeof(void*)*3, x_153); -lean_ctor_set_uint8(x_169, sizeof(void*)*3 + 1, x_154); -x_58 = x_6; -x_59 = x_7; -x_60 = x_8; -x_61 = x_9; -x_62 = x_10; -x_63 = x_169; -x_64 = lean_box(0); -goto block_124; -} -} -else -{ -uint8_t x_170; -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_170 = !lean_is_exclusive(x_130); -if (x_170 == 0) -{ -lean_object* x_171; lean_object* x_172; -x_171 = lean_ctor_get(x_130, 0); -lean_dec(x_171); -x_172 = lean_ctor_get(x_131, 0); -lean_inc(x_172); -lean_dec_ref(x_131); -lean_ctor_set(x_126, 0, x_172); -lean_ctor_set(x_130, 0, x_126); -return x_130; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_130, 1); -lean_inc(x_173); -lean_dec(x_130); -x_174 = lean_ctor_get(x_131, 0); -lean_inc(x_174); -lean_dec_ref(x_131); -lean_ctor_set(x_126, 0, x_174); -x_175 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_175, 0, x_126); -lean_ctor_set(x_175, 1, x_173); -return x_175; -} -} -} -else -{ -uint8_t x_176; -lean_free_object(x_126); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_176 = !lean_is_exclusive(x_130); -if (x_176 == 0) -{ -return x_130; -} -else -{ -lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_177 = lean_ctor_get(x_130, 0); -x_178 = lean_ctor_get(x_130, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_130); -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_177); -lean_ctor_set(x_179, 1, x_178); -return x_179; -} -} -} -else -{ -lean_object* x_180; lean_object* x_181; -x_180 = lean_ctor_get(x_126, 0); -lean_inc(x_180); -lean_dec(x_126); -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_181 = lean_apply_8(x_1, x_180, x_6, x_7, x_8, x_9, x_10, x_53, lean_box(0)); -if (lean_obj_tag(x_181) == 0) -{ -lean_object* x_182; -x_182 = lean_ctor_get(x_181, 0); -lean_inc(x_182); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; uint8_t x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; -x_183 = lean_ctor_get(x_181, 1); -lean_inc(x_183); -lean_dec_ref(x_181); -x_184 = lean_ctor_get(x_182, 0); -lean_inc(x_184); -lean_dec_ref(x_182); -x_185 = l_Lake_Hash_hex(x_2); -x_186 = lean_unsigned_to_nat(0u); -x_187 = lean_string_utf8_byte_size(x_185); -lean_inc_ref(x_185); -x_188 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_188, 0, x_185); -lean_ctor_set(x_188, 1, x_186); -lean_ctor_set(x_188, 2, x_187); -x_189 = lean_ctor_get(x_183, 0); -lean_inc_ref(x_189); -x_190 = lean_ctor_get_uint8(x_183, sizeof(void*)*3); -x_191 = lean_ctor_get_uint8(x_183, sizeof(void*)*3 + 1); -x_192 = lean_ctor_get(x_183, 1); -lean_inc_ref(x_192); -x_193 = lean_ctor_get(x_183, 2); -lean_inc(x_193); -if (lean_is_exclusive(x_183)) { - lean_ctor_release(x_183, 0); - lean_ctor_release(x_183, 1); - lean_ctor_release(x_183, 2); - x_194 = x_183; -} else { - lean_dec_ref(x_183); - x_194 = lean_box(0); -} -x_195 = lean_unsigned_to_nat(7u); -x_196 = l_String_Slice_Pos_nextn(x_188, x_186, x_195); -lean_dec_ref(x_188); -x_197 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_198 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_198, 0, x_185); -lean_ctor_set(x_198, 1, x_186); -lean_ctor_set(x_198, 2, x_196); -x_199 = l_String_Slice_toString(x_198); -lean_dec_ref(x_198); -x_200 = lean_string_append(x_197, x_199); -lean_dec_ref(x_199); -x_201 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_202 = lean_string_append(x_200, x_201); -x_203 = lean_string_append(x_202, x_184); -lean_dec(x_184); -x_204 = 2; -x_205 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set_uint8(x_205, sizeof(void*)*1, x_204); -x_206 = lean_array_push(x_189, x_205); -if (lean_is_scalar(x_194)) { - x_207 = lean_alloc_ctor(0, 3, 2); -} else { - x_207 = x_194; -} -lean_ctor_set(x_207, 0, x_206); -lean_ctor_set(x_207, 1, x_192); -lean_ctor_set(x_207, 2, x_193); -lean_ctor_set_uint8(x_207, sizeof(void*)*3, x_190); -lean_ctor_set_uint8(x_207, sizeof(void*)*3 + 1, x_191); -x_58 = x_6; -x_59 = x_7; -x_60 = x_8; -x_61 = x_9; -x_62 = x_10; -x_63 = x_207; -x_64 = lean_box(0); -goto block_124; -} -else -{ -lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_208 = lean_ctor_get(x_181, 1); -lean_inc(x_208); -if (lean_is_exclusive(x_181)) { - lean_ctor_release(x_181, 0); - lean_ctor_release(x_181, 1); - x_209 = x_181; -} else { - lean_dec_ref(x_181); - x_209 = lean_box(0); -} -x_210 = lean_ctor_get(x_182, 0); -lean_inc(x_210); -lean_dec_ref(x_182); -x_211 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_211, 0, x_210); -if (lean_is_scalar(x_209)) { - x_212 = lean_alloc_ctor(0, 2, 0); -} else { - x_212 = x_209; -} -lean_ctor_set(x_212, 0, x_211); -lean_ctor_set(x_212, 1, x_208); -return x_212; -} -} -else -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_213 = lean_ctor_get(x_181, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_181, 1); -lean_inc(x_214); -if (lean_is_exclusive(x_181)) { - lean_ctor_release(x_181, 0); - lean_ctor_release(x_181, 1); - x_215 = x_181; -} else { - lean_dec_ref(x_181); - x_215 = lean_box(0); -} -if (lean_is_scalar(x_215)) { - x_216 = lean_alloc_ctor(1, 2, 0); -} else { - x_216 = x_215; -} -lean_ctor_set(x_216, 0, x_213); -lean_ctor_set(x_216, 1, x_214); -return x_216; -} -} -} -else -{ -lean_dec(x_126); -x_58 = x_6; -x_59 = x_7; -x_60 = x_8; -x_61 = x_9; -x_62 = x_10; -x_63 = x_53; -x_64 = lean_box(0); -goto block_124; -} -} -else -{ -uint8_t x_217; -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_217 = !lean_is_exclusive(x_125); -if (x_217 == 0) -{ -lean_object* x_218; -x_218 = lean_ctor_get(x_125, 1); -lean_ctor_set(x_53, 0, x_218); -lean_ctor_set(x_125, 1, x_53); -return x_125; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_125, 0); -x_220 = lean_ctor_get(x_125, 1); -lean_inc(x_220); -lean_inc(x_219); -lean_dec(x_125); -lean_ctor_set(x_53, 0, x_220); -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_219); -lean_ctor_set(x_221, 1, x_53); -return x_221; -} -} -block_124: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_65; uint64_t x_66; lean_object* x_67; uint8_t x_68; -x_65 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_65); -lean_dec_ref(x_3); -x_66 = lean_ctor_get_uint64(x_65, sizeof(void*)*3); -x_67 = lean_ctor_get(x_65, 1); -lean_inc(x_67); -lean_dec_ref(x_65); -x_68 = lean_uint64_dec_eq(x_66, x_2); -if (x_68 == 0) -{ -lean_dec(x_67); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_63; -x_14 = lean_box(0); -goto block_17; -} -else -{ -if (lean_obj_tag(x_67) == 1) -{ -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_67, 0); -lean_inc(x_69); -lean_dec_ref(x_67); -lean_inc(x_69); -x_70 = lean_apply_8(x_1, x_69, x_58, x_59, x_60, x_61, x_62, x_63, lean_box(0)); -if (lean_obj_tag(x_70) == 0) -{ -lean_object* x_71; -x_71 = lean_ctor_get(x_70, 0); -lean_inc(x_71); -if (lean_obj_tag(x_71) == 1) -{ -uint8_t x_72; -x_72 = lean_unbox(x_54); -lean_dec(x_54); -if (x_72 == 0) -{ -lean_object* x_73; lean_object* x_74; -lean_dec(x_69); -lean_dec_ref(x_57); -lean_dec_ref(x_4); -x_73 = lean_ctor_get(x_70, 1); -lean_inc(x_73); -lean_dec_ref(x_70); -x_74 = lean_ctor_get(x_71, 0); -lean_inc(x_74); -lean_dec_ref(x_71); -x_18 = x_74; -x_19 = x_73; -x_20 = lean_box(0); -goto block_23; -} -else -{ -uint8_t x_75; -x_75 = !lean_is_exclusive(x_70); -if (x_75 == 0) -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_76 = lean_ctor_get(x_70, 1); -x_77 = lean_ctor_get(x_70, 0); -lean_dec(x_77); -x_78 = lean_ctor_get(x_71, 0); -lean_inc(x_78); -lean_dec_ref(x_71); -x_79 = lean_ctor_get(x_76, 0); -x_80 = lean_ctor_get_uint8(x_76, sizeof(void*)*3); -x_81 = lean_ctor_get_uint8(x_76, sizeof(void*)*3 + 1); -x_82 = lean_ctor_get(x_76, 1); -x_83 = lean_ctor_get(x_76, 2); -x_84 = l_Lake_Cache_writeOutputsCore(x_4, x_57, x_2, x_69); -if (lean_obj_tag(x_84) == 0) -{ -lean_dec_ref(x_84); -lean_free_object(x_70); -x_18 = x_78; -x_19 = x_76; -x_20 = lean_box(0); -goto block_23; -} -else -{ -uint8_t x_85; -lean_inc(x_83); -lean_inc_ref(x_82); -lean_inc_ref(x_79); -lean_dec(x_78); -x_85 = !lean_is_exclusive(x_76); -if (x_85 == 0) -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_86 = lean_ctor_get(x_76, 2); -lean_dec(x_86); -x_87 = lean_ctor_get(x_76, 1); -lean_dec(x_87); -x_88 = lean_ctor_get(x_76, 0); -lean_dec(x_88); -x_89 = lean_ctor_get(x_84, 0); -lean_inc(x_89); -lean_dec_ref(x_84); -x_90 = lean_io_error_to_string(x_89); -x_91 = 3; -x_92 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_92, 0, x_90); -lean_ctor_set_uint8(x_92, sizeof(void*)*1, x_91); -x_93 = lean_array_get_size(x_79); -x_94 = lean_array_push(x_79, x_92); -lean_ctor_set(x_76, 0, x_94); -lean_ctor_set_tag(x_70, 1); -lean_ctor_set(x_70, 0, x_93); -return x_70; -} -else -{ -lean_object* x_95; lean_object* x_96; uint8_t x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -lean_dec(x_76); -x_95 = lean_ctor_get(x_84, 0); -lean_inc(x_95); -lean_dec_ref(x_84); -x_96 = lean_io_error_to_string(x_95); -x_97 = 3; -x_98 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set_uint8(x_98, sizeof(void*)*1, x_97); -x_99 = lean_array_get_size(x_79); -x_100 = lean_array_push(x_79, x_98); -x_101 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_82); -lean_ctor_set(x_101, 2, x_83); -lean_ctor_set_uint8(x_101, sizeof(void*)*3, x_80); -lean_ctor_set_uint8(x_101, sizeof(void*)*3 + 1, x_81); -lean_ctor_set_tag(x_70, 1); -lean_ctor_set(x_70, 1, x_101); -lean_ctor_set(x_70, 0, x_99); -return x_70; -} -} -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; uint8_t x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_102 = lean_ctor_get(x_70, 1); -lean_inc(x_102); -lean_dec(x_70); -x_103 = lean_ctor_get(x_71, 0); -lean_inc(x_103); -lean_dec_ref(x_71); -x_104 = lean_ctor_get(x_102, 0); -x_105 = lean_ctor_get_uint8(x_102, sizeof(void*)*3); -x_106 = lean_ctor_get_uint8(x_102, sizeof(void*)*3 + 1); -x_107 = lean_ctor_get(x_102, 1); -x_108 = lean_ctor_get(x_102, 2); -x_109 = l_Lake_Cache_writeOutputsCore(x_4, x_57, x_2, x_69); -if (lean_obj_tag(x_109) == 0) -{ -lean_dec_ref(x_109); -x_18 = x_103; -x_19 = x_102; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_inc(x_108); -lean_inc_ref(x_107); -lean_inc_ref(x_104); -lean_dec(x_103); -if (lean_is_exclusive(x_102)) { - lean_ctor_release(x_102, 0); - lean_ctor_release(x_102, 1); - lean_ctor_release(x_102, 2); - x_110 = x_102; -} else { - lean_dec_ref(x_102); - x_110 = lean_box(0); -} -x_111 = lean_ctor_get(x_109, 0); -lean_inc(x_111); -lean_dec_ref(x_109); -x_112 = lean_io_error_to_string(x_111); -x_113 = 3; -x_114 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_114, 0, x_112); -lean_ctor_set_uint8(x_114, sizeof(void*)*1, x_113); -x_115 = lean_array_get_size(x_104); -x_116 = lean_array_push(x_104, x_114); -if (lean_is_scalar(x_110)) { - x_117 = lean_alloc_ctor(0, 3, 2); -} else { - x_117 = x_110; -} -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_107); -lean_ctor_set(x_117, 2, x_108); -lean_ctor_set_uint8(x_117, sizeof(void*)*3, x_105); -lean_ctor_set_uint8(x_117, sizeof(void*)*3 + 1, x_106); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_115); -lean_ctor_set(x_118, 1, x_117); -return x_118; -} -} -} -} -else -{ -lean_object* x_119; -lean_dec(x_71); -lean_dec(x_69); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_4); -x_119 = lean_ctor_get(x_70, 1); -lean_inc(x_119); -lean_dec_ref(x_70); -x_13 = x_119; -x_14 = lean_box(0); -goto block_17; -} -} -else -{ -uint8_t x_120; -lean_dec(x_69); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_4); -x_120 = !lean_is_exclusive(x_70); -if (x_120 == 0) -{ -return x_70; -} -else -{ -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_70, 0); -x_122 = lean_ctor_get(x_70, 1); -lean_inc(x_122); -lean_inc(x_121); -lean_dec(x_70); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; -} -} -} -else -{ -lean_dec(x_67); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_63; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec_ref(x_57); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_63; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_object* x_222; uint8_t x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_269; -x_222 = lean_ctor_get(x_53, 0); -x_223 = lean_ctor_get_uint8(x_53, sizeof(void*)*3); -x_224 = lean_ctor_get_uint8(x_53, sizeof(void*)*3 + 1); -x_225 = lean_ctor_get(x_53, 1); -x_226 = lean_ctor_get(x_53, 2); -lean_inc(x_226); -lean_inc(x_225); -lean_inc(x_222); -lean_dec(x_53); -x_227 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_227); -lean_inc_ref(x_4); -x_269 = l_Lake_Cache_readOutputs_x3f(x_4, x_227, x_2, x_222); -if (lean_obj_tag(x_269) == 0) -{ -lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_270 = lean_ctor_get(x_269, 0); -lean_inc(x_270); -x_271 = lean_ctor_get(x_269, 1); -lean_inc(x_271); -lean_dec_ref(x_269); -x_272 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set(x_272, 1, x_225); -lean_ctor_set(x_272, 2, x_226); -lean_ctor_set_uint8(x_272, sizeof(void*)*3, x_223); -lean_ctor_set_uint8(x_272, sizeof(void*)*3 + 1, x_224); -if (lean_obj_tag(x_270) == 1) -{ -lean_object* x_273; lean_object* x_274; lean_object* x_275; -x_273 = lean_ctor_get(x_270, 0); -lean_inc(x_273); -if (lean_is_exclusive(x_270)) { - lean_ctor_release(x_270, 0); - x_274 = x_270; -} else { - lean_dec_ref(x_270); - x_274 = lean_box(0); -} -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_275 = lean_apply_8(x_1, x_273, x_6, x_7, x_8, x_9, x_10, x_272, lean_box(0)); -if (lean_obj_tag(x_275) == 0) -{ -lean_object* x_276; -x_276 = lean_ctor_get(x_275, 0); -lean_inc(x_276); -if (lean_obj_tag(x_276) == 0) -{ -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; uint8_t x_284; uint8_t x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; -lean_dec(x_274); -x_277 = lean_ctor_get(x_275, 1); -lean_inc(x_277); -lean_dec_ref(x_275); -x_278 = lean_ctor_get(x_276, 0); -lean_inc(x_278); -lean_dec_ref(x_276); -x_279 = l_Lake_Hash_hex(x_2); -x_280 = lean_unsigned_to_nat(0u); -x_281 = lean_string_utf8_byte_size(x_279); -lean_inc_ref(x_279); -x_282 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_282, 0, x_279); -lean_ctor_set(x_282, 1, x_280); -lean_ctor_set(x_282, 2, x_281); -x_283 = lean_ctor_get(x_277, 0); -lean_inc_ref(x_283); -x_284 = lean_ctor_get_uint8(x_277, sizeof(void*)*3); -x_285 = lean_ctor_get_uint8(x_277, sizeof(void*)*3 + 1); -x_286 = lean_ctor_get(x_277, 1); -lean_inc_ref(x_286); -x_287 = lean_ctor_get(x_277, 2); -lean_inc(x_287); -if (lean_is_exclusive(x_277)) { - lean_ctor_release(x_277, 0); - lean_ctor_release(x_277, 1); - lean_ctor_release(x_277, 2); - x_288 = x_277; -} else { - lean_dec_ref(x_277); - x_288 = lean_box(0); -} -x_289 = lean_unsigned_to_nat(7u); -x_290 = l_String_Slice_Pos_nextn(x_282, x_280, x_289); -lean_dec_ref(x_282); -x_291 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_292 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_292, 0, x_279); -lean_ctor_set(x_292, 1, x_280); -lean_ctor_set(x_292, 2, x_290); -x_293 = l_String_Slice_toString(x_292); -lean_dec_ref(x_292); -x_294 = lean_string_append(x_291, x_293); -lean_dec_ref(x_293); -x_295 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_296 = lean_string_append(x_294, x_295); -x_297 = lean_string_append(x_296, x_278); -lean_dec(x_278); -x_298 = 2; -x_299 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_299, 0, x_297); -lean_ctor_set_uint8(x_299, sizeof(void*)*1, x_298); -x_300 = lean_array_push(x_283, x_299); -if (lean_is_scalar(x_288)) { - x_301 = lean_alloc_ctor(0, 3, 2); -} else { - x_301 = x_288; -} -lean_ctor_set(x_301, 0, x_300); -lean_ctor_set(x_301, 1, x_286); -lean_ctor_set(x_301, 2, x_287); -lean_ctor_set_uint8(x_301, sizeof(void*)*3, x_284); -lean_ctor_set_uint8(x_301, sizeof(void*)*3 + 1, x_285); -x_228 = x_6; -x_229 = x_7; -x_230 = x_8; -x_231 = x_9; -x_232 = x_10; -x_233 = x_301; -x_234 = lean_box(0); -goto block_268; -} -else -{ -lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_302 = lean_ctor_get(x_275, 1); -lean_inc(x_302); -if (lean_is_exclusive(x_275)) { - lean_ctor_release(x_275, 0); - lean_ctor_release(x_275, 1); - x_303 = x_275; -} else { - lean_dec_ref(x_275); - x_303 = lean_box(0); -} -x_304 = lean_ctor_get(x_276, 0); -lean_inc(x_304); -lean_dec_ref(x_276); -if (lean_is_scalar(x_274)) { - x_305 = lean_alloc_ctor(1, 1, 0); -} else { - x_305 = x_274; -} -lean_ctor_set(x_305, 0, x_304); -if (lean_is_scalar(x_303)) { - x_306 = lean_alloc_ctor(0, 2, 0); -} else { - x_306 = x_303; -} -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_302); -return x_306; -} -} -else -{ -lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; -lean_dec(x_274); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_307 = lean_ctor_get(x_275, 0); -lean_inc(x_307); -x_308 = lean_ctor_get(x_275, 1); -lean_inc(x_308); -if (lean_is_exclusive(x_275)) { - lean_ctor_release(x_275, 0); - lean_ctor_release(x_275, 1); - x_309 = x_275; -} else { - lean_dec_ref(x_275); - x_309 = lean_box(0); -} -if (lean_is_scalar(x_309)) { - x_310 = lean_alloc_ctor(1, 2, 0); -} else { - x_310 = x_309; -} -lean_ctor_set(x_310, 0, x_307); -lean_ctor_set(x_310, 1, x_308); -return x_310; -} -} -else -{ -lean_dec(x_270); -x_228 = x_6; -x_229 = x_7; -x_230 = x_8; -x_231 = x_9; -x_232 = x_10; -x_233 = x_272; -x_234 = lean_box(0); -goto block_268; -} -} -else -{ -lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_311 = lean_ctor_get(x_269, 0); -lean_inc(x_311); -x_312 = lean_ctor_get(x_269, 1); -lean_inc(x_312); -if (lean_is_exclusive(x_269)) { - lean_ctor_release(x_269, 0); - lean_ctor_release(x_269, 1); - x_313 = x_269; -} else { - lean_dec_ref(x_269); - x_313 = lean_box(0); -} -x_314 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_314, 0, x_312); -lean_ctor_set(x_314, 1, x_225); -lean_ctor_set(x_314, 2, x_226); -lean_ctor_set_uint8(x_314, sizeof(void*)*3, x_223); -lean_ctor_set_uint8(x_314, sizeof(void*)*3 + 1, x_224); -if (lean_is_scalar(x_313)) { - x_315 = lean_alloc_ctor(1, 2, 0); -} else { - x_315 = x_313; -} -lean_ctor_set(x_315, 0, x_311); -lean_ctor_set(x_315, 1, x_314); -return x_315; -} -block_268: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_235; uint64_t x_236; lean_object* x_237; uint8_t x_238; -x_235 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_235); -lean_dec_ref(x_3); -x_236 = lean_ctor_get_uint64(x_235, sizeof(void*)*3); -x_237 = lean_ctor_get(x_235, 1); -lean_inc(x_237); -lean_dec_ref(x_235); -x_238 = lean_uint64_dec_eq(x_236, x_2); -if (x_238 == 0) -{ -lean_dec(x_237); -lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec(x_230); -lean_dec(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_233; -x_14 = lean_box(0); -goto block_17; -} -else -{ -if (lean_obj_tag(x_237) == 1) -{ -lean_object* x_239; lean_object* x_240; -x_239 = lean_ctor_get(x_237, 0); -lean_inc(x_239); -lean_dec_ref(x_237); -lean_inc(x_239); -x_240 = lean_apply_8(x_1, x_239, x_228, x_229, x_230, x_231, x_232, x_233, lean_box(0)); -if (lean_obj_tag(x_240) == 0) -{ -lean_object* x_241; -x_241 = lean_ctor_get(x_240, 0); -lean_inc(x_241); -if (lean_obj_tag(x_241) == 1) -{ -uint8_t x_242; -x_242 = lean_unbox(x_54); -lean_dec(x_54); -if (x_242 == 0) -{ -lean_object* x_243; lean_object* x_244; -lean_dec(x_239); -lean_dec_ref(x_227); -lean_dec_ref(x_4); -x_243 = lean_ctor_get(x_240, 1); -lean_inc(x_243); -lean_dec_ref(x_240); -x_244 = lean_ctor_get(x_241, 0); -lean_inc(x_244); -lean_dec_ref(x_241); -x_18 = x_244; -x_19 = x_243; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; uint8_t x_249; uint8_t x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_245 = lean_ctor_get(x_240, 1); -lean_inc(x_245); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_246 = x_240; -} else { - lean_dec_ref(x_240); - x_246 = lean_box(0); -} -x_247 = lean_ctor_get(x_241, 0); -lean_inc(x_247); -lean_dec_ref(x_241); -x_248 = lean_ctor_get(x_245, 0); -x_249 = lean_ctor_get_uint8(x_245, sizeof(void*)*3); -x_250 = lean_ctor_get_uint8(x_245, sizeof(void*)*3 + 1); -x_251 = lean_ctor_get(x_245, 1); -x_252 = lean_ctor_get(x_245, 2); -x_253 = l_Lake_Cache_writeOutputsCore(x_4, x_227, x_2, x_239); -if (lean_obj_tag(x_253) == 0) -{ -lean_dec_ref(x_253); -lean_dec(x_246); -x_18 = x_247; -x_19 = x_245; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -lean_inc(x_252); -lean_inc_ref(x_251); -lean_inc_ref(x_248); -lean_dec(x_247); -if (lean_is_exclusive(x_245)) { - lean_ctor_release(x_245, 0); - lean_ctor_release(x_245, 1); - lean_ctor_release(x_245, 2); - x_254 = x_245; -} else { - lean_dec_ref(x_245); - x_254 = lean_box(0); -} -x_255 = lean_ctor_get(x_253, 0); -lean_inc(x_255); -lean_dec_ref(x_253); -x_256 = lean_io_error_to_string(x_255); -x_257 = 3; -x_258 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_258, 0, x_256); -lean_ctor_set_uint8(x_258, sizeof(void*)*1, x_257); -x_259 = lean_array_get_size(x_248); -x_260 = lean_array_push(x_248, x_258); -if (lean_is_scalar(x_254)) { - x_261 = lean_alloc_ctor(0, 3, 2); -} else { - x_261 = x_254; -} -lean_ctor_set(x_261, 0, x_260); -lean_ctor_set(x_261, 1, x_251); -lean_ctor_set(x_261, 2, x_252); -lean_ctor_set_uint8(x_261, sizeof(void*)*3, x_249); -lean_ctor_set_uint8(x_261, sizeof(void*)*3 + 1, x_250); -if (lean_is_scalar(x_246)) { - x_262 = lean_alloc_ctor(1, 2, 0); -} else { - x_262 = x_246; - lean_ctor_set_tag(x_262, 1); -} -lean_ctor_set(x_262, 0, x_259); -lean_ctor_set(x_262, 1, x_261); -return x_262; -} -} -} -else -{ -lean_object* x_263; -lean_dec(x_241); -lean_dec(x_239); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_4); -x_263 = lean_ctor_get(x_240, 1); -lean_inc(x_263); -lean_dec_ref(x_240); -x_13 = x_263; -x_14 = lean_box(0); -goto block_17; -} -} -else -{ -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; -lean_dec(x_239); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_4); -x_264 = lean_ctor_get(x_240, 0); -lean_inc(x_264); -x_265 = lean_ctor_get(x_240, 1); -lean_inc(x_265); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_266 = x_240; -} else { - lean_dec_ref(x_240); - x_266 = lean_box(0); -} -if (lean_is_scalar(x_266)) { - x_267 = lean_alloc_ctor(1, 2, 0); -} else { - x_267 = x_266; -} -lean_ctor_set(x_267, 0, x_264); -lean_ctor_set(x_267, 1, x_265); -return x_267; -} -} -else -{ -lean_dec(x_237); -lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec(x_230); -lean_dec(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_233; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec(x_230); -lean_dec(x_229); -lean_dec_ref(x_228); -lean_dec_ref(x_227); -lean_dec(x_54); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_233; -x_14 = lean_box(0); -goto block_17; -} -} -} -} -else -{ -uint8_t x_316; -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_316 = !lean_is_exclusive(x_52); -if (x_316 == 0) -{ -return x_52; +uint8_t x_261; +x_261 = 0; +x_92 = x_261; +x_93 = x_11; +x_94 = lean_box(0); +goto block_252; } else { -lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_317 = lean_ctor_get(x_52, 0); -x_318 = lean_ctor_get(x_52, 1); -lean_inc(x_318); -lean_inc(x_317); -lean_dec(x_52); -x_319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -return x_319; -} +lean_object* x_262; uint8_t x_263; +x_262 = lean_ctor_get(x_260, 0); +x_263 = lean_unbox(x_262); +x_92 = x_263; +x_93 = x_11; +x_94 = lean_box(0); +goto block_252; } } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; -x_320 = lean_ctor_get(x_42, 0); -lean_inc(x_320); -lean_dec(x_42); -x_321 = lean_ctor_get(x_320, 0); -lean_inc_ref(x_321); -lean_dec_ref(x_320); -lean_inc_ref(x_321); -x_322 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_322, 0, x_321); -x_323 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_323, 0, x_321); -x_324 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_324, 0, x_322); -lean_ctor_set(x_324, 1, x_323); -x_325 = l_Lake_EquipT_instFunctor___redArg(x_324); -x_326 = l_Lake_instMonadWorkspaceJobM; -lean_inc_ref(x_5); -x_327 = l_Lake_Package_isArtifactCacheEnabled___redArg(x_325, x_326, x_5); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_328 = lean_apply_7(x_327, x_6, x_7, x_8, x_9, x_10, x_11, lean_box(0)); -if (lean_obj_tag(x_328) == 0) -{ -lean_object* x_329; lean_object* x_330; lean_object* x_331; uint8_t x_332; uint8_t x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_379; -x_329 = lean_ctor_get(x_328, 1); -lean_inc(x_329); -x_330 = lean_ctor_get(x_328, 0); -lean_inc(x_330); -lean_dec_ref(x_328); -x_331 = lean_ctor_get(x_329, 0); -lean_inc_ref(x_331); -x_332 = lean_ctor_get_uint8(x_329, sizeof(void*)*3); -x_333 = lean_ctor_get_uint8(x_329, sizeof(void*)*3 + 1); -x_334 = lean_ctor_get(x_329, 1); -lean_inc_ref(x_334); -x_335 = lean_ctor_get(x_329, 2); -lean_inc(x_335); -if (lean_is_exclusive(x_329)) { - lean_ctor_release(x_329, 0); - lean_ctor_release(x_329, 1); - lean_ctor_release(x_329, 2); - x_336 = x_329; -} else { - lean_dec_ref(x_329); - x_336 = lean_box(0); -} -x_337 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_337); -lean_inc_ref(x_4); -x_379 = l_Lake_Cache_readOutputs_x3f(x_4, x_337, x_2, x_331); -if (lean_obj_tag(x_379) == 0) -{ -lean_object* x_380; lean_object* x_381; lean_object* x_382; -x_380 = lean_ctor_get(x_379, 0); -lean_inc(x_380); -x_381 = lean_ctor_get(x_379, 1); -lean_inc(x_381); -lean_dec_ref(x_379); -if (lean_is_scalar(x_336)) { - x_382 = lean_alloc_ctor(0, 3, 2); -} else { - x_382 = x_336; +lean_object* x_264; uint8_t x_265; +x_264 = lean_ctor_get(x_257, 0); +x_265 = lean_unbox(x_264); +x_92 = x_265; +x_93 = x_11; +x_94 = lean_box(0); +goto block_252; } -lean_ctor_set(x_382, 0, x_381); -lean_ctor_set(x_382, 1, x_334); -lean_ctor_set(x_382, 2, x_335); -lean_ctor_set_uint8(x_382, sizeof(void*)*3, x_332); -lean_ctor_set_uint8(x_382, sizeof(void*)*3 + 1, x_333); -if (lean_obj_tag(x_380) == 1) -{ -lean_object* x_383; lean_object* x_384; lean_object* x_385; -x_383 = lean_ctor_get(x_380, 0); -lean_inc(x_383); -if (lean_is_exclusive(x_380)) { - lean_ctor_release(x_380, 0); - x_384 = x_380; -} else { - lean_dec_ref(x_380); - x_384 = lean_box(0); -} -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_385 = lean_apply_8(x_1, x_383, x_6, x_7, x_8, x_9, x_10, x_382, lean_box(0)); -if (lean_obj_tag(x_385) == 0) -{ -lean_object* x_386; -x_386 = lean_ctor_get(x_385, 0); -lean_inc(x_386); -if (lean_obj_tag(x_386) == 0) -{ -lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; uint8_t x_394; uint8_t x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; uint8_t x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -lean_dec(x_384); -x_387 = lean_ctor_get(x_385, 1); -lean_inc(x_387); -lean_dec_ref(x_385); -x_388 = lean_ctor_get(x_386, 0); -lean_inc(x_388); -lean_dec_ref(x_386); -x_389 = l_Lake_Hash_hex(x_2); -x_390 = lean_unsigned_to_nat(0u); -x_391 = lean_string_utf8_byte_size(x_389); -lean_inc_ref(x_389); -x_392 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_392, 0, x_389); -lean_ctor_set(x_392, 1, x_390); -lean_ctor_set(x_392, 2, x_391); -x_393 = lean_ctor_get(x_387, 0); -lean_inc_ref(x_393); -x_394 = lean_ctor_get_uint8(x_387, sizeof(void*)*3); -x_395 = lean_ctor_get_uint8(x_387, sizeof(void*)*3 + 1); -x_396 = lean_ctor_get(x_387, 1); -lean_inc_ref(x_396); -x_397 = lean_ctor_get(x_387, 2); -lean_inc(x_397); -if (lean_is_exclusive(x_387)) { - lean_ctor_release(x_387, 0); - lean_ctor_release(x_387, 1); - lean_ctor_release(x_387, 2); - x_398 = x_387; -} else { - lean_dec_ref(x_387); - x_398 = lean_box(0); -} -x_399 = lean_unsigned_to_nat(7u); -x_400 = l_String_Slice_Pos_nextn(x_392, x_390, x_399); -lean_dec_ref(x_392); -x_401 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_402 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_402, 0, x_389); -lean_ctor_set(x_402, 1, x_390); -lean_ctor_set(x_402, 2, x_400); -x_403 = l_String_Slice_toString(x_402); -lean_dec_ref(x_402); -x_404 = lean_string_append(x_401, x_403); -lean_dec_ref(x_403); -x_405 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_406 = lean_string_append(x_404, x_405); -x_407 = lean_string_append(x_406, x_388); -lean_dec(x_388); -x_408 = 2; -x_409 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_409, 0, x_407); -lean_ctor_set_uint8(x_409, sizeof(void*)*1, x_408); -x_410 = lean_array_push(x_393, x_409); -if (lean_is_scalar(x_398)) { - x_411 = lean_alloc_ctor(0, 3, 2); -} else { - x_411 = x_398; -} -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_396); -lean_ctor_set(x_411, 2, x_397); -lean_ctor_set_uint8(x_411, sizeof(void*)*3, x_394); -lean_ctor_set_uint8(x_411, sizeof(void*)*3 + 1, x_395); -x_338 = x_6; -x_339 = x_7; -x_340 = x_8; -x_341 = x_9; -x_342 = x_10; -x_343 = x_411; -x_344 = lean_box(0); -goto block_378; } else { -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_412 = lean_ctor_get(x_385, 1); -lean_inc(x_412); -if (lean_is_exclusive(x_385)) { - lean_ctor_release(x_385, 0); - lean_ctor_release(x_385, 1); - x_413 = x_385; -} else { - lean_dec_ref(x_385); - x_413 = lean_box(0); -} -x_414 = lean_ctor_get(x_386, 0); -lean_inc(x_414); -lean_dec_ref(x_386); -if (lean_is_scalar(x_384)) { - x_415 = lean_alloc_ctor(1, 1, 0); -} else { - x_415 = x_384; -} -lean_ctor_set(x_415, 0, x_414); -if (lean_is_scalar(x_413)) { - x_416 = lean_alloc_ctor(0, 2, 0); -} else { - x_416 = x_413; -} -lean_ctor_set(x_416, 0, x_415); -lean_ctor_set(x_416, 1, x_412); -return x_416; -} -} -else -{ -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; -lean_dec(x_384); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_417 = lean_ctor_get(x_385, 0); -lean_inc(x_417); -x_418 = lean_ctor_get(x_385, 1); -lean_inc(x_418); -if (lean_is_exclusive(x_385)) { - lean_ctor_release(x_385, 0); - lean_ctor_release(x_385, 1); - x_419 = x_385; -} else { - lean_dec_ref(x_385); - x_419 = lean_box(0); -} -if (lean_is_scalar(x_419)) { - x_420 = lean_alloc_ctor(1, 2, 0); -} else { - x_420 = x_419; -} -lean_ctor_set(x_420, 0, x_417); -lean_ctor_set(x_420, 1, x_418); -return x_420; -} -} -else -{ -lean_dec(x_380); -x_338 = x_6; -x_339 = x_7; -x_340 = x_8; -x_341 = x_9; -x_342 = x_10; -x_343 = x_382; -x_344 = lean_box(0); -goto block_378; -} -} -else -{ -lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_421 = lean_ctor_get(x_379, 0); -lean_inc(x_421); -x_422 = lean_ctor_get(x_379, 1); -lean_inc(x_422); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - lean_ctor_release(x_379, 1); - x_423 = x_379; -} else { - lean_dec_ref(x_379); - x_423 = lean_box(0); -} -if (lean_is_scalar(x_336)) { - x_424 = lean_alloc_ctor(0, 3, 2); -} else { - x_424 = x_336; -} -lean_ctor_set(x_424, 0, x_422); -lean_ctor_set(x_424, 1, x_334); -lean_ctor_set(x_424, 2, x_335); -lean_ctor_set_uint8(x_424, sizeof(void*)*3, x_332); -lean_ctor_set_uint8(x_424, sizeof(void*)*3 + 1, x_333); -if (lean_is_scalar(x_423)) { - x_425 = lean_alloc_ctor(1, 2, 0); -} else { - x_425 = x_423; -} -lean_ctor_set(x_425, 0, x_421); -lean_ctor_set(x_425, 1, x_424); -return x_425; -} -block_378: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_345; uint64_t x_346; lean_object* x_347; uint8_t x_348; -x_345 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_345); -lean_dec_ref(x_3); -x_346 = lean_ctor_get_uint64(x_345, sizeof(void*)*3); -x_347 = lean_ctor_get(x_345, 1); -lean_inc(x_347); -lean_dec_ref(x_345); -x_348 = lean_uint64_dec_eq(x_346, x_2); -if (x_348 == 0) -{ -lean_dec(x_347); -lean_dec_ref(x_342); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -lean_dec_ref(x_338); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_343; -x_14 = lean_box(0); -goto block_17; -} -else -{ -if (lean_obj_tag(x_347) == 1) -{ -lean_object* x_349; lean_object* x_350; -x_349 = lean_ctor_get(x_347, 0); -lean_inc(x_349); -lean_dec_ref(x_347); -lean_inc(x_349); -x_350 = lean_apply_8(x_1, x_349, x_338, x_339, x_340, x_341, x_342, x_343, lean_box(0)); -if (lean_obj_tag(x_350) == 0) -{ -lean_object* x_351; -x_351 = lean_ctor_get(x_350, 0); -lean_inc(x_351); -if (lean_obj_tag(x_351) == 1) -{ -uint8_t x_352; -x_352 = lean_unbox(x_330); -lean_dec(x_330); -if (x_352 == 0) -{ -lean_object* x_353; lean_object* x_354; -lean_dec(x_349); -lean_dec_ref(x_337); -lean_dec_ref(x_4); -x_353 = lean_ctor_get(x_350, 1); -lean_inc(x_353); -lean_dec_ref(x_350); -x_354 = lean_ctor_get(x_351, 0); -lean_inc(x_354); -lean_dec_ref(x_351); -x_18 = x_354; -x_19 = x_353; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; uint8_t x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; -x_355 = lean_ctor_get(x_350, 1); -lean_inc(x_355); -if (lean_is_exclusive(x_350)) { - lean_ctor_release(x_350, 0); - lean_ctor_release(x_350, 1); - x_356 = x_350; -} else { - lean_dec_ref(x_350); - x_356 = lean_box(0); -} -x_357 = lean_ctor_get(x_351, 0); -lean_inc(x_357); -lean_dec_ref(x_351); -x_358 = lean_ctor_get(x_355, 0); -x_359 = lean_ctor_get_uint8(x_355, sizeof(void*)*3); -x_360 = lean_ctor_get_uint8(x_355, sizeof(void*)*3 + 1); -x_361 = lean_ctor_get(x_355, 1); -x_362 = lean_ctor_get(x_355, 2); -x_363 = l_Lake_Cache_writeOutputsCore(x_4, x_337, x_2, x_349); -if (lean_obj_tag(x_363) == 0) -{ -lean_dec_ref(x_363); -lean_dec(x_356); -x_18 = x_357; -x_19 = x_355; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -lean_inc(x_362); -lean_inc_ref(x_361); -lean_inc_ref(x_358); -lean_dec(x_357); -if (lean_is_exclusive(x_355)) { - lean_ctor_release(x_355, 0); - lean_ctor_release(x_355, 1); - lean_ctor_release(x_355, 2); - x_364 = x_355; -} else { - lean_dec_ref(x_355); - x_364 = lean_box(0); -} -x_365 = lean_ctor_get(x_363, 0); -lean_inc(x_365); -lean_dec_ref(x_363); -x_366 = lean_io_error_to_string(x_365); -x_367 = 3; -x_368 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_368, 0, x_366); -lean_ctor_set_uint8(x_368, sizeof(void*)*1, x_367); -x_369 = lean_array_get_size(x_358); -x_370 = lean_array_push(x_358, x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 3, 2); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_370); -lean_ctor_set(x_371, 1, x_361); -lean_ctor_set(x_371, 2, x_362); -lean_ctor_set_uint8(x_371, sizeof(void*)*3, x_359); -lean_ctor_set_uint8(x_371, sizeof(void*)*3 + 1, x_360); -if (lean_is_scalar(x_356)) { - x_372 = lean_alloc_ctor(1, 2, 0); -} else { - x_372 = x_356; - lean_ctor_set_tag(x_372, 1); -} -lean_ctor_set(x_372, 0, x_369); -lean_ctor_set(x_372, 1, x_371); -return x_372; -} -} -} -else -{ -lean_object* x_373; -lean_dec(x_351); -lean_dec(x_349); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_4); -x_373 = lean_ctor_get(x_350, 1); -lean_inc(x_373); -lean_dec_ref(x_350); -x_13 = x_373; -x_14 = lean_box(0); -goto block_17; -} -} -else -{ -lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; -lean_dec(x_349); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_4); -x_374 = lean_ctor_get(x_350, 0); -lean_inc(x_374); -x_375 = lean_ctor_get(x_350, 1); -lean_inc(x_375); -if (lean_is_exclusive(x_350)) { - lean_ctor_release(x_350, 0); - lean_ctor_release(x_350, 1); - x_376 = x_350; -} else { - lean_dec_ref(x_350); - x_376 = lean_box(0); -} -if (lean_is_scalar(x_376)) { - x_377 = lean_alloc_ctor(1, 2, 0); -} else { - x_377 = x_376; -} -lean_ctor_set(x_377, 0, x_374); -lean_ctor_set(x_377, 1, x_375); -return x_377; -} -} -else -{ -lean_dec(x_347); -lean_dec_ref(x_342); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -lean_dec_ref(x_338); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_343; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_dec_ref(x_342); -lean_dec(x_341); -lean_dec(x_340); -lean_dec(x_339); -lean_dec_ref(x_338); -lean_dec_ref(x_337); -lean_dec(x_330); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_343; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_426 = lean_ctor_get(x_328, 0); -lean_inc(x_426); -x_427 = lean_ctor_get(x_328, 1); -lean_inc(x_427); -if (lean_is_exclusive(x_328)) { - lean_ctor_release(x_328, 0); - lean_ctor_release(x_328, 1); - x_428 = x_328; -} else { - lean_dec_ref(x_328); - x_428 = lean_box(0); -} -if (lean_is_scalar(x_428)) { - x_429 = lean_alloc_ctor(1, 2, 0); -} else { - x_429 = x_428; -} -lean_ctor_set(x_429, 0, x_426); -lean_ctor_set(x_429, 1, x_427); -return x_429; -} -} -} -else -{ -lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; -x_430 = lean_ctor_get(x_24, 1); -x_431 = lean_ctor_get(x_26, 0); -x_432 = lean_ctor_get(x_26, 1); -lean_inc(x_432); -lean_inc(x_431); -lean_dec(x_26); -lean_inc(x_430); -lean_inc(x_432); -x_433 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__1), 7, 2); -lean_closure_set(x_433, 0, x_432); -lean_closure_set(x_433, 1, x_430); -lean_inc(x_430); -lean_inc(x_432); -x_434 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__3), 7, 2); -lean_closure_set(x_434, 0, x_432); -lean_closure_set(x_434, 1, x_430); -lean_inc_ref(x_433); -lean_inc(x_432); -x_435 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__5), 7, 2); -lean_closure_set(x_435, 0, x_432); -lean_closure_set(x_435, 1, x_433); -lean_inc(x_432); -lean_inc_ref(x_431); -x_436 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__9), 8, 3); -lean_closure_set(x_436, 0, x_431); -lean_closure_set(x_436, 1, x_432); -lean_closure_set(x_436, 2, x_430); -x_437 = l_Lake_EStateT_instFunctor___redArg(x_431); -x_438 = lean_alloc_closure((void*)(l_Lake_EStateT_instPure___redArg___lam__0), 4, 1); -lean_closure_set(x_438, 0, x_432); -x_439 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_439, 0, x_437); -lean_ctor_set(x_439, 1, x_438); -lean_ctor_set(x_439, 2, x_436); -lean_ctor_set(x_439, 3, x_435); -lean_ctor_set(x_439, 4, x_434); -lean_ctor_set(x_24, 1, x_433); -lean_ctor_set(x_24, 0, x_439); -x_440 = l_ReaderT_instMonad___redArg(x_24); -x_441 = l_ReaderT_instMonad___redArg(x_440); -x_442 = l_ReaderT_instMonad___redArg(x_441); -x_443 = lean_ctor_get(x_442, 0); -lean_inc_ref(x_443); -if (lean_is_exclusive(x_442)) { - lean_ctor_release(x_442, 0); - lean_ctor_release(x_442, 1); - x_444 = x_442; -} else { - lean_dec_ref(x_442); - x_444 = lean_box(0); -} -x_445 = lean_ctor_get(x_443, 0); -lean_inc_ref(x_445); -lean_dec_ref(x_443); -lean_inc_ref(x_445); -x_446 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_446, 0, x_445); -x_447 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_447, 0, x_445); -if (lean_is_scalar(x_444)) { - x_448 = lean_alloc_ctor(0, 2, 0); -} else { - x_448 = x_444; -} -lean_ctor_set(x_448, 0, x_446); -lean_ctor_set(x_448, 1, x_447); -x_449 = l_Lake_EquipT_instFunctor___redArg(x_448); -x_450 = l_Lake_instMonadWorkspaceJobM; -lean_inc_ref(x_5); -x_451 = l_Lake_Package_isArtifactCacheEnabled___redArg(x_449, x_450, x_5); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_452 = lean_apply_7(x_451, x_6, x_7, x_8, x_9, x_10, x_11, lean_box(0)); -if (lean_obj_tag(x_452) == 0) -{ -lean_object* x_453; lean_object* x_454; lean_object* x_455; uint8_t x_456; uint8_t x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_503; -x_453 = lean_ctor_get(x_452, 1); -lean_inc(x_453); -x_454 = lean_ctor_get(x_452, 0); -lean_inc(x_454); -lean_dec_ref(x_452); -x_455 = lean_ctor_get(x_453, 0); -lean_inc_ref(x_455); -x_456 = lean_ctor_get_uint8(x_453, sizeof(void*)*3); -x_457 = lean_ctor_get_uint8(x_453, sizeof(void*)*3 + 1); -x_458 = lean_ctor_get(x_453, 1); -lean_inc_ref(x_458); -x_459 = lean_ctor_get(x_453, 2); -lean_inc(x_459); -if (lean_is_exclusive(x_453)) { - lean_ctor_release(x_453, 0); - lean_ctor_release(x_453, 1); - lean_ctor_release(x_453, 2); - x_460 = x_453; -} else { - lean_dec_ref(x_453); - x_460 = lean_box(0); -} -x_461 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_461); -lean_inc_ref(x_4); -x_503 = l_Lake_Cache_readOutputs_x3f(x_4, x_461, x_2, x_455); -if (lean_obj_tag(x_503) == 0) -{ -lean_object* x_504; lean_object* x_505; lean_object* x_506; -x_504 = lean_ctor_get(x_503, 0); -lean_inc(x_504); -x_505 = lean_ctor_get(x_503, 1); -lean_inc(x_505); -lean_dec_ref(x_503); -if (lean_is_scalar(x_460)) { - x_506 = lean_alloc_ctor(0, 3, 2); -} else { - x_506 = x_460; -} -lean_ctor_set(x_506, 0, x_505); -lean_ctor_set(x_506, 1, x_458); -lean_ctor_set(x_506, 2, x_459); -lean_ctor_set_uint8(x_506, sizeof(void*)*3, x_456); -lean_ctor_set_uint8(x_506, sizeof(void*)*3 + 1, x_457); -if (lean_obj_tag(x_504) == 1) -{ -lean_object* x_507; lean_object* x_508; lean_object* x_509; -x_507 = lean_ctor_get(x_504, 0); -lean_inc(x_507); -if (lean_is_exclusive(x_504)) { - lean_ctor_release(x_504, 0); - x_508 = x_504; -} else { - lean_dec_ref(x_504); - x_508 = lean_box(0); -} -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_509 = lean_apply_8(x_1, x_507, x_6, x_7, x_8, x_9, x_10, x_506, lean_box(0)); -if (lean_obj_tag(x_509) == 0) -{ -lean_object* x_510; -x_510 = lean_ctor_get(x_509, 0); -lean_inc(x_510); -if (lean_obj_tag(x_510) == 0) -{ -lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; uint8_t x_518; uint8_t x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; -lean_dec(x_508); -x_511 = lean_ctor_get(x_509, 1); -lean_inc(x_511); -lean_dec_ref(x_509); -x_512 = lean_ctor_get(x_510, 0); -lean_inc(x_512); -lean_dec_ref(x_510); -x_513 = l_Lake_Hash_hex(x_2); -x_514 = lean_unsigned_to_nat(0u); -x_515 = lean_string_utf8_byte_size(x_513); -lean_inc_ref(x_513); -x_516 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_516, 0, x_513); -lean_ctor_set(x_516, 1, x_514); -lean_ctor_set(x_516, 2, x_515); -x_517 = lean_ctor_get(x_511, 0); -lean_inc_ref(x_517); -x_518 = lean_ctor_get_uint8(x_511, sizeof(void*)*3); -x_519 = lean_ctor_get_uint8(x_511, sizeof(void*)*3 + 1); -x_520 = lean_ctor_get(x_511, 1); -lean_inc_ref(x_520); -x_521 = lean_ctor_get(x_511, 2); -lean_inc(x_521); -if (lean_is_exclusive(x_511)) { - lean_ctor_release(x_511, 0); - lean_ctor_release(x_511, 1); - lean_ctor_release(x_511, 2); - x_522 = x_511; -} else { - lean_dec_ref(x_511); - x_522 = lean_box(0); -} -x_523 = lean_unsigned_to_nat(7u); -x_524 = l_String_Slice_Pos_nextn(x_516, x_514, x_523); -lean_dec_ref(x_516); -x_525 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_526 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_526, 0, x_513); -lean_ctor_set(x_526, 1, x_514); -lean_ctor_set(x_526, 2, x_524); -x_527 = l_String_Slice_toString(x_526); -lean_dec_ref(x_526); -x_528 = lean_string_append(x_525, x_527); -lean_dec_ref(x_527); -x_529 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_530 = lean_string_append(x_528, x_529); -x_531 = lean_string_append(x_530, x_512); -lean_dec(x_512); -x_532 = 2; -x_533 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_533, 0, x_531); -lean_ctor_set_uint8(x_533, sizeof(void*)*1, x_532); -x_534 = lean_array_push(x_517, x_533); -if (lean_is_scalar(x_522)) { - x_535 = lean_alloc_ctor(0, 3, 2); -} else { - x_535 = x_522; -} -lean_ctor_set(x_535, 0, x_534); -lean_ctor_set(x_535, 1, x_520); -lean_ctor_set(x_535, 2, x_521); -lean_ctor_set_uint8(x_535, sizeof(void*)*3, x_518); -lean_ctor_set_uint8(x_535, sizeof(void*)*3 + 1, x_519); -x_462 = x_6; -x_463 = x_7; -x_464 = x_8; -x_465 = x_9; -x_466 = x_10; -x_467 = x_535; -x_468 = lean_box(0); -goto block_502; -} -else -{ -lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_536 = lean_ctor_get(x_509, 1); -lean_inc(x_536); -if (lean_is_exclusive(x_509)) { - lean_ctor_release(x_509, 0); - lean_ctor_release(x_509, 1); - x_537 = x_509; -} else { - lean_dec_ref(x_509); - x_537 = lean_box(0); -} -x_538 = lean_ctor_get(x_510, 0); -lean_inc(x_538); -lean_dec_ref(x_510); -if (lean_is_scalar(x_508)) { - x_539 = lean_alloc_ctor(1, 1, 0); -} else { - x_539 = x_508; -} -lean_ctor_set(x_539, 0, x_538); -if (lean_is_scalar(x_537)) { - x_540 = lean_alloc_ctor(0, 2, 0); -} else { - x_540 = x_537; -} -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_536); -return x_540; -} -} -else -{ -lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; -lean_dec(x_508); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_541 = lean_ctor_get(x_509, 0); -lean_inc(x_541); -x_542 = lean_ctor_get(x_509, 1); -lean_inc(x_542); -if (lean_is_exclusive(x_509)) { - lean_ctor_release(x_509, 0); - lean_ctor_release(x_509, 1); - x_543 = x_509; -} else { - lean_dec_ref(x_509); - x_543 = lean_box(0); -} -if (lean_is_scalar(x_543)) { - x_544 = lean_alloc_ctor(1, 2, 0); -} else { - x_544 = x_543; -} -lean_ctor_set(x_544, 0, x_541); -lean_ctor_set(x_544, 1, x_542); -return x_544; -} -} -else -{ -lean_dec(x_504); -x_462 = x_6; -x_463 = x_7; -x_464 = x_8; -x_465 = x_9; -x_466 = x_10; -x_467 = x_506; -x_468 = lean_box(0); -goto block_502; -} -} -else -{ -lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_545 = lean_ctor_get(x_503, 0); -lean_inc(x_545); -x_546 = lean_ctor_get(x_503, 1); -lean_inc(x_546); -if (lean_is_exclusive(x_503)) { - lean_ctor_release(x_503, 0); - lean_ctor_release(x_503, 1); - x_547 = x_503; -} else { - lean_dec_ref(x_503); - x_547 = lean_box(0); -} -if (lean_is_scalar(x_460)) { - x_548 = lean_alloc_ctor(0, 3, 2); -} else { - x_548 = x_460; -} -lean_ctor_set(x_548, 0, x_546); -lean_ctor_set(x_548, 1, x_458); -lean_ctor_set(x_548, 2, x_459); -lean_ctor_set_uint8(x_548, sizeof(void*)*3, x_456); -lean_ctor_set_uint8(x_548, sizeof(void*)*3 + 1, x_457); -if (lean_is_scalar(x_547)) { - x_549 = lean_alloc_ctor(1, 2, 0); -} else { - x_549 = x_547; -} -lean_ctor_set(x_549, 0, x_545); -lean_ctor_set(x_549, 1, x_548); -return x_549; -} -block_502: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_469; uint64_t x_470; lean_object* x_471; uint8_t x_472; -x_469 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_469); -lean_dec_ref(x_3); -x_470 = lean_ctor_get_uint64(x_469, sizeof(void*)*3); -x_471 = lean_ctor_get(x_469, 1); -lean_inc(x_471); -lean_dec_ref(x_469); -x_472 = lean_uint64_dec_eq(x_470, x_2); -if (x_472 == 0) -{ -lean_dec(x_471); -lean_dec_ref(x_466); -lean_dec(x_465); -lean_dec(x_464); -lean_dec(x_463); -lean_dec_ref(x_462); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_467; -x_14 = lean_box(0); -goto block_17; -} -else -{ -if (lean_obj_tag(x_471) == 1) -{ -lean_object* x_473; lean_object* x_474; -x_473 = lean_ctor_get(x_471, 0); -lean_inc(x_473); -lean_dec_ref(x_471); -lean_inc(x_473); -x_474 = lean_apply_8(x_1, x_473, x_462, x_463, x_464, x_465, x_466, x_467, lean_box(0)); -if (lean_obj_tag(x_474) == 0) -{ -lean_object* x_475; -x_475 = lean_ctor_get(x_474, 0); -lean_inc(x_475); -if (lean_obj_tag(x_475) == 1) -{ -uint8_t x_476; -x_476 = lean_unbox(x_454); -lean_dec(x_454); -if (x_476 == 0) -{ -lean_object* x_477; lean_object* x_478; -lean_dec(x_473); -lean_dec_ref(x_461); -lean_dec_ref(x_4); -x_477 = lean_ctor_get(x_474, 1); -lean_inc(x_477); -lean_dec_ref(x_474); -x_478 = lean_ctor_get(x_475, 0); -lean_inc(x_478); -lean_dec_ref(x_475); -x_18 = x_478; -x_19 = x_477; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; uint8_t x_483; uint8_t x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; -x_479 = lean_ctor_get(x_474, 1); -lean_inc(x_479); -if (lean_is_exclusive(x_474)) { - lean_ctor_release(x_474, 0); - lean_ctor_release(x_474, 1); - x_480 = x_474; -} else { - lean_dec_ref(x_474); - x_480 = lean_box(0); -} -x_481 = lean_ctor_get(x_475, 0); -lean_inc(x_481); -lean_dec_ref(x_475); -x_482 = lean_ctor_get(x_479, 0); -x_483 = lean_ctor_get_uint8(x_479, sizeof(void*)*3); -x_484 = lean_ctor_get_uint8(x_479, sizeof(void*)*3 + 1); -x_485 = lean_ctor_get(x_479, 1); -x_486 = lean_ctor_get(x_479, 2); -x_487 = l_Lake_Cache_writeOutputsCore(x_4, x_461, x_2, x_473); -if (lean_obj_tag(x_487) == 0) -{ -lean_dec_ref(x_487); -lean_dec(x_480); -x_18 = x_481; -x_19 = x_479; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_488; lean_object* x_489; lean_object* x_490; uint8_t x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; -lean_inc(x_486); -lean_inc_ref(x_485); -lean_inc_ref(x_482); -lean_dec(x_481); -if (lean_is_exclusive(x_479)) { - lean_ctor_release(x_479, 0); - lean_ctor_release(x_479, 1); - lean_ctor_release(x_479, 2); - x_488 = x_479; -} else { - lean_dec_ref(x_479); - x_488 = lean_box(0); -} -x_489 = lean_ctor_get(x_487, 0); -lean_inc(x_489); -lean_dec_ref(x_487); -x_490 = lean_io_error_to_string(x_489); -x_491 = 3; -x_492 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_492, 0, x_490); -lean_ctor_set_uint8(x_492, sizeof(void*)*1, x_491); -x_493 = lean_array_get_size(x_482); -x_494 = lean_array_push(x_482, x_492); -if (lean_is_scalar(x_488)) { - x_495 = lean_alloc_ctor(0, 3, 2); -} else { - x_495 = x_488; -} -lean_ctor_set(x_495, 0, x_494); -lean_ctor_set(x_495, 1, x_485); -lean_ctor_set(x_495, 2, x_486); -lean_ctor_set_uint8(x_495, sizeof(void*)*3, x_483); -lean_ctor_set_uint8(x_495, sizeof(void*)*3 + 1, x_484); -if (lean_is_scalar(x_480)) { - x_496 = lean_alloc_ctor(1, 2, 0); -} else { - x_496 = x_480; - lean_ctor_set_tag(x_496, 1); -} -lean_ctor_set(x_496, 0, x_493); -lean_ctor_set(x_496, 1, x_495); -return x_496; -} -} -} -else -{ -lean_object* x_497; -lean_dec(x_475); -lean_dec(x_473); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_4); -x_497 = lean_ctor_get(x_474, 1); -lean_inc(x_497); -lean_dec_ref(x_474); -x_13 = x_497; -x_14 = lean_box(0); -goto block_17; -} -} -else -{ -lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; -lean_dec(x_473); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_4); -x_498 = lean_ctor_get(x_474, 0); -lean_inc(x_498); -x_499 = lean_ctor_get(x_474, 1); -lean_inc(x_499); -if (lean_is_exclusive(x_474)) { - lean_ctor_release(x_474, 0); - lean_ctor_release(x_474, 1); - x_500 = x_474; -} else { - lean_dec_ref(x_474); - x_500 = lean_box(0); -} -if (lean_is_scalar(x_500)) { - x_501 = lean_alloc_ctor(1, 2, 0); -} else { - x_501 = x_500; -} -lean_ctor_set(x_501, 0, x_498); -lean_ctor_set(x_501, 1, x_499); -return x_501; -} -} -else -{ -lean_dec(x_471); -lean_dec_ref(x_466); -lean_dec(x_465); -lean_dec(x_464); -lean_dec(x_463); -lean_dec_ref(x_462); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_467; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_dec_ref(x_466); -lean_dec(x_465); -lean_dec(x_464); -lean_dec(x_463); -lean_dec_ref(x_462); -lean_dec_ref(x_461); -lean_dec(x_454); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_467; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_550 = lean_ctor_get(x_452, 0); -lean_inc(x_550); -x_551 = lean_ctor_get(x_452, 1); -lean_inc(x_551); -if (lean_is_exclusive(x_452)) { - lean_ctor_release(x_452, 0); - lean_ctor_release(x_452, 1); - x_552 = x_452; -} else { - lean_dec_ref(x_452); - x_552 = lean_box(0); -} -if (lean_is_scalar(x_552)) { - x_553 = lean_alloc_ctor(1, 2, 0); -} else { - x_553 = x_552; -} -lean_ctor_set(x_553, 0, x_550); -lean_ctor_set(x_553, 1, x_551); -return x_553; -} -} -} -else -{ -lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; -x_554 = lean_ctor_get(x_24, 0); -x_555 = lean_ctor_get(x_24, 1); -lean_inc(x_555); -lean_inc(x_554); -lean_dec(x_24); -x_556 = lean_ctor_get(x_554, 0); -lean_inc_ref(x_556); -x_557 = lean_ctor_get(x_554, 1); -lean_inc(x_557); -if (lean_is_exclusive(x_554)) { - lean_ctor_release(x_554, 0); - lean_ctor_release(x_554, 1); - lean_ctor_release(x_554, 2); - lean_ctor_release(x_554, 3); - lean_ctor_release(x_554, 4); - x_558 = x_554; -} else { - lean_dec_ref(x_554); - x_558 = lean_box(0); -} -lean_inc(x_555); -lean_inc(x_557); -x_559 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__1), 7, 2); -lean_closure_set(x_559, 0, x_557); -lean_closure_set(x_559, 1, x_555); -lean_inc(x_555); -lean_inc(x_557); -x_560 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__3), 7, 2); -lean_closure_set(x_560, 0, x_557); -lean_closure_set(x_560, 1, x_555); -lean_inc_ref(x_559); -lean_inc(x_557); -x_561 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__5), 7, 2); -lean_closure_set(x_561, 0, x_557); -lean_closure_set(x_561, 1, x_559); -lean_inc(x_557); -lean_inc_ref(x_556); -x_562 = lean_alloc_closure((void*)(l_Lake_EStateT_instMonad___redArg___lam__9), 8, 3); -lean_closure_set(x_562, 0, x_556); -lean_closure_set(x_562, 1, x_557); -lean_closure_set(x_562, 2, x_555); -x_563 = l_Lake_EStateT_instFunctor___redArg(x_556); -x_564 = lean_alloc_closure((void*)(l_Lake_EStateT_instPure___redArg___lam__0), 4, 1); -lean_closure_set(x_564, 0, x_557); -if (lean_is_scalar(x_558)) { - x_565 = lean_alloc_ctor(0, 5, 0); -} else { - x_565 = x_558; -} -lean_ctor_set(x_565, 0, x_563); -lean_ctor_set(x_565, 1, x_564); -lean_ctor_set(x_565, 2, x_562); -lean_ctor_set(x_565, 3, x_561); -lean_ctor_set(x_565, 4, x_560); -x_566 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_566, 0, x_565); -lean_ctor_set(x_566, 1, x_559); -x_567 = l_ReaderT_instMonad___redArg(x_566); -x_568 = l_ReaderT_instMonad___redArg(x_567); -x_569 = l_ReaderT_instMonad___redArg(x_568); -x_570 = lean_ctor_get(x_569, 0); -lean_inc_ref(x_570); -if (lean_is_exclusive(x_569)) { - lean_ctor_release(x_569, 0); - lean_ctor_release(x_569, 1); - x_571 = x_569; -} else { - lean_dec_ref(x_569); - x_571 = lean_box(0); -} -x_572 = lean_ctor_get(x_570, 0); -lean_inc_ref(x_572); -lean_dec_ref(x_570); -lean_inc_ref(x_572); -x_573 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_573, 0, x_572); -x_574 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_574, 0, x_572); -if (lean_is_scalar(x_571)) { - x_575 = lean_alloc_ctor(0, 2, 0); -} else { - x_575 = x_571; -} -lean_ctor_set(x_575, 0, x_573); -lean_ctor_set(x_575, 1, x_574); -x_576 = l_Lake_EquipT_instFunctor___redArg(x_575); -x_577 = l_Lake_instMonadWorkspaceJobM; -lean_inc_ref(x_5); -x_578 = l_Lake_Package_isArtifactCacheEnabled___redArg(x_576, x_577, x_5); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_579 = lean_apply_7(x_578, x_6, x_7, x_8, x_9, x_10, x_11, lean_box(0)); -if (lean_obj_tag(x_579) == 0) -{ -lean_object* x_580; lean_object* x_581; lean_object* x_582; uint8_t x_583; uint8_t x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_630; -x_580 = lean_ctor_get(x_579, 1); -lean_inc(x_580); -x_581 = lean_ctor_get(x_579, 0); -lean_inc(x_581); -lean_dec_ref(x_579); -x_582 = lean_ctor_get(x_580, 0); -lean_inc_ref(x_582); -x_583 = lean_ctor_get_uint8(x_580, sizeof(void*)*3); -x_584 = lean_ctor_get_uint8(x_580, sizeof(void*)*3 + 1); -x_585 = lean_ctor_get(x_580, 1); -lean_inc_ref(x_585); -x_586 = lean_ctor_get(x_580, 2); -lean_inc(x_586); -if (lean_is_exclusive(x_580)) { - lean_ctor_release(x_580, 0); - lean_ctor_release(x_580, 1); - lean_ctor_release(x_580, 2); - x_587 = x_580; -} else { - lean_dec_ref(x_580); - x_587 = lean_box(0); -} -x_588 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_588); -lean_inc_ref(x_4); -x_630 = l_Lake_Cache_readOutputs_x3f(x_4, x_588, x_2, x_582); -if (lean_obj_tag(x_630) == 0) -{ -lean_object* x_631; lean_object* x_632; lean_object* x_633; -x_631 = lean_ctor_get(x_630, 0); -lean_inc(x_631); -x_632 = lean_ctor_get(x_630, 1); -lean_inc(x_632); -lean_dec_ref(x_630); -if (lean_is_scalar(x_587)) { - x_633 = lean_alloc_ctor(0, 3, 2); -} else { - x_633 = x_587; -} -lean_ctor_set(x_633, 0, x_632); -lean_ctor_set(x_633, 1, x_585); -lean_ctor_set(x_633, 2, x_586); -lean_ctor_set_uint8(x_633, sizeof(void*)*3, x_583); -lean_ctor_set_uint8(x_633, sizeof(void*)*3 + 1, x_584); -if (lean_obj_tag(x_631) == 1) -{ -lean_object* x_634; lean_object* x_635; lean_object* x_636; -x_634 = lean_ctor_get(x_631, 0); -lean_inc(x_634); -if (lean_is_exclusive(x_631)) { - lean_ctor_release(x_631, 0); - x_635 = x_631; -} else { - lean_dec_ref(x_631); - x_635 = lean_box(0); -} -lean_inc_ref(x_1); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_636 = lean_apply_8(x_1, x_634, x_6, x_7, x_8, x_9, x_10, x_633, lean_box(0)); -if (lean_obj_tag(x_636) == 0) -{ -lean_object* x_637; -x_637 = lean_ctor_get(x_636, 0); -lean_inc(x_637); -if (lean_obj_tag(x_637) == 0) -{ -lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; uint8_t x_645; uint8_t x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; uint8_t x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; -lean_dec(x_635); -x_638 = lean_ctor_get(x_636, 1); -lean_inc(x_638); -lean_dec_ref(x_636); -x_639 = lean_ctor_get(x_637, 0); -lean_inc(x_639); -lean_dec_ref(x_637); -x_640 = l_Lake_Hash_hex(x_2); -x_641 = lean_unsigned_to_nat(0u); -x_642 = lean_string_utf8_byte_size(x_640); -lean_inc_ref(x_640); -x_643 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_643, 0, x_640); -lean_ctor_set(x_643, 1, x_641); -lean_ctor_set(x_643, 2, x_642); -x_644 = lean_ctor_get(x_638, 0); -lean_inc_ref(x_644); -x_645 = lean_ctor_get_uint8(x_638, sizeof(void*)*3); -x_646 = lean_ctor_get_uint8(x_638, sizeof(void*)*3 + 1); -x_647 = lean_ctor_get(x_638, 1); -lean_inc_ref(x_647); -x_648 = lean_ctor_get(x_638, 2); -lean_inc(x_648); -if (lean_is_exclusive(x_638)) { - lean_ctor_release(x_638, 0); - lean_ctor_release(x_638, 1); - lean_ctor_release(x_638, 2); - x_649 = x_638; -} else { - lean_dec_ref(x_638); - x_649 = lean_box(0); -} -x_650 = lean_unsigned_to_nat(7u); -x_651 = l_String_Slice_Pos_nextn(x_643, x_641, x_650); -lean_dec_ref(x_643); -x_652 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_653 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_653, 0, x_640); -lean_ctor_set(x_653, 1, x_641); -lean_ctor_set(x_653, 2, x_651); -x_654 = l_String_Slice_toString(x_653); -lean_dec_ref(x_653); -x_655 = lean_string_append(x_652, x_654); -lean_dec_ref(x_654); -x_656 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_657 = lean_string_append(x_655, x_656); -x_658 = lean_string_append(x_657, x_639); -lean_dec(x_639); -x_659 = 2; -x_660 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_660, 0, x_658); -lean_ctor_set_uint8(x_660, sizeof(void*)*1, x_659); -x_661 = lean_array_push(x_644, x_660); -if (lean_is_scalar(x_649)) { - x_662 = lean_alloc_ctor(0, 3, 2); -} else { - x_662 = x_649; -} -lean_ctor_set(x_662, 0, x_661); -lean_ctor_set(x_662, 1, x_647); -lean_ctor_set(x_662, 2, x_648); -lean_ctor_set_uint8(x_662, sizeof(void*)*3, x_645); -lean_ctor_set_uint8(x_662, sizeof(void*)*3 + 1, x_646); -x_589 = x_6; -x_590 = x_7; -x_591 = x_8; -x_592 = x_9; -x_593 = x_10; -x_594 = x_662; -x_595 = lean_box(0); -goto block_629; -} -else -{ -lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_663 = lean_ctor_get(x_636, 1); -lean_inc(x_663); -if (lean_is_exclusive(x_636)) { - lean_ctor_release(x_636, 0); - lean_ctor_release(x_636, 1); - x_664 = x_636; -} else { - lean_dec_ref(x_636); - x_664 = lean_box(0); -} -x_665 = lean_ctor_get(x_637, 0); -lean_inc(x_665); -lean_dec_ref(x_637); -if (lean_is_scalar(x_635)) { - x_666 = lean_alloc_ctor(1, 1, 0); -} else { - x_666 = x_635; -} -lean_ctor_set(x_666, 0, x_665); -if (lean_is_scalar(x_664)) { - x_667 = lean_alloc_ctor(0, 2, 0); -} else { - x_667 = x_664; -} -lean_ctor_set(x_667, 0, x_666); -lean_ctor_set(x_667, 1, x_663); -return x_667; -} -} -else -{ -lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; -lean_dec(x_635); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_668 = lean_ctor_get(x_636, 0); -lean_inc(x_668); -x_669 = lean_ctor_get(x_636, 1); -lean_inc(x_669); -if (lean_is_exclusive(x_636)) { - lean_ctor_release(x_636, 0); - lean_ctor_release(x_636, 1); - x_670 = x_636; -} else { - lean_dec_ref(x_636); - x_670 = lean_box(0); -} -if (lean_is_scalar(x_670)) { - x_671 = lean_alloc_ctor(1, 2, 0); -} else { - x_671 = x_670; -} -lean_ctor_set(x_671, 0, x_668); -lean_ctor_set(x_671, 1, x_669); -return x_671; -} -} -else -{ -lean_dec(x_631); -x_589 = x_6; -x_590 = x_7; -x_591 = x_8; -x_592 = x_9; -x_593 = x_10; -x_594 = x_633; -x_595 = lean_box(0); -goto block_629; -} -} -else -{ -lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_672 = lean_ctor_get(x_630, 0); -lean_inc(x_672); -x_673 = lean_ctor_get(x_630, 1); -lean_inc(x_673); -if (lean_is_exclusive(x_630)) { - lean_ctor_release(x_630, 0); - lean_ctor_release(x_630, 1); - x_674 = x_630; -} else { - lean_dec_ref(x_630); - x_674 = lean_box(0); -} -if (lean_is_scalar(x_587)) { - x_675 = lean_alloc_ctor(0, 3, 2); -} else { - x_675 = x_587; -} -lean_ctor_set(x_675, 0, x_673); -lean_ctor_set(x_675, 1, x_585); -lean_ctor_set(x_675, 2, x_586); -lean_ctor_set_uint8(x_675, sizeof(void*)*3, x_583); -lean_ctor_set_uint8(x_675, sizeof(void*)*3 + 1, x_584); -if (lean_is_scalar(x_674)) { - x_676 = lean_alloc_ctor(1, 2, 0); -} else { - x_676 = x_674; -} -lean_ctor_set(x_676, 0, x_672); -lean_ctor_set(x_676, 1, x_675); -return x_676; -} -block_629: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_596; uint64_t x_597; lean_object* x_598; uint8_t x_599; -x_596 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_596); -lean_dec_ref(x_3); -x_597 = lean_ctor_get_uint64(x_596, sizeof(void*)*3); -x_598 = lean_ctor_get(x_596, 1); -lean_inc(x_598); -lean_dec_ref(x_596); -x_599 = lean_uint64_dec_eq(x_597, x_2); -if (x_599 == 0) -{ -lean_dec(x_598); -lean_dec_ref(x_593); -lean_dec(x_592); -lean_dec(x_591); -lean_dec(x_590); -lean_dec_ref(x_589); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_594; -x_14 = lean_box(0); -goto block_17; -} -else -{ -if (lean_obj_tag(x_598) == 1) -{ -lean_object* x_600; lean_object* x_601; -x_600 = lean_ctor_get(x_598, 0); -lean_inc(x_600); -lean_dec_ref(x_598); -lean_inc(x_600); -x_601 = lean_apply_8(x_1, x_600, x_589, x_590, x_591, x_592, x_593, x_594, lean_box(0)); -if (lean_obj_tag(x_601) == 0) -{ -lean_object* x_602; -x_602 = lean_ctor_get(x_601, 0); -lean_inc(x_602); -if (lean_obj_tag(x_602) == 1) -{ -uint8_t x_603; -x_603 = lean_unbox(x_581); -lean_dec(x_581); -if (x_603 == 0) -{ -lean_object* x_604; lean_object* x_605; -lean_dec(x_600); -lean_dec_ref(x_588); -lean_dec_ref(x_4); -x_604 = lean_ctor_get(x_601, 1); -lean_inc(x_604); -lean_dec_ref(x_601); -x_605 = lean_ctor_get(x_602, 0); -lean_inc(x_605); -lean_dec_ref(x_602); -x_18 = x_605; -x_19 = x_604; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; uint8_t x_610; uint8_t x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; -x_606 = lean_ctor_get(x_601, 1); -lean_inc(x_606); -if (lean_is_exclusive(x_601)) { - lean_ctor_release(x_601, 0); - lean_ctor_release(x_601, 1); - x_607 = x_601; -} else { - lean_dec_ref(x_601); - x_607 = lean_box(0); -} -x_608 = lean_ctor_get(x_602, 0); -lean_inc(x_608); -lean_dec_ref(x_602); -x_609 = lean_ctor_get(x_606, 0); -x_610 = lean_ctor_get_uint8(x_606, sizeof(void*)*3); -x_611 = lean_ctor_get_uint8(x_606, sizeof(void*)*3 + 1); -x_612 = lean_ctor_get(x_606, 1); -x_613 = lean_ctor_get(x_606, 2); -x_614 = l_Lake_Cache_writeOutputsCore(x_4, x_588, x_2, x_600); -if (lean_obj_tag(x_614) == 0) -{ -lean_dec_ref(x_614); -lean_dec(x_607); -x_18 = x_608; -x_19 = x_606; -x_20 = lean_box(0); -goto block_23; -} -else -{ -lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; -lean_inc(x_613); -lean_inc_ref(x_612); -lean_inc_ref(x_609); -lean_dec(x_608); -if (lean_is_exclusive(x_606)) { - lean_ctor_release(x_606, 0); - lean_ctor_release(x_606, 1); - lean_ctor_release(x_606, 2); - x_615 = x_606; -} else { - lean_dec_ref(x_606); - x_615 = lean_box(0); -} -x_616 = lean_ctor_get(x_614, 0); -lean_inc(x_616); -lean_dec_ref(x_614); -x_617 = lean_io_error_to_string(x_616); -x_618 = 3; -x_619 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_619, 0, x_617); -lean_ctor_set_uint8(x_619, sizeof(void*)*1, x_618); -x_620 = lean_array_get_size(x_609); -x_621 = lean_array_push(x_609, x_619); -if (lean_is_scalar(x_615)) { - x_622 = lean_alloc_ctor(0, 3, 2); -} else { - x_622 = x_615; -} -lean_ctor_set(x_622, 0, x_621); -lean_ctor_set(x_622, 1, x_612); -lean_ctor_set(x_622, 2, x_613); -lean_ctor_set_uint8(x_622, sizeof(void*)*3, x_610); -lean_ctor_set_uint8(x_622, sizeof(void*)*3 + 1, x_611); -if (lean_is_scalar(x_607)) { - x_623 = lean_alloc_ctor(1, 2, 0); -} else { - x_623 = x_607; - lean_ctor_set_tag(x_623, 1); -} -lean_ctor_set(x_623, 0, x_620); -lean_ctor_set(x_623, 1, x_622); -return x_623; -} -} -} -else -{ -lean_object* x_624; -lean_dec(x_602); -lean_dec(x_600); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_4); -x_624 = lean_ctor_get(x_601, 1); -lean_inc(x_624); -lean_dec_ref(x_601); -x_13 = x_624; -x_14 = lean_box(0); -goto block_17; -} -} -else -{ -lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; -lean_dec(x_600); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_4); -x_625 = lean_ctor_get(x_601, 0); -lean_inc(x_625); -x_626 = lean_ctor_get(x_601, 1); -lean_inc(x_626); -if (lean_is_exclusive(x_601)) { - lean_ctor_release(x_601, 0); - lean_ctor_release(x_601, 1); - x_627 = x_601; -} else { - lean_dec_ref(x_601); - x_627 = lean_box(0); -} -if (lean_is_scalar(x_627)) { - x_628 = lean_alloc_ctor(1, 2, 0); -} else { - x_628 = x_627; -} -lean_ctor_set(x_628, 0, x_625); -lean_ctor_set(x_628, 1, x_626); -return x_628; -} -} -else -{ -lean_dec(x_598); -lean_dec_ref(x_593); -lean_dec(x_592); -lean_dec(x_591); -lean_dec(x_590); -lean_dec_ref(x_589); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_13 = x_594; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_dec_ref(x_593); -lean_dec(x_592); -lean_dec(x_591); -lean_dec(x_590); -lean_dec_ref(x_589); -lean_dec_ref(x_588); -lean_dec(x_581); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_13 = x_594; -x_14 = lean_box(0); -goto block_17; -} -} -} -else -{ -lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -x_677 = lean_ctor_get(x_579, 0); -lean_inc(x_677); -x_678 = lean_ctor_get(x_579, 1); -lean_inc(x_678); -if (lean_is_exclusive(x_579)) { - lean_ctor_release(x_579, 0); - lean_ctor_release(x_579, 1); - x_679 = x_579; -} else { - lean_dec_ref(x_579); - x_679 = lean_box(0); -} -if (lean_is_scalar(x_679)) { - x_680 = lean_alloc_ctor(1, 2, 0); -} else { - x_680 = x_679; -} -lean_ctor_set(x_680, 0, x_677); -lean_ctor_set(x_680, 1, x_678); -return x_680; -} +lean_object* x_266; uint8_t x_267; +x_266 = lean_ctor_get(x_254, 0); +x_267 = lean_unbox(x_266); +x_92 = x_267; +x_93 = x_11; +x_94 = lean_box(0); +goto block_252; } block_17: { @@ -14649,6 +11534,1008 @@ lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_19); return x_22; } +block_91: +{ +if (lean_obj_tag(x_3) == 2) +{ +lean_object* x_33; uint64_t x_34; lean_object* x_35; uint8_t x_36; +x_33 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_33); +lean_dec_ref(x_3); +x_34 = lean_ctor_get_uint64(x_33, sizeof(void*)*3); +x_35 = lean_ctor_get(x_33, 1); +lean_inc(x_35); +lean_dec_ref(x_33); +x_36 = lean_uint64_dec_eq(x_34, x_2); +if (x_36 == 0) +{ +lean_dec(x_35); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_13 = x_31; +x_14 = lean_box(0); +goto block_17; +} +else +{ +if (lean_obj_tag(x_35) == 1) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_35, 0); +lean_inc(x_37); +lean_dec_ref(x_35); +lean_inc(x_37); +x_38 = lean_apply_8(x_1, x_37, x_26, x_27, x_28, x_29, x_30, x_31, lean_box(0)); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 1) +{ +if (x_25 == 0) +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_37); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec_ref(x_38); +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec_ref(x_39); +x_18 = x_41; +x_19 = x_40; +x_20 = lean_box(0); +goto block_23; +} +else +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_38); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_43 = lean_ctor_get(x_38, 1); +x_44 = lean_ctor_get(x_38, 0); +lean_dec(x_44); +x_45 = lean_ctor_get(x_39, 0); +lean_inc(x_45); +lean_dec_ref(x_39); +x_46 = lean_ctor_get(x_43, 0); +x_47 = lean_ctor_get_uint8(x_43, sizeof(void*)*3); +x_48 = lean_ctor_get_uint8(x_43, sizeof(void*)*3 + 1); +x_49 = lean_ctor_get(x_43, 1); +x_50 = lean_ctor_get(x_43, 2); +x_51 = l_Lake_Cache_writeOutputsCore(x_4, x_24, x_2, x_37); +if (lean_obj_tag(x_51) == 0) +{ +lean_dec_ref(x_51); +lean_free_object(x_38); +x_18 = x_45; +x_19 = x_43; +x_20 = lean_box(0); +goto block_23; +} +else +{ +uint8_t x_52; +lean_inc(x_50); +lean_inc_ref(x_49); +lean_inc_ref(x_46); +lean_dec(x_45); +x_52 = !lean_is_exclusive(x_43); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_53 = lean_ctor_get(x_43, 2); +lean_dec(x_53); +x_54 = lean_ctor_get(x_43, 1); +lean_dec(x_54); +x_55 = lean_ctor_get(x_43, 0); +lean_dec(x_55); +x_56 = lean_ctor_get(x_51, 0); +lean_inc(x_56); +lean_dec_ref(x_51); +x_57 = lean_io_error_to_string(x_56); +x_58 = 3; +x_59 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set_uint8(x_59, sizeof(void*)*1, x_58); +x_60 = lean_array_get_size(x_46); +x_61 = lean_array_push(x_46, x_59); +lean_ctor_set(x_43, 0, x_61); +lean_ctor_set_tag(x_38, 1); +lean_ctor_set(x_38, 0, x_60); +return x_38; +} +else +{ +lean_object* x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_43); +x_62 = lean_ctor_get(x_51, 0); +lean_inc(x_62); +lean_dec_ref(x_51); +x_63 = lean_io_error_to_string(x_62); +x_64 = 3; +x_65 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set_uint8(x_65, sizeof(void*)*1, x_64); +x_66 = lean_array_get_size(x_46); +x_67 = lean_array_push(x_46, x_65); +x_68 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_49); +lean_ctor_set(x_68, 2, x_50); +lean_ctor_set_uint8(x_68, sizeof(void*)*3, x_47); +lean_ctor_set_uint8(x_68, sizeof(void*)*3 + 1, x_48); +lean_ctor_set_tag(x_38, 1); +lean_ctor_set(x_38, 1, x_68); +lean_ctor_set(x_38, 0, x_66); +return x_38; +} +} +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_69 = lean_ctor_get(x_38, 1); +lean_inc(x_69); +lean_dec(x_38); +x_70 = lean_ctor_get(x_39, 0); +lean_inc(x_70); +lean_dec_ref(x_39); +x_71 = lean_ctor_get(x_69, 0); +x_72 = lean_ctor_get_uint8(x_69, sizeof(void*)*3); +x_73 = lean_ctor_get_uint8(x_69, sizeof(void*)*3 + 1); +x_74 = lean_ctor_get(x_69, 1); +x_75 = lean_ctor_get(x_69, 2); +x_76 = l_Lake_Cache_writeOutputsCore(x_4, x_24, x_2, x_37); +if (lean_obj_tag(x_76) == 0) +{ +lean_dec_ref(x_76); +x_18 = x_70; +x_19 = x_69; +x_20 = lean_box(0); +goto block_23; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_71); +lean_dec(x_70); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + lean_ctor_release(x_69, 1); + lean_ctor_release(x_69, 2); + x_77 = x_69; +} else { + lean_dec_ref(x_69); + x_77 = lean_box(0); +} +x_78 = lean_ctor_get(x_76, 0); +lean_inc(x_78); +lean_dec_ref(x_76); +x_79 = lean_io_error_to_string(x_78); +x_80 = 3; +x_81 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set_uint8(x_81, sizeof(void*)*1, x_80); +x_82 = lean_array_get_size(x_71); +x_83 = lean_array_push(x_71, x_81); +if (lean_is_scalar(x_77)) { + x_84 = lean_alloc_ctor(0, 3, 2); +} else { + x_84 = x_77; +} +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_74); +lean_ctor_set(x_84, 2, x_75); +lean_ctor_set_uint8(x_84, sizeof(void*)*3, x_72); +lean_ctor_set_uint8(x_84, sizeof(void*)*3 + 1, x_73); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +} +else +{ +lean_object* x_86; +lean_dec(x_39); +lean_dec(x_37); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +x_86 = lean_ctor_get(x_38, 1); +lean_inc(x_86); +lean_dec_ref(x_38); +x_13 = x_86; +x_14 = lean_box(0); +goto block_17; +} +} +else +{ +uint8_t x_87; +lean_dec(x_37); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +x_87 = !lean_is_exclusive(x_38); +if (x_87 == 0) +{ +return x_38; +} +else +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_38, 0); +x_89 = lean_ctor_get(x_38, 1); +lean_inc(x_89); +lean_inc(x_88); +lean_dec(x_38); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +return x_90; +} +} +} +else +{ +lean_dec(x_35); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_13 = x_31; +x_14 = lean_box(0); +goto block_17; +} +} +} +else +{ +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_13 = x_31; +x_14 = lean_box(0); +goto block_17; +} +} +block_252: +{ +uint8_t x_95; +x_95 = !lean_is_exclusive(x_93); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_93, 0); +x_97 = l_Lake_Package_cacheScope(x_5); +lean_inc_ref(x_97); +lean_inc_ref(x_4); +x_98 = l_Lake_Cache_readOutputs_x3f(x_4, x_97, x_2, x_96); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec_ref(x_98); +lean_ctor_set(x_93, 0, x_100); +if (lean_obj_tag(x_99) == 1) +{ +uint8_t x_101; +x_101 = !lean_is_exclusive(x_99); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +x_102 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_1); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_103 = lean_apply_8(x_1, x_102, x_6, x_7, x_8, x_9, x_10, x_93, lean_box(0)); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +if (lean_obj_tag(x_104) == 0) +{ +lean_object* x_105; lean_object* x_106; uint8_t x_107; +lean_free_object(x_99); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec_ref(x_103); +x_106 = lean_ctor_get(x_104, 0); +lean_inc(x_106); +lean_dec_ref(x_104); +x_107 = !lean_is_exclusive(x_105); +if (x_107 == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; +x_108 = lean_ctor_get(x_105, 0); +x_109 = l_Lake_Hash_hex(x_2); +x_110 = lean_string_utf8_byte_size(x_109); +x_111 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_109); +x_112 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_112, 0, x_109); +lean_ctor_set(x_112, 1, x_111); +lean_ctor_set(x_112, 2, x_110); +x_113 = lean_unsigned_to_nat(7u); +x_114 = l_String_Slice_Pos_nextn(x_112, x_111, x_113); +lean_dec_ref(x_112); +x_115 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); +x_116 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_116, 0, x_109); +lean_ctor_set(x_116, 1, x_111); +lean_ctor_set(x_116, 2, x_114); +x_117 = l_String_Slice_toString(x_116); +lean_dec_ref(x_116); +x_118 = lean_string_append(x_115, x_117); +lean_dec_ref(x_117); +x_119 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); +x_120 = lean_string_append(x_118, x_119); +x_121 = lean_string_append(x_120, x_106); +lean_dec(x_106); +x_122 = 2; +x_123 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set_uint8(x_123, sizeof(void*)*1, x_122); +x_124 = lean_array_push(x_108, x_123); +lean_ctor_set(x_105, 0, x_124); +x_24 = x_97; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_105; +x_32 = lean_box(0); +goto block_91; +} +else +{ +lean_object* x_125; uint8_t x_126; uint8_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_125 = lean_ctor_get(x_105, 0); +x_126 = lean_ctor_get_uint8(x_105, sizeof(void*)*3); +x_127 = lean_ctor_get_uint8(x_105, sizeof(void*)*3 + 1); +x_128 = lean_ctor_get(x_105, 1); +x_129 = lean_ctor_get(x_105, 2); +lean_inc(x_129); +lean_inc(x_128); +lean_inc(x_125); +lean_dec(x_105); +x_130 = l_Lake_Hash_hex(x_2); +x_131 = lean_string_utf8_byte_size(x_130); +x_132 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_130); +x_133 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_132); +lean_ctor_set(x_133, 2, x_131); +x_134 = lean_unsigned_to_nat(7u); +x_135 = l_String_Slice_Pos_nextn(x_133, x_132, x_134); +lean_dec_ref(x_133); +x_136 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); +x_137 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_137, 0, x_130); +lean_ctor_set(x_137, 1, x_132); +lean_ctor_set(x_137, 2, x_135); +x_138 = l_String_Slice_toString(x_137); +lean_dec_ref(x_137); +x_139 = lean_string_append(x_136, x_138); +lean_dec_ref(x_138); +x_140 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); +x_141 = lean_string_append(x_139, x_140); +x_142 = lean_string_append(x_141, x_106); +lean_dec(x_106); +x_143 = 2; +x_144 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set_uint8(x_144, sizeof(void*)*1, x_143); +x_145 = lean_array_push(x_125, x_144); +x_146 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_128); +lean_ctor_set(x_146, 2, x_129); +lean_ctor_set_uint8(x_146, sizeof(void*)*3, x_126); +lean_ctor_set_uint8(x_146, sizeof(void*)*3 + 1, x_127); +x_24 = x_97; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_146; +x_32 = lean_box(0); +goto block_91; +} +} +else +{ +uint8_t x_147; +lean_dec_ref(x_97); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_147 = !lean_is_exclusive(x_103); +if (x_147 == 0) +{ +lean_object* x_148; lean_object* x_149; +x_148 = lean_ctor_get(x_103, 0); +lean_dec(x_148); +x_149 = lean_ctor_get(x_104, 0); +lean_inc(x_149); +lean_dec_ref(x_104); +lean_ctor_set(x_99, 0, x_149); +lean_ctor_set(x_103, 0, x_99); +return x_103; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_150 = lean_ctor_get(x_103, 1); +lean_inc(x_150); +lean_dec(x_103); +x_151 = lean_ctor_get(x_104, 0); +lean_inc(x_151); +lean_dec_ref(x_104); +lean_ctor_set(x_99, 0, x_151); +x_152 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_152, 0, x_99); +lean_ctor_set(x_152, 1, x_150); +return x_152; +} +} +} +else +{ +uint8_t x_153; +lean_free_object(x_99); +lean_dec_ref(x_97); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_153 = !lean_is_exclusive(x_103); +if (x_153 == 0) +{ +return x_103; +} +else +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_154 = lean_ctor_get(x_103, 0); +x_155 = lean_ctor_get(x_103, 1); +lean_inc(x_155); +lean_inc(x_154); +lean_dec(x_103); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +return x_156; +} +} +} +else +{ +lean_object* x_157; lean_object* x_158; +x_157 = lean_ctor_get(x_99, 0); +lean_inc(x_157); +lean_dec(x_99); +lean_inc_ref(x_1); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_158 = lean_apply_8(x_1, x_157, x_6, x_7, x_8, x_9, x_10, x_93, lean_box(0)); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +if (lean_obj_tag(x_159) == 0) +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; uint8_t x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +x_160 = lean_ctor_get(x_158, 1); +lean_inc(x_160); +lean_dec_ref(x_158); +x_161 = lean_ctor_get(x_159, 0); +lean_inc(x_161); +lean_dec_ref(x_159); +x_162 = lean_ctor_get(x_160, 0); +lean_inc_ref(x_162); +x_163 = lean_ctor_get_uint8(x_160, sizeof(void*)*3); +x_164 = lean_ctor_get_uint8(x_160, sizeof(void*)*3 + 1); +x_165 = lean_ctor_get(x_160, 1); +lean_inc_ref(x_165); +x_166 = lean_ctor_get(x_160, 2); +lean_inc(x_166); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + lean_ctor_release(x_160, 1); + lean_ctor_release(x_160, 2); + x_167 = x_160; +} else { + lean_dec_ref(x_160); + x_167 = lean_box(0); +} +x_168 = l_Lake_Hash_hex(x_2); +x_169 = lean_string_utf8_byte_size(x_168); +x_170 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_168); +x_171 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_171, 0, x_168); +lean_ctor_set(x_171, 1, x_170); +lean_ctor_set(x_171, 2, x_169); +x_172 = lean_unsigned_to_nat(7u); +x_173 = l_String_Slice_Pos_nextn(x_171, x_170, x_172); +lean_dec_ref(x_171); +x_174 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); +x_175 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_175, 0, x_168); +lean_ctor_set(x_175, 1, x_170); +lean_ctor_set(x_175, 2, x_173); +x_176 = l_String_Slice_toString(x_175); +lean_dec_ref(x_175); +x_177 = lean_string_append(x_174, x_176); +lean_dec_ref(x_176); +x_178 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); +x_179 = lean_string_append(x_177, x_178); +x_180 = lean_string_append(x_179, x_161); +lean_dec(x_161); +x_181 = 2; +x_182 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_182, 0, x_180); +lean_ctor_set_uint8(x_182, sizeof(void*)*1, x_181); +x_183 = lean_array_push(x_162, x_182); +if (lean_is_scalar(x_167)) { + x_184 = lean_alloc_ctor(0, 3, 2); +} else { + x_184 = x_167; +} +lean_ctor_set(x_184, 0, x_183); +lean_ctor_set(x_184, 1, x_165); +lean_ctor_set(x_184, 2, x_166); +lean_ctor_set_uint8(x_184, sizeof(void*)*3, x_163); +lean_ctor_set_uint8(x_184, sizeof(void*)*3 + 1, x_164); +x_24 = x_97; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_184; +x_32 = lean_box(0); +goto block_91; +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; +lean_dec_ref(x_97); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_185 = lean_ctor_get(x_158, 1); +lean_inc(x_185); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + lean_ctor_release(x_158, 1); + x_186 = x_158; +} else { + lean_dec_ref(x_158); + x_186 = lean_box(0); +} +x_187 = lean_ctor_get(x_159, 0); +lean_inc(x_187); +lean_dec_ref(x_159); +x_188 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_188, 0, x_187); +if (lean_is_scalar(x_186)) { + x_189 = lean_alloc_ctor(0, 2, 0); +} else { + x_189 = x_186; +} +lean_ctor_set(x_189, 0, x_188); +lean_ctor_set(x_189, 1, x_185); +return x_189; +} +} +else +{ +lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec_ref(x_97); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_190 = lean_ctor_get(x_158, 0); +lean_inc(x_190); +x_191 = lean_ctor_get(x_158, 1); +lean_inc(x_191); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + lean_ctor_release(x_158, 1); + x_192 = x_158; +} else { + lean_dec_ref(x_158); + x_192 = lean_box(0); +} +if (lean_is_scalar(x_192)) { + x_193 = lean_alloc_ctor(1, 2, 0); +} else { + x_193 = x_192; +} +lean_ctor_set(x_193, 0, x_190); +lean_ctor_set(x_193, 1, x_191); +return x_193; +} +} +} +else +{ +lean_dec(x_99); +x_24 = x_97; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_93; +x_32 = lean_box(0); +goto block_91; +} +} +else +{ +uint8_t x_194; +lean_dec_ref(x_97); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_194 = !lean_is_exclusive(x_98); +if (x_194 == 0) +{ +lean_object* x_195; +x_195 = lean_ctor_get(x_98, 1); +lean_ctor_set(x_93, 0, x_195); +lean_ctor_set(x_98, 1, x_93); +return x_98; +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; +x_196 = lean_ctor_get(x_98, 0); +x_197 = lean_ctor_get(x_98, 1); +lean_inc(x_197); +lean_inc(x_196); +lean_dec(x_98); +lean_ctor_set(x_93, 0, x_197); +x_198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_198, 0, x_196); +lean_ctor_set(x_198, 1, x_93); +return x_198; +} +} +} +else +{ +lean_object* x_199; uint8_t x_200; uint8_t x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_199 = lean_ctor_get(x_93, 0); +x_200 = lean_ctor_get_uint8(x_93, sizeof(void*)*3); +x_201 = lean_ctor_get_uint8(x_93, sizeof(void*)*3 + 1); +x_202 = lean_ctor_get(x_93, 1); +x_203 = lean_ctor_get(x_93, 2); +lean_inc(x_203); +lean_inc(x_202); +lean_inc(x_199); +lean_dec(x_93); +x_204 = l_Lake_Package_cacheScope(x_5); +lean_inc_ref(x_204); +lean_inc_ref(x_4); +x_205 = l_Lake_Cache_readOutputs_x3f(x_4, x_204, x_2, x_199); +if (lean_obj_tag(x_205) == 0) +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_205, 0); +lean_inc(x_206); +x_207 = lean_ctor_get(x_205, 1); +lean_inc(x_207); +lean_dec_ref(x_205); +x_208 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_202); +lean_ctor_set(x_208, 2, x_203); +lean_ctor_set_uint8(x_208, sizeof(void*)*3, x_200); +lean_ctor_set_uint8(x_208, sizeof(void*)*3 + 1, x_201); +if (lean_obj_tag(x_206) == 1) +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; +x_209 = lean_ctor_get(x_206, 0); +lean_inc(x_209); +if (lean_is_exclusive(x_206)) { + lean_ctor_release(x_206, 0); + x_210 = x_206; +} else { + lean_dec_ref(x_206); + x_210 = lean_box(0); +} +lean_inc_ref(x_1); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_211 = lean_apply_8(x_1, x_209, x_6, x_7, x_8, x_9, x_10, x_208, lean_box(0)); +if (lean_obj_tag(x_211) == 0) +{ +lean_object* x_212; +x_212 = lean_ctor_get(x_211, 0); +lean_inc(x_212); +if (lean_obj_tag(x_212) == 0) +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; +lean_dec(x_210); +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +lean_dec_ref(x_211); +x_214 = lean_ctor_get(x_212, 0); +lean_inc(x_214); +lean_dec_ref(x_212); +x_215 = lean_ctor_get(x_213, 0); +lean_inc_ref(x_215); +x_216 = lean_ctor_get_uint8(x_213, sizeof(void*)*3); +x_217 = lean_ctor_get_uint8(x_213, sizeof(void*)*3 + 1); +x_218 = lean_ctor_get(x_213, 1); +lean_inc_ref(x_218); +x_219 = lean_ctor_get(x_213, 2); +lean_inc(x_219); +if (lean_is_exclusive(x_213)) { + lean_ctor_release(x_213, 0); + lean_ctor_release(x_213, 1); + lean_ctor_release(x_213, 2); + x_220 = x_213; +} else { + lean_dec_ref(x_213); + x_220 = lean_box(0); +} +x_221 = l_Lake_Hash_hex(x_2); +x_222 = lean_string_utf8_byte_size(x_221); +x_223 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_221); +x_224 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_224, 0, x_221); +lean_ctor_set(x_224, 1, x_223); +lean_ctor_set(x_224, 2, x_222); +x_225 = lean_unsigned_to_nat(7u); +x_226 = l_String_Slice_Pos_nextn(x_224, x_223, x_225); +lean_dec_ref(x_224); +x_227 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); +x_228 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_228, 0, x_221); +lean_ctor_set(x_228, 1, x_223); +lean_ctor_set(x_228, 2, x_226); +x_229 = l_String_Slice_toString(x_228); +lean_dec_ref(x_228); +x_230 = lean_string_append(x_227, x_229); +lean_dec_ref(x_229); +x_231 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); +x_232 = lean_string_append(x_230, x_231); +x_233 = lean_string_append(x_232, x_214); +lean_dec(x_214); +x_234 = 2; +x_235 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set_uint8(x_235, sizeof(void*)*1, x_234); +x_236 = lean_array_push(x_215, x_235); +if (lean_is_scalar(x_220)) { + x_237 = lean_alloc_ctor(0, 3, 2); +} else { + x_237 = x_220; +} +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_218); +lean_ctor_set(x_237, 2, x_219); +lean_ctor_set_uint8(x_237, sizeof(void*)*3, x_216); +lean_ctor_set_uint8(x_237, sizeof(void*)*3 + 1, x_217); +x_24 = x_204; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_237; +x_32 = lean_box(0); +goto block_91; +} +else +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +lean_dec_ref(x_204); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_238 = lean_ctor_get(x_211, 1); +lean_inc(x_238); +if (lean_is_exclusive(x_211)) { + lean_ctor_release(x_211, 0); + lean_ctor_release(x_211, 1); + x_239 = x_211; +} else { + lean_dec_ref(x_211); + x_239 = lean_box(0); +} +x_240 = lean_ctor_get(x_212, 0); +lean_inc(x_240); +lean_dec_ref(x_212); +if (lean_is_scalar(x_210)) { + x_241 = lean_alloc_ctor(1, 1, 0); +} else { + x_241 = x_210; +} +lean_ctor_set(x_241, 0, x_240); +if (lean_is_scalar(x_239)) { + x_242 = lean_alloc_ctor(0, 2, 0); +} else { + x_242 = x_239; +} +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_238); +return x_242; +} +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +lean_dec(x_210); +lean_dec_ref(x_204); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_243 = lean_ctor_get(x_211, 0); +lean_inc(x_243); +x_244 = lean_ctor_get(x_211, 1); +lean_inc(x_244); +if (lean_is_exclusive(x_211)) { + lean_ctor_release(x_211, 0); + lean_ctor_release(x_211, 1); + x_245 = x_211; +} else { + lean_dec_ref(x_211); + x_245 = lean_box(0); +} +if (lean_is_scalar(x_245)) { + x_246 = lean_alloc_ctor(1, 2, 0); +} else { + x_246 = x_245; +} +lean_ctor_set(x_246, 0, x_243); +lean_ctor_set(x_246, 1, x_244); +return x_246; +} +} +else +{ +lean_dec(x_206); +x_24 = x_204; +x_25 = x_92; +x_26 = x_6; +x_27 = x_7; +x_28 = x_8; +x_29 = x_9; +x_30 = x_10; +x_31 = x_208; +x_32 = lean_box(0); +goto block_91; +} +} +else +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; +lean_dec_ref(x_204); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_247 = lean_ctor_get(x_205, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_205, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_205)) { + lean_ctor_release(x_205, 0); + lean_ctor_release(x_205, 1); + x_249 = x_205; +} else { + lean_dec_ref(x_205); + x_249 = lean_box(0); +} +x_250 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_202); +lean_ctor_set(x_250, 2, x_203); +lean_ctor_set_uint8(x_250, sizeof(void*)*3, x_200); +lean_ctor_set_uint8(x_250, sizeof(void*)*3 + 1, x_201); +if (lean_is_scalar(x_249)) { + x_251 = lean_alloc_ctor(1, 2, 0); +} else { + x_251 = x_249; +} +lean_ctor_set(x_251, 0, x_247); +lean_ctor_set(x_251, 1, x_250); +return x_251; +} +} +} } } LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___redArg___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) { @@ -16144,773 +14031,918 @@ lean_dec_ref(x_5); return x_15; } } -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(uint64_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_1, 6); -x_6 = lean_ctor_get(x_5, 25); -if (lean_obj_tag(x_6) == 0) +lean_object* x_8; lean_object* x_9; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_199; lean_object* x_200; +x_199 = lean_ctor_get(x_4, 6); +x_200 = lean_ctor_get(x_199, 25); +if (lean_obj_tag(x_200) == 0) { -lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; -x_7 = lean_ctor_get(x_2, 1); -x_8 = l_Lake_Workspace_enableArtifactCache(x_7); -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_3); -return x_10; +lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_201 = lean_ctor_get(x_5, 1); +x_202 = lean_ctor_get(x_201, 1); +x_203 = lean_ctor_get(x_202, 6); +if (lean_obj_tag(x_203) == 0) +{ +lean_object* x_204; lean_object* x_205; lean_object* x_206; +x_204 = lean_ctor_get(x_201, 0); +x_205 = lean_ctor_get(x_204, 6); +x_206 = lean_ctor_get(x_205, 25); +if (lean_obj_tag(x_206) == 0) +{ +uint8_t x_207; +x_207 = 0; +x_89 = x_207; +x_90 = x_6; +x_91 = lean_box(0); +goto block_198; } else { -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_6, 0); -lean_inc(x_11); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_3); +lean_object* x_208; uint8_t x_209; +x_208 = lean_ctor_get(x_206, 0); +x_209 = lean_unbox(x_208); +x_89 = x_209; +x_90 = x_6; +x_91 = lean_box(0); +goto block_198; +} +} +else +{ +lean_object* x_210; uint8_t x_211; +x_210 = lean_ctor_get(x_203, 0); +x_211 = lean_unbox(x_210); +x_89 = x_211; +x_90 = x_6; +x_91 = lean_box(0); +goto block_198; +} +} +else +{ +lean_object* x_212; uint8_t x_213; +x_212 = lean_ctor_get(x_200, 0); +x_213 = lean_unbox(x_212); +x_89 = x_213; +x_90 = x_6; +x_91 = lean_box(0); +goto block_198; +} +block_12: +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_box(0); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_8); +return x_11; +} +block_18: +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_14); +return x_17; +} +block_61: +{ +if (lean_obj_tag(x_2) == 2) +{ +lean_object* x_24; uint64_t x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_24); +lean_dec_ref(x_2); +x_25 = lean_ctor_get_uint64(x_24, sizeof(void*)*3); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +x_27 = lean_uint64_dec_eq(x_25, x_1); +if (x_27 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +else +{ +if (lean_obj_tag(x_26) == 1) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec_ref(x_26); +lean_inc(x_28); +x_29 = l_Lake_ArtifactDescr_fromJson_x3f(x_28); +if (lean_obj_tag(x_29) == 0) +{ +lean_dec_ref(x_29); +lean_dec(x_28); +lean_dec_ref(x_21); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_30 = lean_ctor_get(x_21, 1); +lean_inc(x_30); +lean_dec_ref(x_21); +x_31 = lean_ctor_get(x_29, 0); +lean_inc(x_31); +lean_dec_ref(x_29); +x_32 = lean_ctor_get(x_22, 0); +x_33 = lean_ctor_get_uint8(x_22, sizeof(void*)*3); +x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*3 + 1); +x_35 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_22, 2); +x_37 = lean_ctor_get(x_30, 2); +lean_inc_ref(x_37); +lean_dec(x_30); +x_38 = l_Lake_Cache_getArtifact(x_37, x_31); +if (lean_obj_tag(x_38) == 0) +{ +if (x_20 == 0) +{ +lean_object* x_39; +lean_dec(x_28); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +x_13 = x_39; +x_14 = x_22; +x_15 = lean_box(0); +goto block_18; +} +else +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec_ref(x_38); +x_41 = l_Lake_Cache_writeOutputsCore(x_3, x_19, x_1, x_28); +if (lean_obj_tag(x_41) == 0) +{ +lean_dec_ref(x_41); +x_13 = x_40; +x_14 = x_22; +x_15 = lean_box(0); +goto block_18; +} +else +{ +uint8_t x_42; +lean_dec(x_40); +lean_inc(x_36); +lean_inc_ref(x_35); +lean_inc_ref(x_32); +x_42 = !lean_is_exclusive(x_22); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_43 = lean_ctor_get(x_22, 2); +lean_dec(x_43); +x_44 = lean_ctor_get(x_22, 1); +lean_dec(x_44); +x_45 = lean_ctor_get(x_22, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_41, 0); +lean_inc(x_46); +lean_dec_ref(x_41); +x_47 = lean_io_error_to_string(x_46); +x_48 = 3; +x_49 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); +x_50 = lean_array_get_size(x_32); +x_51 = lean_array_push(x_32, x_49); +lean_ctor_set(x_22, 0, x_51); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_22); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_22); +x_53 = lean_ctor_get(x_41, 0); +lean_inc(x_53); +lean_dec_ref(x_41); +x_54 = lean_io_error_to_string(x_53); +x_55 = 3; +x_56 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_55); +x_57 = lean_array_get_size(x_32); +x_58 = lean_array_push(x_32, x_56); +x_59 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_35); +lean_ctor_set(x_59, 2, x_36); +lean_ctor_set_uint8(x_59, sizeof(void*)*3, x_33); +lean_ctor_set_uint8(x_59, sizeof(void*)*3 + 1, x_34); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_59); +return x_60; +} +} +} +} +else +{ +lean_dec_ref(x_38); +lean_dec(x_28); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +} +else +{ +lean_dec(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +} +else +{ +lean_dec_ref(x_21); +lean_dec_ref(x_19); +lean_dec_ref(x_3); +lean_dec(x_2); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +block_88: +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* 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; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_71 = l_Lake_Hash_hex(x_1); +x_72 = lean_string_utf8_byte_size(x_71); +x_73 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_71); +x_74 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_73); +lean_ctor_set(x_74, 2, x_72); +x_75 = lean_unsigned_to_nat(7u); +x_76 = l_String_Slice_Pos_nextn(x_74, x_73, x_75); +lean_dec_ref(x_74); +x_77 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); +x_78 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_78, 0, x_71); +lean_ctor_set(x_78, 1, x_73); +lean_ctor_set(x_78, 2, x_76); +x_79 = l_String_Slice_toString(x_78); +lean_dec_ref(x_78); +x_80 = lean_string_append(x_77, x_79); +lean_dec_ref(x_79); +x_81 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); +x_82 = lean_string_append(x_80, x_81); +x_83 = lean_string_append(x_82, x_64); +lean_dec_ref(x_64); +x_84 = 2; +x_85 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set_uint8(x_85, sizeof(void*)*1, x_84); +x_86 = lean_array_push(x_65, x_85); +x_87 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_68); +lean_ctor_set(x_87, 2, x_69); +lean_ctor_set_uint8(x_87, sizeof(void*)*3, x_66); +lean_ctor_set_uint8(x_87, sizeof(void*)*3 + 1, x_67); +x_19 = x_62; +x_20 = x_63; +x_21 = x_5; +x_22 = x_87; +x_23 = lean_box(0); +goto block_61; +} +block_198: +{ +uint8_t x_92; +x_92 = !lean_is_exclusive(x_90); +if (x_92 == 0) +{ +lean_object* x_93; uint8_t x_94; uint8_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_93 = lean_ctor_get(x_90, 0); +x_94 = lean_ctor_get_uint8(x_90, sizeof(void*)*3); +x_95 = lean_ctor_get_uint8(x_90, sizeof(void*)*3 + 1); +x_96 = lean_ctor_get(x_90, 1); +x_97 = lean_ctor_get(x_90, 2); +x_98 = l_Lake_Package_cacheScope(x_4); +lean_inc_ref(x_98); +lean_inc_ref(x_3); +x_99 = l_Lake_Cache_readOutputs_x3f(x_3, x_98, x_1, x_93); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_99); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_99, 0); +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_97); +lean_inc_ref(x_96); +lean_inc(x_102); +lean_ctor_set(x_90, 0, x_102); +if (lean_obj_tag(x_101) == 1) +{ +uint8_t x_103; +x_103 = !lean_is_exclusive(x_101); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_101, 0); +lean_inc(x_104); +x_105 = l_Lake_ArtifactDescr_fromJson_x3f(x_104); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_free_object(x_101); +lean_dec_ref(x_90); +lean_free_object(x_99); +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +lean_dec_ref(x_105); +x_107 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); +x_108 = lean_unsigned_to_nat(80u); +x_109 = l_Lean_Json_pretty(x_104, x_108); +x_110 = lean_string_append(x_107, x_109); +lean_dec_ref(x_109); +x_111 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); +x_112 = lean_string_append(x_110, x_111); +x_113 = lean_string_append(x_112, x_106); +lean_dec(x_106); +x_62 = x_98; +x_63 = x_89; +x_64 = x_113; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_dec(x_104); +x_114 = lean_ctor_get(x_5, 1); +x_115 = lean_ctor_get(x_105, 0); +lean_inc(x_115); +lean_dec_ref(x_105); +x_116 = lean_ctor_get(x_114, 2); +lean_inc_ref(x_116); +x_117 = l_Lake_Cache_getArtifact(x_116, x_115); +if (lean_obj_tag(x_117) == 0) +{ +lean_object* x_118; +lean_dec(x_102); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +lean_dec_ref(x_117); +lean_ctor_set(x_101, 0, x_118); +lean_ctor_set(x_99, 1, x_90); +return x_99; +} +else +{ +lean_object* x_119; +lean_free_object(x_101); +lean_dec_ref(x_90); +lean_free_object(x_99); +x_119 = lean_ctor_get(x_117, 0); +lean_inc(x_119); +lean_dec_ref(x_117); +x_62 = x_98; +x_63 = x_89; +x_64 = x_119; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_object* x_120; lean_object* x_121; +x_120 = lean_ctor_get(x_101, 0); +lean_inc(x_120); +lean_dec(x_101); +lean_inc(x_120); +x_121 = l_Lake_ArtifactDescr_fromJson_x3f(x_120); +if (lean_obj_tag(x_121) == 0) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec_ref(x_90); +lean_free_object(x_99); +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +lean_dec_ref(x_121); +x_123 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); +x_124 = lean_unsigned_to_nat(80u); +x_125 = l_Lean_Json_pretty(x_120, x_124); +x_126 = lean_string_append(x_123, x_125); +lean_dec_ref(x_125); +x_127 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); +x_128 = lean_string_append(x_126, x_127); +x_129 = lean_string_append(x_128, x_122); +lean_dec(x_122); +x_62 = x_98; +x_63 = x_89; +x_64 = x_129; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec(x_120); +x_130 = lean_ctor_get(x_5, 1); +x_131 = lean_ctor_get(x_121, 0); +lean_inc(x_131); +lean_dec_ref(x_121); +x_132 = lean_ctor_get(x_130, 2); +lean_inc_ref(x_132); +x_133 = l_Lake_Cache_getArtifact(x_132, x_131); +if (lean_obj_tag(x_133) == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_102); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_134 = lean_ctor_get(x_133, 0); +lean_inc(x_134); +lean_dec_ref(x_133); +x_135 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_99, 1, x_90); +lean_ctor_set(x_99, 0, x_135); +return x_99; +} +else +{ +lean_object* x_136; +lean_dec_ref(x_90); +lean_free_object(x_99); +x_136 = lean_ctor_get(x_133, 0); +lean_inc(x_136); +lean_dec_ref(x_133); +x_62 = x_98; +x_63 = x_89; +x_64 = x_136; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +} +else +{ +lean_free_object(x_99); +lean_dec(x_102); +lean_dec(x_101); +lean_dec(x_97); +lean_dec_ref(x_96); +x_19 = x_98; +x_20 = x_89; +x_21 = x_5; +x_22 = x_90; +x_23 = lean_box(0); +goto block_61; +} +} +else +{ +lean_object* x_137; lean_object* x_138; +x_137 = lean_ctor_get(x_99, 0); +x_138 = lean_ctor_get(x_99, 1); +lean_inc(x_138); +lean_inc(x_137); +lean_dec(x_99); +lean_inc(x_97); +lean_inc_ref(x_96); +lean_inc(x_138); +lean_ctor_set(x_90, 0, x_138); +if (lean_obj_tag(x_137) == 1) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_137, 0); +lean_inc(x_139); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + x_140 = x_137; +} else { + lean_dec_ref(x_137); + x_140 = lean_box(0); +} +lean_inc(x_139); +x_141 = l_Lake_ArtifactDescr_fromJson_x3f(x_139); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +lean_dec(x_140); +lean_dec_ref(x_90); +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +lean_dec_ref(x_141); +x_143 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); +x_144 = lean_unsigned_to_nat(80u); +x_145 = l_Lean_Json_pretty(x_139, x_144); +x_146 = lean_string_append(x_143, x_145); +lean_dec_ref(x_145); +x_147 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); +x_148 = lean_string_append(x_146, x_147); +x_149 = lean_string_append(x_148, x_142); +lean_dec(x_142); +x_62 = x_98; +x_63 = x_89; +x_64 = x_149; +x_65 = x_138; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +lean_dec(x_139); +x_150 = lean_ctor_get(x_5, 1); +x_151 = lean_ctor_get(x_141, 0); +lean_inc(x_151); +lean_dec_ref(x_141); +x_152 = lean_ctor_get(x_150, 2); +lean_inc_ref(x_152); +x_153 = l_Lake_Cache_getArtifact(x_152, x_151); +if (lean_obj_tag(x_153) == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_138); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_154 = lean_ctor_get(x_153, 0); +lean_inc(x_154); +lean_dec_ref(x_153); +if (lean_is_scalar(x_140)) { + x_155 = lean_alloc_ctor(1, 1, 0); +} else { + x_155 = x_140; +} +lean_ctor_set(x_155, 0, x_154); +x_156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_90); +return x_156; +} +else +{ +lean_object* x_157; +lean_dec(x_140); +lean_dec_ref(x_90); +x_157 = lean_ctor_get(x_153, 0); +lean_inc(x_157); +lean_dec_ref(x_153); +x_62 = x_98; +x_63 = x_89; +x_64 = x_157; +x_65 = x_138; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_dec(x_138); +lean_dec(x_137); +lean_dec(x_97); +lean_dec_ref(x_96); +x_19 = x_98; +x_20 = x_89; +x_21 = x_5; +x_22 = x_90; +x_23 = lean_box(0); +goto block_61; +} +} +} +else +{ +uint8_t x_158; +lean_dec_ref(x_98); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_158 = !lean_is_exclusive(x_99); +if (x_158 == 0) +{ +lean_object* x_159; +x_159 = lean_ctor_get(x_99, 1); +lean_ctor_set(x_90, 0, x_159); +lean_ctor_set(x_99, 1, x_90); +return x_99; +} +else +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_160 = lean_ctor_get(x_99, 0); +x_161 = lean_ctor_get(x_99, 1); +lean_inc(x_161); +lean_inc(x_160); +lean_dec(x_99); +lean_ctor_set(x_90, 0, x_161); +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_90); +return x_162; +} +} +} +else +{ +lean_object* x_163; uint8_t x_164; uint8_t x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_163 = lean_ctor_get(x_90, 0); +x_164 = lean_ctor_get_uint8(x_90, sizeof(void*)*3); +x_165 = lean_ctor_get_uint8(x_90, sizeof(void*)*3 + 1); +x_166 = lean_ctor_get(x_90, 1); +x_167 = lean_ctor_get(x_90, 2); +lean_inc(x_167); +lean_inc(x_166); +lean_inc(x_163); +lean_dec(x_90); +x_168 = l_Lake_Package_cacheScope(x_4); +lean_inc_ref(x_168); +lean_inc_ref(x_3); +x_169 = l_Lake_Cache_readOutputs_x3f(x_3, x_168, x_1, x_163); +if (lean_obj_tag(x_169) == 0) +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_170 = lean_ctor_get(x_169, 0); +lean_inc(x_170); +x_171 = lean_ctor_get(x_169, 1); +lean_inc(x_171); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_172 = x_169; +} else { + lean_dec_ref(x_169); + x_172 = lean_box(0); +} +lean_inc(x_167); +lean_inc_ref(x_166); +lean_inc(x_171); +x_173 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_166); +lean_ctor_set(x_173, 2, x_167); +lean_ctor_set_uint8(x_173, sizeof(void*)*3, x_164); +lean_ctor_set_uint8(x_173, sizeof(void*)*3 + 1, x_165); +if (lean_obj_tag(x_170) == 1) +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_174 = lean_ctor_get(x_170, 0); +lean_inc(x_174); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + x_175 = x_170; +} else { + lean_dec_ref(x_170); + x_175 = lean_box(0); +} +lean_inc(x_174); +x_176 = l_Lake_ArtifactDescr_fromJson_x3f(x_174); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_175); +lean_dec_ref(x_173); +lean_dec(x_172); +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +lean_dec_ref(x_176); +x_178 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); +x_179 = lean_unsigned_to_nat(80u); +x_180 = l_Lean_Json_pretty(x_174, x_179); +x_181 = lean_string_append(x_178, x_180); +lean_dec_ref(x_180); +x_182 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); +x_183 = lean_string_append(x_181, x_182); +x_184 = lean_string_append(x_183, x_177); +lean_dec(x_177); +x_62 = x_168; +x_63 = x_89; +x_64 = x_184; +x_65 = x_171; +x_66 = x_164; +x_67 = x_165; +x_68 = x_166; +x_69 = x_167; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; +lean_dec(x_174); +x_185 = lean_ctor_get(x_5, 1); +x_186 = lean_ctor_get(x_176, 0); +lean_inc(x_186); +lean_dec_ref(x_176); +x_187 = lean_ctor_get(x_185, 2); +lean_inc_ref(x_187); +x_188 = l_Lake_Cache_getArtifact(x_187, x_186); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_171); +lean_dec_ref(x_168); +lean_dec(x_167); +lean_dec_ref(x_166); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_189 = lean_ctor_get(x_188, 0); +lean_inc(x_189); +lean_dec_ref(x_188); +if (lean_is_scalar(x_175)) { + x_190 = lean_alloc_ctor(1, 1, 0); +} else { + x_190 = x_175; +} +lean_ctor_set(x_190, 0, x_189); +if (lean_is_scalar(x_172)) { + x_191 = lean_alloc_ctor(0, 2, 0); +} else { + x_191 = x_172; +} +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_173); +return x_191; +} +else +{ +lean_object* x_192; +lean_dec(x_175); +lean_dec_ref(x_173); +lean_dec(x_172); +x_192 = lean_ctor_get(x_188, 0); +lean_inc(x_192); +lean_dec_ref(x_188); +x_62 = x_168; +x_63 = x_89; +x_64 = x_192; +x_65 = x_171; +x_66 = x_164; +x_67 = x_165; +x_68 = x_166; +x_69 = x_167; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_dec(x_172); +lean_dec(x_171); +lean_dec(x_170); +lean_dec(x_167); +lean_dec_ref(x_166); +x_19 = x_168; +x_20 = x_89; +x_21 = x_5; +x_22 = x_173; +x_23 = lean_box(0); +goto block_61; +} +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; +lean_dec_ref(x_168); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_193 = lean_ctor_get(x_169, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_169, 1); +lean_inc(x_194); +if (lean_is_exclusive(x_169)) { + lean_ctor_release(x_169, 0); + lean_ctor_release(x_169, 1); + x_195 = x_169; +} else { + lean_dec_ref(x_169); + x_195 = lean_box(0); +} +x_196 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_196, 0, x_194); +lean_ctor_set(x_196, 1, x_166); +lean_ctor_set(x_196, 2, x_167); +lean_ctor_set_uint8(x_196, sizeof(void*)*3, x_164); +lean_ctor_set_uint8(x_196, sizeof(void*)*3 + 1, x_165); +if (lean_is_scalar(x_195)) { + x_197 = lean_alloc_ctor(1, 2, 0); +} else { + x_197 = x_195; +} +lean_ctor_set(x_197, 0, x_193); +lean_ctor_set(x_197, 1, x_196); +return x_197; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg___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) { +_start: +{ +uint64_t x_8; lean_object* x_9; +x_8 = lean_unbox_uint64(x_1); +lean_dec(x_1); +x_9 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_8, x_2, x_3, x_4, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0(lean_object* x_1, uint64_t 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_12; +x_12 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_2, x_3, x_4, x_5, x_9, x_10); return x_12; } } -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_1, x_2, x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0(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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_1, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__1(lean_object* x_1, uint64_t 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_12; lean_object* x_13; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t 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_76; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_101; -x_23 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_5, x_9, x_10); -x_24 = lean_ctor_get(x_23, 1); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 0); -lean_inc(x_25); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_26 = x_23; -} else { - lean_dec_ref(x_23); - x_26 = lean_box(0); -} -x_27 = lean_ctor_get(x_24, 0); -lean_inc_ref(x_27); -x_28 = lean_ctor_get_uint8(x_24, sizeof(void*)*3); -x_29 = lean_ctor_get_uint8(x_24, sizeof(void*)*3 + 1); -x_30 = lean_ctor_get(x_24, 1); -lean_inc_ref(x_30); -x_31 = lean_ctor_get(x_24, 2); -lean_inc(x_31); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_32 = x_24; -} else { - lean_dec_ref(x_24); - x_32 = lean_box(0); -} -x_33 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_33); -lean_inc_ref(x_4); -x_101 = l_Lake_Cache_readOutputs_x3f(x_4, x_33, x_2, x_27); -if (lean_obj_tag(x_101) == 0) -{ -uint8_t x_102; -x_102 = !lean_is_exclusive(x_101); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_101, 0); -x_104 = lean_ctor_get(x_101, 1); -lean_inc(x_31); -lean_inc_ref(x_30); -lean_inc(x_104); -x_105 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_30); -lean_ctor_set(x_105, 2, x_31); -lean_ctor_set_uint8(x_105, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_105, sizeof(void*)*3 + 1, x_29); -if (lean_obj_tag(x_103) == 1) -{ -uint8_t x_106; -x_106 = !lean_is_exclusive(x_103); -if (x_106 == 0) -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_103, 0); -lean_inc(x_107); -x_108 = l_Lake_ArtifactDescr_fromJson_x3f(x_107); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -lean_free_object(x_103); -lean_dec_ref(x_105); -lean_free_object(x_101); -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -lean_dec_ref(x_108); -x_110 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); -x_111 = lean_unsigned_to_nat(80u); -x_112 = l_Lean_Json_pretty(x_107, x_111); -x_113 = lean_string_append(x_110, x_112); -lean_dec_ref(x_112); -x_114 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); -x_115 = lean_string_append(x_113, x_114); -x_116 = lean_string_append(x_115, x_109); -lean_dec(x_109); -x_76 = x_116; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -lean_dec(x_107); -x_117 = lean_ctor_get(x_9, 1); -x_118 = lean_ctor_get(x_108, 0); -lean_inc(x_118); -lean_dec_ref(x_108); -x_119 = lean_ctor_get(x_117, 2); -lean_inc_ref(x_119); -x_120 = l_Lake_Cache_getArtifact(x_119, x_118); -if (lean_obj_tag(x_120) == 0) -{ -lean_object* x_121; -lean_dec(x_104); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -lean_dec_ref(x_120); -lean_ctor_set(x_103, 0, x_121); -lean_ctor_set(x_101, 1, x_105); -return x_101; -} -else -{ -lean_object* x_122; -lean_free_object(x_103); -lean_dec_ref(x_105); -lean_free_object(x_101); -x_122 = lean_ctor_get(x_120, 0); -lean_inc(x_122); -lean_dec_ref(x_120); -x_76 = x_122; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -else -{ -lean_object* x_123; lean_object* x_124; -x_123 = lean_ctor_get(x_103, 0); -lean_inc(x_123); -lean_dec(x_103); -lean_inc(x_123); -x_124 = l_Lake_ArtifactDescr_fromJson_x3f(x_123); -if (lean_obj_tag(x_124) == 0) -{ -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -lean_dec_ref(x_105); -lean_free_object(x_101); -x_125 = lean_ctor_get(x_124, 0); -lean_inc(x_125); -lean_dec_ref(x_124); -x_126 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); -x_127 = lean_unsigned_to_nat(80u); -x_128 = l_Lean_Json_pretty(x_123, x_127); -x_129 = lean_string_append(x_126, x_128); -lean_dec_ref(x_128); -x_130 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); -x_131 = lean_string_append(x_129, x_130); -x_132 = lean_string_append(x_131, x_125); -lean_dec(x_125); -x_76 = x_132; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -lean_dec(x_123); -x_133 = lean_ctor_get(x_9, 1); -x_134 = lean_ctor_get(x_124, 0); -lean_inc(x_134); -lean_dec_ref(x_124); -x_135 = lean_ctor_get(x_133, 2); -lean_inc_ref(x_135); -x_136 = l_Lake_Cache_getArtifact(x_135, x_134); -if (lean_obj_tag(x_136) == 0) -{ -lean_object* x_137; lean_object* x_138; -lean_dec(x_104); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_137 = lean_ctor_get(x_136, 0); -lean_inc(x_137); -lean_dec_ref(x_136); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -lean_ctor_set(x_101, 1, x_105); -lean_ctor_set(x_101, 0, x_138); -return x_101; -} -else -{ -lean_object* x_139; -lean_dec_ref(x_105); -lean_free_object(x_101); -x_139 = lean_ctor_get(x_136, 0); -lean_inc(x_139); -lean_dec_ref(x_136); -x_76 = x_139; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -} -else -{ -lean_free_object(x_101); -lean_dec(x_104); -lean_dec(x_103); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -x_34 = x_9; -x_35 = x_105; -x_36 = lean_box(0); -goto block_75; -} -} -else -{ -lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_140 = lean_ctor_get(x_101, 0); -x_141 = lean_ctor_get(x_101, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_101); -lean_inc(x_31); -lean_inc_ref(x_30); -lean_inc(x_141); -x_142 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_30); -lean_ctor_set(x_142, 2, x_31); -lean_ctor_set_uint8(x_142, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_142, sizeof(void*)*3 + 1, x_29); -if (lean_obj_tag(x_140) == 1) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_143 = lean_ctor_get(x_140, 0); -lean_inc(x_143); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - x_144 = x_140; -} else { - lean_dec_ref(x_140); - x_144 = lean_box(0); -} -lean_inc(x_143); -x_145 = l_Lake_ArtifactDescr_fromJson_x3f(x_143); -if (lean_obj_tag(x_145) == 0) -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -lean_dec(x_144); -lean_dec_ref(x_142); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -lean_dec_ref(x_145); -x_147 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__0)); -x_148 = lean_unsigned_to_nat(80u); -x_149 = l_Lean_Json_pretty(x_143, x_148); -x_150 = lean_string_append(x_147, x_149); -lean_dec_ref(x_149); -x_151 = ((lean_object*)(l___private_Lake_Build_Common_0__Lake_resolveArtifactOutput_x3f___redArg___closed__1)); -x_152 = lean_string_append(x_150, x_151); -x_153 = lean_string_append(x_152, x_146); -lean_dec(x_146); -x_76 = x_153; -x_77 = x_141; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -lean_dec(x_143); -x_154 = lean_ctor_get(x_9, 1); -x_155 = lean_ctor_get(x_145, 0); -lean_inc(x_155); -lean_dec_ref(x_145); -x_156 = lean_ctor_get(x_154, 2); -lean_inc_ref(x_156); -x_157 = l_Lake_Cache_getArtifact(x_156, x_155); -if (lean_obj_tag(x_157) == 0) -{ -lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec(x_141); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -lean_dec_ref(x_157); -if (lean_is_scalar(x_144)) { - x_159 = lean_alloc_ctor(1, 1, 0); -} else { - x_159 = x_144; -} -lean_ctor_set(x_159, 0, x_158); -x_160 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_160, 0, x_159); -lean_ctor_set(x_160, 1, x_142); -return x_160; -} -else -{ -lean_object* x_161; -lean_dec(x_144); -lean_dec_ref(x_142); -x_161 = lean_ctor_get(x_157, 0); -lean_inc(x_161); -lean_dec_ref(x_157); -x_76 = x_161; -x_77 = x_141; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -else -{ -lean_dec(x_141); -lean_dec(x_140); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -x_34 = x_9; -x_35 = x_142; -x_36 = lean_box(0); -goto block_75; -} -} -} -else -{ -uint8_t x_162; -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_162 = !lean_is_exclusive(x_101); -if (x_162 == 0) -{ -lean_object* x_163; lean_object* x_164; -x_163 = lean_ctor_get(x_101, 1); -x_164 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_164, 0, x_163); -lean_ctor_set(x_164, 1, x_30); -lean_ctor_set(x_164, 2, x_31); -lean_ctor_set_uint8(x_164, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_164, sizeof(void*)*3 + 1, x_29); -lean_ctor_set(x_101, 1, x_164); -return x_101; -} -else -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_165 = lean_ctor_get(x_101, 0); -x_166 = lean_ctor_get(x_101, 1); -lean_inc(x_166); -lean_inc(x_165); -lean_dec(x_101); -x_167 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_167, 0, x_166); -lean_ctor_set(x_167, 1, x_30); -lean_ctor_set(x_167, 2, x_31); -lean_ctor_set_uint8(x_167, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_167, sizeof(void*)*3 + 1, x_29); -x_168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_168, 0, x_165); -lean_ctor_set(x_168, 1, x_167); -return x_168; -} -} -block_16: -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_12); -return x_15; -} -block_22: -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_18); -return x_21; -} -block_75: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_37; uint64_t x_38; lean_object* x_39; uint8_t x_40; -x_37 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_37); -lean_dec_ref(x_3); -x_38 = lean_ctor_get_uint64(x_37, sizeof(void*)*3); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec_ref(x_37); -x_40 = lean_uint64_dec_eq(x_38, x_2); -if (x_40 == 0) -{ -lean_dec(x_39); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -else -{ -if (lean_obj_tag(x_39) == 1) -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_39, 0); -lean_inc(x_41); -lean_dec_ref(x_39); -lean_inc(x_41); -x_42 = l_Lake_ArtifactDescr_fromJson_x3f(x_41); -if (lean_obj_tag(x_42) == 0) -{ -lean_dec_ref(x_42); -lean_dec(x_41); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_43 = lean_ctor_get(x_34, 1); -lean_inc(x_43); -lean_dec_ref(x_34); -x_44 = lean_ctor_get(x_42, 0); -lean_inc(x_44); -lean_dec_ref(x_42); -x_45 = lean_ctor_get(x_35, 0); -x_46 = lean_ctor_get_uint8(x_35, sizeof(void*)*3); -x_47 = lean_ctor_get_uint8(x_35, sizeof(void*)*3 + 1); -x_48 = lean_ctor_get(x_35, 1); -x_49 = lean_ctor_get(x_35, 2); -x_50 = lean_ctor_get(x_43, 2); -lean_inc_ref(x_50); -lean_dec(x_43); -x_51 = l_Lake_Cache_getArtifact(x_50, x_44); -if (lean_obj_tag(x_51) == 0) -{ -uint8_t x_52; -x_52 = lean_unbox(x_25); -lean_dec(x_25); -if (x_52 == 0) -{ -lean_object* x_53; -lean_dec(x_41); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec_ref(x_4); -x_53 = lean_ctor_get(x_51, 0); -lean_inc(x_53); -lean_dec_ref(x_51); -x_17 = x_53; -x_18 = x_35; -x_19 = lean_box(0); -goto block_22; -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_51, 0); -lean_inc(x_54); -lean_dec_ref(x_51); -x_55 = l_Lake_Cache_writeOutputsCore(x_4, x_33, x_2, x_41); -if (lean_obj_tag(x_55) == 0) -{ -lean_dec_ref(x_55); -lean_dec(x_26); -x_17 = x_54; -x_18 = x_35; -x_19 = lean_box(0); -goto block_22; -} -else -{ -uint8_t x_56; -lean_dec(x_54); -lean_inc(x_49); -lean_inc_ref(x_48); -lean_inc_ref(x_45); -x_56 = !lean_is_exclusive(x_35); -if (x_56 == 0) -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_57 = lean_ctor_get(x_35, 2); -lean_dec(x_57); -x_58 = lean_ctor_get(x_35, 1); -lean_dec(x_58); -x_59 = lean_ctor_get(x_35, 0); -lean_dec(x_59); -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -lean_dec_ref(x_55); -x_61 = lean_io_error_to_string(x_60); -x_62 = 3; -x_63 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = lean_array_get_size(x_45); -x_65 = lean_array_push(x_45, x_63); -lean_ctor_set(x_35, 0, x_65); -if (lean_is_scalar(x_26)) { - x_66 = lean_alloc_ctor(1, 2, 0); -} else { - x_66 = x_26; - lean_ctor_set_tag(x_66, 1); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_35); -return x_66; -} -else -{ -lean_object* x_67; lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_35); -x_67 = lean_ctor_get(x_55, 0); -lean_inc(x_67); -lean_dec_ref(x_55); -x_68 = lean_io_error_to_string(x_67); -x_69 = 3; -x_70 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set_uint8(x_70, sizeof(void*)*1, x_69); -x_71 = lean_array_get_size(x_45); -x_72 = lean_array_push(x_45, x_70); -x_73 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_48); -lean_ctor_set(x_73, 2, x_49); -lean_ctor_set_uint8(x_73, sizeof(void*)*3, x_46); -lean_ctor_set_uint8(x_73, sizeof(void*)*3 + 1, x_47); -if (lean_is_scalar(x_26)) { - x_74 = lean_alloc_ctor(1, 2, 0); -} else { - x_74 = x_26; - lean_ctor_set_tag(x_74, 1); -} -lean_ctor_set(x_74, 0, x_71); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -lean_dec_ref(x_51); -lean_dec(x_41); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -} -else -{ -lean_dec(x_39); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -} -else -{ -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -lean_dec(x_3); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -block_100: -{ -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; uint8_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_83 = l_Lake_Hash_hex(x_2); -x_84 = lean_string_utf8_byte_size(x_83); -x_85 = lean_unsigned_to_nat(0u); -lean_inc_ref(x_83); -x_86 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_85); -lean_ctor_set(x_86, 2, x_84); -x_87 = lean_unsigned_to_nat(7u); -x_88 = l_String_Slice_Pos_nextn(x_86, x_85, x_87); -lean_dec_ref(x_86); -x_89 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__0)); -x_90 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_90, 0, x_83); -lean_ctor_set(x_90, 1, x_85); -lean_ctor_set(x_90, 2, x_88); -x_91 = l_String_Slice_toString(x_90); -lean_dec_ref(x_90); -x_92 = lean_string_append(x_89, x_91); -lean_dec_ref(x_91); -x_93 = ((lean_object*)(l_Lake_getArtifacts_x3f___redArg___closed__1)); -x_94 = lean_string_append(x_92, x_93); -x_95 = lean_string_append(x_94, x_76); -lean_dec_ref(x_76); -x_96 = 2; -x_97 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set_uint8(x_97, sizeof(void*)*1, x_96); -x_98 = lean_array_push(x_77, x_97); -if (lean_is_scalar(x_32)) { - x_99 = lean_alloc_ctor(0, 3, 2); -} else { - x_99 = x_32; -} -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_80); -lean_ctor_set(x_99, 2, x_81); -lean_ctor_set_uint8(x_99, sizeof(void*)*3, x_78); -lean_ctor_set_uint8(x_99, sizeof(void*)*3 + 1, x_79); -x_34 = x_9; -x_35 = x_99; -x_36 = lean_box(0); -goto block_75; -} -} -} -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__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_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___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: { uint64_t x_12; lean_object* x_13; x_12 = lean_unbox_uint64(x_2); lean_dec(x_2); -x_13 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -16923,7 +14955,7 @@ _start: { lean_object* x_16; lean_inc(x_2); -x_16 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__1(x_9, x_1, x_2, x_3, x_4, x_10, x_11, x_12, x_13, x_14); +x_16 = l_Lake_getArtifacts_x3f___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_1, x_2, x_3, x_4, x_13, x_14); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; @@ -17973,240 +16005,109 @@ if (lean_obj_tag(x_44) == 0) { if (lean_obj_tag(x_8) == 1) { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint64_t 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; uint8_t x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_96; uint8_t x_100; uint8_t x_129; uint8_t x_130; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint64_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_96; lean_object* x_100; uint8_t x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; uint8_t x_116; uint8_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_122; lean_object* x_123; lean_object* x_145; lean_object* x_146; uint8_t x_147; uint8_t x_176; lean_object* x_177; lean_object* x_178; +x_45 = lean_ctor_get(x_11, 1); +x_46 = lean_ctor_get(x_44, 0); lean_inc(x_46); +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_47); lean_dec_ref(x_44); -x_47 = lean_ctor_get(x_8, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_11, 1); +x_48 = lean_ctor_get(x_8, 0); +x_49 = lean_ctor_get(x_45, 0); +x_50 = lean_ctor_get(x_45, 1); +x_51 = lean_ctor_get(x_45, 2); +x_52 = lean_ctor_get_uint64(x_41, sizeof(void*)*3); +x_53 = lean_ctor_get(x_41, 2); +x_68 = lean_ctor_get(x_48, 6); +x_69 = lean_ctor_get(x_48, 23); +lean_inc(x_69); +x_100 = lean_ctor_get(x_68, 25); +x_101 = lean_ctor_get_uint8(x_68, sizeof(void*)*26 + 4); lean_inc_ref(x_41); -lean_ctor_set(x_12, 0, x_46); -x_49 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_47, x_11, x_12); -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -lean_dec_ref(x_49); -x_52 = lean_ctor_get(x_48, 2); -x_53 = lean_ctor_get_uint64(x_41, sizeof(void*)*3); -x_54 = lean_ctor_get(x_41, 2); -x_129 = 1; -x_130 = lean_unbox(x_50); -lean_dec(x_50); -if (x_130 == 0) +lean_ctor_set(x_12, 0, x_47); +if (lean_obj_tag(x_100) == 0) { -lean_object* x_131; -lean_inc(x_45); -x_131 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_45, x_54, x_8, x_9, x_10, x_11, x_51); -if (lean_obj_tag(x_131) == 0) +lean_object* x_180; +x_180 = lean_ctor_get(x_50, 6); +if (lean_obj_tag(x_180) == 0) { -lean_object* x_132; lean_object* x_133; uint8_t x_134; uint8_t x_135; uint8_t x_136; -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_ctor_get(x_131, 1); -lean_inc(x_133); -lean_dec_ref(x_131); -x_134 = 0; -x_135 = lean_unbox(x_132); -lean_dec(x_132); -x_136 = l_Lake_instDecidableEqOutputStatus(x_135, x_134); -if (x_136 == 0) +lean_object* x_181; lean_object* x_182; +x_181 = lean_ctor_get(x_49, 6); +x_182 = lean_ctor_get(x_181, 25); +if (lean_obj_tag(x_182) == 0) { -lean_object* x_137; -lean_dec(x_45); -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_2); -x_137 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_133); -lean_dec_ref(x_11); -x_96 = x_137; -goto block_99; +x_122 = x_12; +x_123 = lean_box(0); +goto block_144; } else { -lean_object* x_138; -lean_inc_ref(x_11); -lean_inc_ref(x_43); -lean_inc_ref(x_1); -lean_inc(x_47); -lean_inc_ref(x_52); -x_138 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_53, x_45, x_52, x_47, x_1, x_6, x_43, x_129, x_7, x_8, x_9, x_10, x_11, x_133); -if (lean_obj_tag(x_138) == 0) -{ -lean_object* x_139; -x_139 = lean_ctor_get(x_138, 0); -lean_inc(x_139); -if (lean_obj_tag(x_139) == 1) -{ -lean_object* x_140; lean_object* x_141; -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec_ref(x_138); -x_141 = lean_ctor_get(x_139, 0); -lean_inc(x_141); -lean_dec_ref(x_139); -x_69 = x_141; -x_70 = x_140; -x_71 = lean_box(0); -goto block_95; -} -else -{ -lean_object* x_142; lean_object* x_143; -lean_dec(x_139); -x_142 = lean_ctor_get(x_138, 1); -lean_inc(x_142); -lean_dec_ref(x_138); -x_143 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_142); -lean_dec_ref(x_41); -x_96 = x_143; -goto block_99; +lean_object* x_183; uint8_t x_184; +x_183 = lean_ctor_get(x_182, 0); +x_184 = lean_unbox(x_183); +x_176 = x_184; +x_177 = x_12; +x_178 = lean_box(0); +goto block_179; } } else { -uint8_t x_144; -lean_dec(x_47); -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_144 = !lean_is_exclusive(x_138); -if (x_144 == 0) -{ -return x_138; -} -else -{ -lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_145 = lean_ctor_get(x_138, 0); -x_146 = lean_ctor_get(x_138, 1); -lean_inc(x_146); -lean_inc(x_145); -lean_dec(x_138); -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_145); -lean_ctor_set(x_147, 1, x_146); -return x_147; -} -} +lean_object* x_185; uint8_t x_186; +x_185 = lean_ctor_get(x_180, 0); +x_186 = lean_unbox(x_185); +x_176 = x_186; +x_177 = x_12; +x_178 = lean_box(0); +goto block_179; } } else { -uint8_t x_148; -lean_dec(x_47); -lean_dec(x_45); -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_148 = !lean_is_exclusive(x_131); -if (x_148 == 0) +lean_object* x_187; uint8_t x_188; +x_187 = lean_ctor_get(x_100, 0); +x_188 = lean_unbox(x_187); +x_176 = x_188; +x_177 = x_12; +x_178 = lean_box(0); +goto block_179; +} +block_67: { -return x_131; -} -else -{ -lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_149 = lean_ctor_get(x_131, 0); -x_150 = lean_ctor_get(x_131, 1); -lean_inc(x_150); -lean_inc(x_149); -lean_dec(x_131); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_149); -lean_ctor_set(x_151, 1, x_150); -return x_151; -} -} -} -else -{ -lean_inc_ref(x_52); -if (x_5 == 0) -{ -lean_object* x_152; uint8_t x_153; -x_152 = lean_ctor_get(x_47, 6); -x_153 = lean_ctor_get_uint8(x_152, sizeof(void*)*26 + 4); -x_100 = x_153; -goto block_128; -} -else -{ -x_100 = x_129; -goto block_128; -} -} -block_68: -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -lean_dec_ref(x_61); -x_65 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_65, 0, x_64); -x_66 = l_Lake_CacheMap_insertCore(x_53, x_65, x_63); -x_67 = lean_st_ref_set(x_59, x_66); -lean_dec(x_59); -x_14 = x_56; +lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec_ref(x_55); +x_64 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_64, 0, x_63); +x_65 = l_Lake_CacheMap_insertCore(x_52, x_64, x_57); +x_66 = lean_st_ref_set(x_61, x_65); +lean_dec(x_61); +x_14 = x_60; x_15 = x_58; -x_16 = x_62; -x_17 = x_60; -x_18 = x_57; +x_16 = x_56; +x_17 = x_59; +x_18 = x_54; x_19 = lean_box(0); goto block_23; } block_95: { -lean_object* x_72; -x_72 = lean_ctor_get(x_47, 23); -lean_inc(x_72); -lean_dec(x_47); -if (lean_obj_tag(x_72) == 1) +if (lean_obj_tag(x_69) == 1) { lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; uint8_t x_78; lean_object* x_79; lean_object* x_80; uint64_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; -x_73 = lean_ctor_get(x_72, 0); +x_73 = lean_ctor_get(x_69, 0); lean_inc(x_73); -lean_dec_ref(x_72); +lean_dec_ref(x_69); x_74 = lean_st_ref_take(x_73); -x_75 = lean_ctor_get(x_69, 0); -x_76 = lean_ctor_get(x_70, 0); +x_75 = lean_ctor_get(x_70, 0); +x_76 = lean_ctor_get(x_71, 0); lean_inc_ref(x_76); -x_77 = lean_ctor_get_uint8(x_70, sizeof(void*)*3); -x_78 = lean_ctor_get_uint8(x_70, sizeof(void*)*3 + 1); -x_79 = lean_ctor_get(x_70, 1); +x_77 = lean_ctor_get_uint8(x_71, sizeof(void*)*3); +x_78 = lean_ctor_get_uint8(x_71, sizeof(void*)*3 + 1); +x_79 = lean_ctor_get(x_71, 1); lean_inc_ref(x_79); -x_80 = lean_ctor_get(x_70, 2); +x_80 = lean_ctor_get(x_71, 2); lean_inc(x_80); -lean_dec_ref(x_70); +lean_dec_ref(x_71); x_81 = lean_ctor_get_uint64(x_75, sizeof(void*)*1); x_82 = lean_ctor_get(x_75, 0); x_83 = lean_string_utf8_byte_size(x_82); @@ -18219,47 +16120,47 @@ x_86 = l_Lake_Hash_hex(x_81); x_87 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); x_88 = lean_string_append(x_86, x_87); x_89 = lean_string_append(x_88, x_82); -x_55 = lean_box(0); -x_56 = x_69; -x_57 = x_80; +x_54 = x_80; +x_55 = x_79; +x_56 = x_77; +x_57 = x_74; x_58 = x_76; -x_59 = x_73; -x_60 = x_78; -x_61 = x_79; -x_62 = x_77; -x_63 = x_74; -x_64 = x_89; -goto block_68; +x_59 = x_78; +x_60 = x_70; +x_61 = x_73; +x_62 = lean_box(0); +x_63 = x_89; +goto block_67; } else { lean_object* x_90; x_90 = l_Lake_Hash_hex(x_81); -x_55 = lean_box(0); -x_56 = x_69; -x_57 = x_80; +x_54 = x_80; +x_55 = x_79; +x_56 = x_77; +x_57 = x_74; x_58 = x_76; -x_59 = x_73; -x_60 = x_78; -x_61 = x_79; -x_62 = x_77; -x_63 = x_74; -x_64 = x_90; -goto block_68; +x_59 = x_78; +x_60 = x_70; +x_61 = x_73; +x_62 = lean_box(0); +x_63 = x_90; +goto block_67; } } else { lean_object* x_91; uint8_t x_92; uint8_t x_93; lean_object* x_94; -lean_dec(x_72); -x_91 = lean_ctor_get(x_70, 0); +lean_dec(x_69); +x_91 = lean_ctor_get(x_71, 0); lean_inc_ref(x_91); -x_92 = lean_ctor_get_uint8(x_70, sizeof(void*)*3); -x_93 = lean_ctor_get_uint8(x_70, sizeof(void*)*3 + 1); -x_94 = lean_ctor_get(x_70, 2); +x_92 = lean_ctor_get_uint8(x_71, sizeof(void*)*3); +x_93 = lean_ctor_get_uint8(x_71, sizeof(void*)*3 + 1); +x_94 = lean_ctor_get(x_71, 2); lean_inc(x_94); -lean_dec_ref(x_70); -x_14 = x_69; +lean_dec_ref(x_71); +x_14 = x_70; x_15 = x_91; x_16 = x_92; x_17 = x_93; @@ -18278,37 +16179,34 @@ lean_inc(x_97); x_98 = lean_ctor_get(x_96, 1); lean_inc(x_98); lean_dec_ref(x_96); -x_69 = x_97; -x_70 = x_98; -x_71 = lean_box(0); +x_70 = x_97; +x_71 = x_98; +x_72 = lean_box(0); goto block_95; } else { -lean_dec(x_47); +lean_dec(x_69); return x_96; } } -block_128: +block_115: { -lean_object* x_101; +lean_object* x_105; lean_inc_ref(x_11); lean_inc_ref(x_43); lean_inc_ref(x_1); -lean_inc(x_47); -lean_inc_ref(x_52); -lean_inc(x_45); -x_101 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_53, x_45, x_52, x_47, x_1, x_6, x_43, x_100, x_7, x_8, x_9, x_10, x_11, x_51); -if (lean_obj_tag(x_101) == 0) +lean_inc(x_48); +lean_inc_ref(x_51); +x_105 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_52, x_46, x_51, x_48, x_1, x_6, x_43, x_102, x_7, x_8, x_9, x_10, x_11, x_103); +if (lean_obj_tag(x_105) == 0) { -lean_object* x_102; -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -if (lean_obj_tag(x_102) == 1) +lean_object* x_106; +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +if (lean_obj_tag(x_106) == 1) { -lean_object* x_103; lean_object* x_104; -lean_dec_ref(x_52); -lean_dec(x_45); +lean_object* x_107; lean_object* x_108; lean_dec_ref(x_43); lean_dec_ref(x_41); lean_dec_ref(x_11); @@ -18319,57 +16217,287 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_103 = lean_ctor_get(x_101, 1); -lean_inc(x_103); -lean_dec_ref(x_101); -x_104 = lean_ctor_get(x_102, 0); -lean_inc(x_104); -lean_dec_ref(x_102); -x_69 = x_104; -x_70 = x_103; -x_71 = lean_box(0); +x_107 = lean_ctor_get(x_105, 1); +lean_inc(x_107); +lean_dec_ref(x_105); +x_108 = lean_ctor_get(x_106, 0); +lean_inc(x_108); +lean_dec_ref(x_106); +x_70 = x_108; +x_71 = x_107; +x_72 = lean_box(0); goto block_95; } else { -lean_object* x_105; lean_object* x_106; -lean_dec(x_102); -x_105 = lean_ctor_get(x_101, 1); -lean_inc(x_105); -lean_dec_ref(x_101); -x_106 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_45, x_54, x_8, x_9, x_10, x_11, x_105); -if (lean_obj_tag(x_106) == 0) +lean_object* x_109; lean_object* x_110; +lean_dec(x_106); +x_109 = lean_ctor_get(x_105, 1); +lean_inc(x_109); +lean_dec_ref(x_105); +x_110 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_109); +lean_dec_ref(x_41); +x_96 = x_110; +goto block_99; +} +} +else { -lean_object* x_107; lean_object* x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; -x_107 = lean_ctor_get(x_106, 0); -lean_inc(x_107); -x_108 = lean_ctor_get(x_106, 1); -lean_inc(x_108); -lean_dec_ref(x_106); -x_109 = 0; -x_110 = lean_unbox(x_107); -x_111 = l_Lake_instDecidableEqOutputStatus(x_110, x_109); -if (x_111 == 0) -{ -lean_object* x_112; uint8_t x_113; lean_object* x_114; +uint8_t x_111; +lean_dec(x_69); lean_dec_ref(x_43); lean_dec_ref(x_41); -lean_dec_ref(x_2); -x_112 = lean_box(0); -x_113 = lean_unbox(x_107); -lean_dec(x_107); -lean_inc(x_47); -x_114 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_113, x_1, x_4, x_3, x_6, x_100, x_47, x_52, x_53, x_112, x_7, x_8, x_9, x_10, x_11, x_108); +lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); -x_96 = x_114; +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_111 = !lean_is_exclusive(x_105); +if (x_111 == 0) +{ +return x_105; +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_105, 0); +x_113 = lean_ctor_get(x_105, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_105); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +return x_114; +} +} +} +block_121: +{ +if (x_117 == 0) +{ +lean_object* x_120; +lean_dec(x_46); +x_120 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_118); +lean_dec_ref(x_41); +x_96 = x_120; goto block_99; } else { -lean_object* x_115; +x_102 = x_116; +x_103 = x_118; +x_104 = lean_box(0); +goto block_115; +} +} +block_144: +{ +lean_object* x_124; +lean_inc(x_46); +x_124 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_46, x_53, x_8, x_9, x_10, x_11, x_122); +if (lean_obj_tag(x_124) == 0) +{ +lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; uint8_t x_129; +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_124, 1); +lean_inc(x_126); +lean_dec_ref(x_124); +x_127 = 0; +x_128 = lean_unbox(x_125); +lean_dec(x_125); +x_129 = l_Lake_instDecidableEqOutputStatus(x_128, x_127); +if (x_129 == 0) +{ +lean_object* x_130; +lean_dec(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_130 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_126); +lean_dec_ref(x_11); +x_96 = x_130; +goto block_99; +} +else +{ +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_131; +x_131 = lean_ctor_get(x_50, 6); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; +x_132 = lean_ctor_get(x_49, 6); +x_133 = lean_ctor_get(x_132, 25); +if (lean_obj_tag(x_133) == 0) +{ +x_102 = x_129; +x_103 = x_126; +x_104 = lean_box(0); +goto block_115; +} +else +{ +lean_object* x_134; uint8_t x_135; +x_134 = lean_ctor_get(x_133, 0); +x_135 = lean_unbox(x_134); +x_116 = x_129; +x_117 = x_135; +x_118 = x_126; +x_119 = lean_box(0); +goto block_121; +} +} +else +{ +lean_object* x_136; uint8_t x_137; +x_136 = lean_ctor_get(x_131, 0); +x_137 = lean_unbox(x_136); +x_116 = x_129; +x_117 = x_137; +x_118 = x_126; +x_119 = lean_box(0); +goto block_121; +} +} +else +{ +lean_object* x_138; uint8_t x_139; +x_138 = lean_ctor_get(x_100, 0); +x_139 = lean_unbox(x_138); +x_116 = x_129; +x_117 = x_139; +x_118 = x_126; +x_119 = lean_box(0); +goto block_121; +} +} +} +else +{ +uint8_t x_140; +lean_dec(x_69); +lean_dec(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_140 = !lean_is_exclusive(x_124); +if (x_140 == 0) +{ +return x_124; +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_141 = lean_ctor_get(x_124, 0); +x_142 = lean_ctor_get(x_124, 1); +lean_inc(x_142); +lean_inc(x_141); +lean_dec(x_124); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +return x_143; +} +} +} +block_175: +{ +lean_object* x_148; +lean_inc_ref(x_11); +lean_inc_ref(x_43); +lean_inc_ref(x_1); +lean_inc(x_48); +lean_inc_ref(x_51); +lean_inc(x_46); +x_148 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_52, x_46, x_51, x_48, x_1, x_6, x_43, x_147, x_7, x_8, x_9, x_10, x_11, x_146); +if (lean_obj_tag(x_148) == 0) +{ +lean_object* x_149; +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +if (lean_obj_tag(x_149) == 1) +{ +lean_object* x_150; lean_object* x_151; +lean_dec_ref(x_51); +lean_dec(x_48); +lean_dec(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +lean_dec_ref(x_148); +x_151 = lean_ctor_get(x_149, 0); +lean_inc(x_151); +lean_dec_ref(x_149); +x_70 = x_151; +x_71 = x_150; +x_72 = lean_box(0); +goto block_95; +} +else +{ +lean_object* x_152; lean_object* x_153; +lean_dec(x_149); +x_152 = lean_ctor_get(x_148, 1); +lean_inc(x_152); +lean_dec_ref(x_148); +x_153 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_46, x_53, x_8, x_9, x_10, x_11, x_152); +if (lean_obj_tag(x_153) == 0) +{ +lean_object* x_154; lean_object* x_155; uint8_t x_156; uint8_t x_157; uint8_t x_158; +x_154 = lean_ctor_get(x_153, 0); +lean_inc(x_154); +x_155 = lean_ctor_get(x_153, 1); +lean_inc(x_155); +lean_dec_ref(x_153); +x_156 = 0; +x_157 = lean_unbox(x_154); +x_158 = l_Lake_instDecidableEqOutputStatus(x_157, x_156); +if (x_158 == 0) +{ +lean_object* x_159; uint8_t x_160; lean_object* x_161; +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec_ref(x_2); +x_159 = lean_box(0); +x_160 = lean_unbox(x_154); +lean_dec(x_154); +x_161 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_160, x_1, x_4, x_3, x_6, x_147, x_48, x_51, x_52, x_159, x_7, x_8, x_9, x_10, x_11, x_155); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +x_96 = x_161; +goto block_99; +} +else +{ +lean_object* x_162; lean_inc_ref(x_11); lean_inc(x_10); lean_inc(x_9); @@ -18377,31 +16505,31 @@ lean_inc_ref(x_8); lean_inc_ref(x_7); lean_inc_ref(x_4); lean_inc_ref(x_1); -x_115 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_108); +x_162 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_155); lean_dec_ref(x_41); -if (lean_obj_tag(x_115) == 0) +if (lean_obj_tag(x_162) == 0) { -lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; -x_116 = lean_ctor_get(x_115, 1); -lean_inc(x_116); -lean_dec_ref(x_115); -x_117 = lean_box(0); -x_118 = lean_unbox(x_107); -lean_dec(x_107); -lean_inc(x_47); -x_119 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_118, x_1, x_4, x_3, x_6, x_100, x_47, x_52, x_53, x_117, x_7, x_8, x_9, x_10, x_11, x_116); +lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; +x_163 = lean_ctor_get(x_162, 1); +lean_inc(x_163); +lean_dec_ref(x_162); +x_164 = lean_box(0); +x_165 = lean_unbox(x_154); +lean_dec(x_154); +x_166 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_165, x_1, x_4, x_3, x_6, x_147, x_48, x_51, x_52, x_164, x_7, x_8, x_9, x_10, x_11, x_163); lean_dec(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); -x_96 = x_119; +x_96 = x_166; goto block_99; } else { -lean_dec(x_107); -lean_dec_ref(x_52); -lean_dec(x_47); +lean_dec(x_154); +lean_dec(x_69); +lean_dec_ref(x_51); +lean_dec(x_48); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); @@ -18409,15 +16537,16 @@ lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_1); -return x_115; +return x_162; } } } else { -uint8_t x_120; -lean_dec_ref(x_52); -lean_dec(x_47); +uint8_t x_167; +lean_dec(x_69); +lean_dec_ref(x_51); +lean_dec(x_48); lean_dec_ref(x_43); lean_dec_ref(x_41); lean_dec_ref(x_11); @@ -18428,145 +16557,174 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_120 = !lean_is_exclusive(x_106); -if (x_120 == 0) +x_167 = !lean_is_exclusive(x_153); +if (x_167 == 0) { -return x_106; +return x_153; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_106, 0); -x_122 = lean_ctor_get(x_106, 1); -lean_inc(x_122); -lean_inc(x_121); -lean_dec(x_106); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; -} -} -} -} -else -{ -uint8_t x_124; -lean_dec_ref(x_52); -lean_dec(x_47); -lean_dec(x_45); -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_124 = !lean_is_exclusive(x_101); -if (x_124 == 0) -{ -return x_101; -} -else -{ -lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_125 = lean_ctor_get(x_101, 0); -x_126 = lean_ctor_get(x_101, 1); -lean_inc(x_126); -lean_inc(x_125); -lean_dec(x_101); -x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -return x_127; -} -} -} -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_154 = lean_ctor_get(x_44, 0); -lean_inc(x_154); -x_155 = lean_ctor_get(x_44, 1); -lean_inc(x_155); -lean_dec_ref(x_44); -x_156 = lean_ctor_get(x_41, 2); -lean_inc_ref(x_41); -lean_ctor_set(x_12, 0, x_155); -x_157 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_154, x_156, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_157) == 0) -{ -lean_object* x_158; lean_object* x_159; uint8_t x_160; uint8_t x_161; uint8_t x_162; -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); -lean_inc(x_159); -lean_dec_ref(x_157); -x_160 = 0; -x_161 = lean_unbox(x_158); -lean_dec(x_158); -x_162 = l_Lake_instDecidableEqOutputStatus(x_161, x_160); -if (x_162 == 0) -{ -lean_object* x_163; -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_2); -x_163 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_159); -lean_dec_ref(x_11); -if (lean_obj_tag(x_163) == 0) -{ -lean_object* x_164; lean_object* x_165; -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -x_165 = lean_ctor_get(x_163, 1); -lean_inc(x_165); -lean_dec_ref(x_163); -x_24 = x_164; -x_25 = x_165; -x_26 = lean_box(0); -goto block_38; -} -else -{ -return x_163; -} -} -else -{ -lean_object* x_166; -x_166 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_159); -lean_dec_ref(x_41); -if (lean_obj_tag(x_166) == 0) -{ -lean_object* x_167; lean_object* x_168; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -x_168 = lean_ctor_get(x_166, 1); +lean_object* x_168; lean_object* x_169; lean_object* x_170; +x_168 = lean_ctor_get(x_153, 0); +x_169 = lean_ctor_get(x_153, 1); +lean_inc(x_169); lean_inc(x_168); -lean_dec_ref(x_166); -x_24 = x_167; -x_25 = x_168; +lean_dec(x_153); +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_168); +lean_ctor_set(x_170, 1, x_169); +return x_170; +} +} +} +} +else +{ +uint8_t x_171; +lean_dec(x_69); +lean_dec_ref(x_51); +lean_dec(x_48); +lean_dec(x_46); +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_171 = !lean_is_exclusive(x_148); +if (x_171 == 0) +{ +return x_148; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_172 = lean_ctor_get(x_148, 0); +x_173 = lean_ctor_get(x_148, 1); +lean_inc(x_173); +lean_inc(x_172); +lean_dec(x_148); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +return x_174; +} +} +} +block_179: +{ +if (x_176 == 0) +{ +x_122 = x_177; +x_123 = lean_box(0); +goto block_144; +} +else +{ +lean_inc_ref(x_51); +lean_inc(x_48); +if (x_5 == 0) +{ +x_145 = lean_box(0); +x_146 = x_177; +x_147 = x_101; +goto block_175; +} +else +{ +x_145 = lean_box(0); +x_146 = x_177; +x_147 = x_5; +goto block_175; +} +} +} +} +else +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_189 = lean_ctor_get(x_44, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_44, 1); +lean_inc(x_190); +lean_dec_ref(x_44); +x_191 = lean_ctor_get(x_41, 2); +lean_inc_ref(x_41); +lean_ctor_set(x_12, 0, x_190); +x_192 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_41, x_189, x_191, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_192) == 0) +{ +lean_object* x_193; lean_object* x_194; uint8_t x_195; uint8_t x_196; uint8_t x_197; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +x_194 = lean_ctor_get(x_192, 1); +lean_inc(x_194); +lean_dec_ref(x_192); +x_195 = 0; +x_196 = lean_unbox(x_193); +lean_dec(x_193); +x_197 = l_Lake_instDecidableEqOutputStatus(x_196, x_195); +if (x_197 == 0) +{ +lean_object* x_198; +lean_dec_ref(x_43); +lean_dec_ref(x_41); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_198 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_194); +lean_dec_ref(x_11); +if (lean_obj_tag(x_198) == 0) +{ +lean_object* x_199; lean_object* x_200; +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +lean_dec_ref(x_198); +x_24 = x_199; +x_25 = x_200; x_26 = lean_box(0); goto block_38; } else { -return x_166; +return x_198; +} +} +else +{ +lean_object* x_201; +x_201 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_41, x_43, x_7, x_8, x_9, x_10, x_11, x_194); +lean_dec_ref(x_41); +if (lean_obj_tag(x_201) == 0) +{ +lean_object* x_202; lean_object* x_203; +x_202 = lean_ctor_get(x_201, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_201, 1); +lean_inc(x_203); +lean_dec_ref(x_201); +x_24 = x_202; +x_25 = x_203; +x_26 = lean_box(0); +goto block_38; +} +else +{ +return x_201; } } } else { -uint8_t x_169; +uint8_t x_204; lean_dec_ref(x_43); lean_dec_ref(x_41); lean_dec_ref(x_11); @@ -18577,30 +16735,30 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_169 = !lean_is_exclusive(x_157); -if (x_169 == 0) +x_204 = !lean_is_exclusive(x_192); +if (x_204 == 0) { -return x_157; +return x_192; } else { -lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_170 = lean_ctor_get(x_157, 0); -x_171 = lean_ctor_get(x_157, 1); -lean_inc(x_171); -lean_inc(x_170); -lean_dec(x_157); -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_170); -lean_ctor_set(x_172, 1, x_171); -return x_172; +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_192, 0); +x_206 = lean_ctor_get(x_192, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_192); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; } } } } else { -uint8_t x_173; +uint8_t x_208; lean_dec_ref(x_43); lean_dec_ref(x_11); lean_dec(x_10); @@ -18610,508 +16768,261 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_173 = !lean_is_exclusive(x_44); -if (x_173 == 0) +x_208 = !lean_is_exclusive(x_44); +if (x_208 == 0) { -lean_object* x_174; -x_174 = lean_ctor_get(x_44, 1); -lean_ctor_set(x_12, 0, x_174); +lean_object* x_209; +x_209 = lean_ctor_get(x_44, 1); +lean_ctor_set(x_12, 0, x_209); lean_ctor_set(x_44, 1, x_12); return x_44; } else { -lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_175 = lean_ctor_get(x_44, 0); -x_176 = lean_ctor_get(x_44, 1); -lean_inc(x_176); -lean_inc(x_175); +lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_210 = lean_ctor_get(x_44, 0); +x_211 = lean_ctor_get(x_44, 1); +lean_inc(x_211); +lean_inc(x_210); lean_dec(x_44); -lean_ctor_set(x_12, 0, x_176); -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_175); -lean_ctor_set(x_177, 1, x_12); -return x_177; +lean_ctor_set(x_12, 0, x_211); +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_12); +return x_212; } } } else { -lean_object* x_178; uint8_t x_179; uint8_t x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; -x_178 = lean_ctor_get(x_12, 0); -x_179 = lean_ctor_get_uint8(x_12, sizeof(void*)*3); -x_180 = lean_ctor_get_uint8(x_12, sizeof(void*)*3 + 1); -x_181 = lean_ctor_get(x_12, 1); -x_182 = lean_ctor_get(x_12, 2); -lean_inc(x_182); -lean_inc(x_181); -lean_inc(x_178); +lean_object* x_213; uint8_t x_214; uint8_t x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; +x_213 = lean_ctor_get(x_12, 0); +x_214 = lean_ctor_get_uint8(x_12, sizeof(void*)*3); +x_215 = lean_ctor_get_uint8(x_12, sizeof(void*)*3 + 1); +x_216 = lean_ctor_get(x_12, 1); +x_217 = lean_ctor_get(x_12, 2); +lean_inc(x_217); +lean_inc(x_216); +lean_inc(x_213); lean_dec(x_12); -x_183 = ((lean_object*)(l_Lake_buildFileUnlessUpToDate_x27___closed__0)); +x_218 = ((lean_object*)(l_Lake_buildFileUnlessUpToDate_x27___closed__0)); lean_inc_ref(x_1); -x_184 = lean_string_append(x_1, x_183); -lean_inc_ref(x_184); -x_185 = l_Lake_readTraceFile(x_184, x_178); -if (lean_obj_tag(x_185) == 0) +x_219 = lean_string_append(x_1, x_218); +lean_inc_ref(x_219); +x_220 = l_Lake_readTraceFile(x_219, x_213); +if (lean_obj_tag(x_220) == 0) { if (lean_obj_tag(x_8) == 1) { -lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint64_t x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_238; uint8_t x_242; uint8_t x_271; uint8_t x_272; -x_186 = lean_ctor_get(x_185, 0); -lean_inc(x_186); -x_187 = lean_ctor_get(x_185, 1); -lean_inc(x_187); -lean_dec_ref(x_185); -x_188 = lean_ctor_get(x_8, 0); -lean_inc(x_188); -x_189 = lean_ctor_get(x_11, 1); -lean_inc_ref(x_181); -x_190 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_190, 0, x_187); -lean_ctor_set(x_190, 1, x_181); -lean_ctor_set(x_190, 2, x_182); -lean_ctor_set_uint8(x_190, sizeof(void*)*3, x_179); -lean_ctor_set_uint8(x_190, sizeof(void*)*3 + 1, x_180); -x_191 = l_Lake_Package_isArtifactCacheEnabled___at___00Lake_buildArtifactUnlessUpToDate_spec__0___redArg(x_188, x_11, x_190); -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_191, 1); -lean_inc(x_193); -lean_dec_ref(x_191); -x_194 = lean_ctor_get(x_189, 2); -x_195 = lean_ctor_get_uint64(x_181, sizeof(void*)*3); -x_196 = lean_ctor_get(x_181, 2); -x_271 = 1; -x_272 = lean_unbox(x_192); -lean_dec(x_192); -if (x_272 == 0) -{ -lean_object* x_273; -lean_inc(x_186); -x_273 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_181, x_186, x_196, x_8, x_9, x_10, x_11, x_193); -if (lean_obj_tag(x_273) == 0) -{ -lean_object* x_274; lean_object* x_275; uint8_t x_276; uint8_t x_277; uint8_t x_278; -x_274 = lean_ctor_get(x_273, 0); -lean_inc(x_274); -x_275 = lean_ctor_get(x_273, 1); -lean_inc(x_275); -lean_dec_ref(x_273); -x_276 = 0; -x_277 = lean_unbox(x_274); -lean_dec(x_274); -x_278 = l_Lake_instDecidableEqOutputStatus(x_277, x_276); -if (x_278 == 0) -{ -lean_object* x_279; -lean_dec(x_186); -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_2); -x_279 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_275); -lean_dec_ref(x_11); -x_238 = x_279; -goto block_241; -} -else -{ -lean_object* x_280; -lean_inc_ref(x_11); -lean_inc_ref(x_184); -lean_inc_ref(x_1); -lean_inc(x_188); -lean_inc_ref(x_194); -x_280 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_195, x_186, x_194, x_188, x_1, x_6, x_184, x_271, x_7, x_8, x_9, x_10, x_11, x_275); -if (lean_obj_tag(x_280) == 0) -{ -lean_object* x_281; -x_281 = lean_ctor_get(x_280, 0); -lean_inc(x_281); -if (lean_obj_tag(x_281) == 1) -{ -lean_object* x_282; lean_object* x_283; -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_282 = lean_ctor_get(x_280, 1); -lean_inc(x_282); -lean_dec_ref(x_280); -x_283 = lean_ctor_get(x_281, 0); -lean_inc(x_283); -lean_dec_ref(x_281); -x_211 = x_283; -x_212 = x_282; -x_213 = lean_box(0); -goto block_237; -} -else -{ -lean_object* x_284; lean_object* x_285; -lean_dec(x_281); -x_284 = lean_ctor_get(x_280, 1); -lean_inc(x_284); -lean_dec_ref(x_280); -x_285 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_181, x_184, x_7, x_8, x_9, x_10, x_11, x_284); -lean_dec_ref(x_181); -x_238 = x_285; -goto block_241; -} -} -else -{ -lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; -lean_dec(x_188); -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_286 = lean_ctor_get(x_280, 0); -lean_inc(x_286); -x_287 = lean_ctor_get(x_280, 1); -lean_inc(x_287); -if (lean_is_exclusive(x_280)) { - lean_ctor_release(x_280, 0); - lean_ctor_release(x_280, 1); - x_288 = x_280; -} else { - lean_dec_ref(x_280); - x_288 = lean_box(0); -} -if (lean_is_scalar(x_288)) { - x_289 = lean_alloc_ctor(1, 2, 0); -} else { - x_289 = x_288; -} -lean_ctor_set(x_289, 0, x_286); -lean_ctor_set(x_289, 1, x_287); -return x_289; -} -} -} -else -{ -lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; -lean_dec(x_188); -lean_dec(x_186); -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_290 = lean_ctor_get(x_273, 0); -lean_inc(x_290); -x_291 = lean_ctor_get(x_273, 1); -lean_inc(x_291); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_292 = x_273; -} else { - lean_dec_ref(x_273); - x_292 = lean_box(0); -} -if (lean_is_scalar(x_292)) { - x_293 = lean_alloc_ctor(1, 2, 0); -} else { - x_293 = x_292; -} -lean_ctor_set(x_293, 0, x_290); -lean_ctor_set(x_293, 1, x_291); -return x_293; -} -} -else -{ -lean_inc_ref(x_194); -if (x_5 == 0) -{ -lean_object* x_294; uint8_t x_295; -x_294 = lean_ctor_get(x_188, 6); -x_295 = lean_ctor_get_uint8(x_294, sizeof(void*)*26 + 4); -x_242 = x_295; -goto block_270; -} -else -{ -x_242 = x_271; -goto block_270; -} -} -block_210: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; -lean_dec_ref(x_203); -x_207 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_207, 0, x_206); -x_208 = l_Lake_CacheMap_insertCore(x_195, x_207, x_205); -x_209 = lean_st_ref_set(x_201, x_208); -lean_dec(x_201); -x_14 = x_198; -x_15 = x_200; -x_16 = x_204; -x_17 = x_202; -x_18 = x_199; -x_19 = lean_box(0); -goto block_23; -} -block_237: -{ -lean_object* x_214; -x_214 = lean_ctor_get(x_188, 23); -lean_inc(x_214); -lean_dec(x_188); -if (lean_obj_tag(x_214) == 1) -{ -lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; uint8_t x_219; uint8_t x_220; lean_object* x_221; lean_object* x_222; uint64_t x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -lean_dec_ref(x_214); -x_216 = lean_st_ref_take(x_215); -x_217 = lean_ctor_get(x_211, 0); -x_218 = lean_ctor_get(x_212, 0); -lean_inc_ref(x_218); -x_219 = lean_ctor_get_uint8(x_212, sizeof(void*)*3); -x_220 = lean_ctor_get_uint8(x_212, sizeof(void*)*3 + 1); -x_221 = lean_ctor_get(x_212, 1); -lean_inc_ref(x_221); -x_222 = lean_ctor_get(x_212, 2); +lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint64_t x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; uint8_t x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_272; lean_object* x_276; uint8_t x_277; uint8_t x_278; lean_object* x_279; lean_object* x_280; uint8_t x_292; uint8_t x_293; lean_object* x_294; lean_object* x_295; lean_object* x_298; lean_object* x_299; lean_object* x_321; lean_object* x_322; uint8_t x_323; uint8_t x_352; lean_object* x_353; lean_object* x_354; lean_object* x_356; +x_221 = lean_ctor_get(x_11, 1); +x_222 = lean_ctor_get(x_220, 0); lean_inc(x_222); -lean_dec_ref(x_212); -x_223 = lean_ctor_get_uint64(x_217, sizeof(void*)*1); -x_224 = lean_ctor_get(x_217, 0); -x_225 = lean_string_utf8_byte_size(x_224); -x_226 = lean_unsigned_to_nat(0u); -x_227 = lean_nat_dec_eq(x_225, x_226); -if (x_227 == 0) +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec_ref(x_220); +x_224 = lean_ctor_get(x_8, 0); +x_225 = lean_ctor_get(x_221, 0); +x_226 = lean_ctor_get(x_221, 1); +x_227 = lean_ctor_get(x_221, 2); +x_228 = lean_ctor_get_uint64(x_216, sizeof(void*)*3); +x_229 = lean_ctor_get(x_216, 2); +x_244 = lean_ctor_get(x_224, 6); +x_245 = lean_ctor_get(x_224, 23); +lean_inc(x_245); +x_276 = lean_ctor_get(x_244, 25); +x_277 = lean_ctor_get_uint8(x_244, sizeof(void*)*26 + 4); +lean_inc_ref(x_216); +x_356 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_356, 0, x_223); +lean_ctor_set(x_356, 1, x_216); +lean_ctor_set(x_356, 2, x_217); +lean_ctor_set_uint8(x_356, sizeof(void*)*3, x_214); +lean_ctor_set_uint8(x_356, sizeof(void*)*3 + 1, x_215); +if (lean_obj_tag(x_276) == 0) { -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_228 = l_Lake_Hash_hex(x_223); -x_229 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); -x_230 = lean_string_append(x_228, x_229); -x_231 = lean_string_append(x_230, x_224); -x_197 = lean_box(0); -x_198 = x_211; -x_199 = x_222; -x_200 = x_218; -x_201 = x_215; -x_202 = x_220; -x_203 = x_221; -x_204 = x_219; -x_205 = x_216; -x_206 = x_231; -goto block_210; +lean_object* x_357; +x_357 = lean_ctor_get(x_226, 6); +if (lean_obj_tag(x_357) == 0) +{ +lean_object* x_358; lean_object* x_359; +x_358 = lean_ctor_get(x_225, 6); +x_359 = lean_ctor_get(x_358, 25); +if (lean_obj_tag(x_359) == 0) +{ +x_298 = x_356; +x_299 = lean_box(0); +goto block_320; } else { -lean_object* x_232; -x_232 = l_Lake_Hash_hex(x_223); -x_197 = lean_box(0); -x_198 = x_211; -x_199 = x_222; -x_200 = x_218; -x_201 = x_215; -x_202 = x_220; -x_203 = x_221; -x_204 = x_219; -x_205 = x_216; -x_206 = x_232; -goto block_210; +lean_object* x_360; uint8_t x_361; +x_360 = lean_ctor_get(x_359, 0); +x_361 = lean_unbox(x_360); +x_352 = x_361; +x_353 = x_356; +x_354 = lean_box(0); +goto block_355; } } else { -lean_object* x_233; uint8_t x_234; uint8_t x_235; lean_object* x_236; -lean_dec(x_214); -x_233 = lean_ctor_get(x_212, 0); -lean_inc_ref(x_233); -x_234 = lean_ctor_get_uint8(x_212, sizeof(void*)*3); -x_235 = lean_ctor_get_uint8(x_212, sizeof(void*)*3 + 1); -x_236 = lean_ctor_get(x_212, 2); -lean_inc(x_236); -lean_dec_ref(x_212); -x_14 = x_211; -x_15 = x_233; -x_16 = x_234; +lean_object* x_362; uint8_t x_363; +x_362 = lean_ctor_get(x_357, 0); +x_363 = lean_unbox(x_362); +x_352 = x_363; +x_353 = x_356; +x_354 = lean_box(0); +goto block_355; +} +} +else +{ +lean_object* x_364; uint8_t x_365; +x_364 = lean_ctor_get(x_276, 0); +x_365 = lean_unbox(x_364); +x_352 = x_365; +x_353 = x_356; +x_354 = lean_box(0); +goto block_355; +} +block_243: +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +lean_dec_ref(x_231); +x_240 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_240, 0, x_239); +x_241 = l_Lake_CacheMap_insertCore(x_228, x_240, x_233); +x_242 = lean_st_ref_set(x_237, x_241); +lean_dec(x_237); +x_14 = x_236; +x_15 = x_234; +x_16 = x_232; x_17 = x_235; -x_18 = x_236; +x_18 = x_230; x_19 = lean_box(0); goto block_23; } -} -block_241: +block_271: { -if (lean_obj_tag(x_238) == 0) +if (lean_obj_tag(x_245) == 1) { -lean_object* x_239; lean_object* x_240; -x_239 = lean_ctor_get(x_238, 0); -lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -lean_dec_ref(x_238); -x_211 = x_239; -x_212 = x_240; -x_213 = lean_box(0); -goto block_237; -} -else -{ -lean_dec(x_188); -return x_238; -} -} -block_270: -{ -lean_object* x_243; -lean_inc_ref(x_11); -lean_inc_ref(x_184); -lean_inc_ref(x_1); -lean_inc(x_188); -lean_inc_ref(x_194); -lean_inc(x_186); -x_243 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_195, x_186, x_194, x_188, x_1, x_6, x_184, x_242, x_7, x_8, x_9, x_10, x_11, x_193); -if (lean_obj_tag(x_243) == 0) -{ -lean_object* x_244; -x_244 = lean_ctor_get(x_243, 0); -lean_inc(x_244); -if (lean_obj_tag(x_244) == 1) -{ -lean_object* x_245; lean_object* x_246; -lean_dec_ref(x_194); -lean_dec(x_186); -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_245 = lean_ctor_get(x_243, 1); -lean_inc(x_245); -lean_dec_ref(x_243); -x_246 = lean_ctor_get(x_244, 0); -lean_inc(x_246); -lean_dec_ref(x_244); -x_211 = x_246; -x_212 = x_245; -x_213 = lean_box(0); -goto block_237; -} -else -{ -lean_object* x_247; lean_object* x_248; -lean_dec(x_244); -x_247 = lean_ctor_get(x_243, 1); -lean_inc(x_247); -lean_dec_ref(x_243); -x_248 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_181, x_186, x_196, x_8, x_9, x_10, x_11, x_247); -if (lean_obj_tag(x_248) == 0) -{ -lean_object* x_249; lean_object* x_250; uint8_t x_251; uint8_t x_252; uint8_t x_253; -x_249 = lean_ctor_get(x_248, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; uint8_t x_253; uint8_t x_254; lean_object* x_255; lean_object* x_256; uint64_t x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; +x_249 = lean_ctor_get(x_245, 0); lean_inc(x_249); -x_250 = lean_ctor_get(x_248, 1); -lean_inc(x_250); -lean_dec_ref(x_248); -x_251 = 0; -x_252 = lean_unbox(x_249); -x_253 = l_Lake_instDecidableEqOutputStatus(x_252, x_251); -if (x_253 == 0) -{ -lean_object* x_254; uint8_t x_255; lean_object* x_256; -lean_dec_ref(x_184); -lean_dec_ref(x_181); -lean_dec_ref(x_2); -x_254 = lean_box(0); -x_255 = lean_unbox(x_249); -lean_dec(x_249); -lean_inc(x_188); -x_256 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_255, x_1, x_4, x_3, x_6, x_242, x_188, x_194, x_195, x_254, x_7, x_8, x_9, x_10, x_11, x_250); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -x_238 = x_256; -goto block_241; -} -else -{ -lean_object* x_257; -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_4); -lean_inc_ref(x_1); -x_257 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_181, x_184, x_7, x_8, x_9, x_10, x_11, x_250); -lean_dec_ref(x_181); -if (lean_obj_tag(x_257) == 0) -{ -lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_object* x_261; -x_258 = lean_ctor_get(x_257, 1); -lean_inc(x_258); -lean_dec_ref(x_257); -x_259 = lean_box(0); -x_260 = lean_unbox(x_249); -lean_dec(x_249); -lean_inc(x_188); -x_261 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_260, x_1, x_4, x_3, x_6, x_242, x_188, x_194, x_195, x_259, x_7, x_8, x_9, x_10, x_11, x_258); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -x_238 = x_261; -goto block_241; -} -else -{ -lean_dec(x_249); -lean_dec_ref(x_194); -lean_dec(x_188); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_257; -} -} -} -else +lean_dec_ref(x_245); +x_250 = lean_st_ref_take(x_249); +x_251 = lean_ctor_get(x_246, 0); +x_252 = lean_ctor_get(x_247, 0); +lean_inc_ref(x_252); +x_253 = lean_ctor_get_uint8(x_247, sizeof(void*)*3); +x_254 = lean_ctor_get_uint8(x_247, sizeof(void*)*3 + 1); +x_255 = lean_ctor_get(x_247, 1); +lean_inc_ref(x_255); +x_256 = lean_ctor_get(x_247, 2); +lean_inc(x_256); +lean_dec_ref(x_247); +x_257 = lean_ctor_get_uint64(x_251, sizeof(void*)*1); +x_258 = lean_ctor_get(x_251, 0); +x_259 = lean_string_utf8_byte_size(x_258); +x_260 = lean_unsigned_to_nat(0u); +x_261 = lean_nat_dec_eq(x_259, x_260); +if (x_261 == 0) { lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; -lean_dec_ref(x_194); -lean_dec(x_188); -lean_dec_ref(x_184); -lean_dec_ref(x_181); +x_262 = l_Lake_Hash_hex(x_257); +x_263 = ((lean_object*)(l_Lake_instToOutputJsonArtifact___lam__0___closed__0)); +x_264 = lean_string_append(x_262, x_263); +x_265 = lean_string_append(x_264, x_258); +x_230 = x_256; +x_231 = x_255; +x_232 = x_253; +x_233 = x_250; +x_234 = x_252; +x_235 = x_254; +x_236 = x_246; +x_237 = x_249; +x_238 = lean_box(0); +x_239 = x_265; +goto block_243; +} +else +{ +lean_object* x_266; +x_266 = l_Lake_Hash_hex(x_257); +x_230 = x_256; +x_231 = x_255; +x_232 = x_253; +x_233 = x_250; +x_234 = x_252; +x_235 = x_254; +x_236 = x_246; +x_237 = x_249; +x_238 = lean_box(0); +x_239 = x_266; +goto block_243; +} +} +else +{ +lean_object* x_267; uint8_t x_268; uint8_t x_269; lean_object* x_270; +lean_dec(x_245); +x_267 = lean_ctor_get(x_247, 0); +lean_inc_ref(x_267); +x_268 = lean_ctor_get_uint8(x_247, sizeof(void*)*3); +x_269 = lean_ctor_get_uint8(x_247, sizeof(void*)*3 + 1); +x_270 = lean_ctor_get(x_247, 2); +lean_inc(x_270); +lean_dec_ref(x_247); +x_14 = x_246; +x_15 = x_267; +x_16 = x_268; +x_17 = x_269; +x_18 = x_270; +x_19 = lean_box(0); +goto block_23; +} +} +block_275: +{ +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; lean_object* x_274; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_272, 1); +lean_inc(x_274); +lean_dec_ref(x_272); +x_246 = x_273; +x_247 = x_274; +x_248 = lean_box(0); +goto block_271; +} +else +{ +lean_dec(x_245); +return x_272; +} +} +block_291: +{ +lean_object* x_281; +lean_inc_ref(x_11); +lean_inc_ref(x_219); +lean_inc_ref(x_1); +lean_inc(x_224); +lean_inc_ref(x_227); +x_281 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_228, x_222, x_227, x_224, x_1, x_6, x_219, x_278, x_7, x_8, x_9, x_10, x_11, x_279); +if (lean_obj_tag(x_281) == 0) +{ +lean_object* x_282; +x_282 = lean_ctor_get(x_281, 0); +lean_inc(x_282); +if (lean_obj_tag(x_282) == 1) +{ +lean_object* x_283; lean_object* x_284; +lean_dec_ref(x_219); +lean_dec_ref(x_216); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); @@ -19120,37 +17031,36 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_262 = lean_ctor_get(x_248, 0); -lean_inc(x_262); -x_263 = lean_ctor_get(x_248, 1); -lean_inc(x_263); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_264 = x_248; -} else { - lean_dec_ref(x_248); - x_264 = lean_box(0); -} -if (lean_is_scalar(x_264)) { - x_265 = lean_alloc_ctor(1, 2, 0); -} else { - x_265 = x_264; -} -lean_ctor_set(x_265, 0, x_262); -lean_ctor_set(x_265, 1, x_263); -return x_265; +x_283 = lean_ctor_get(x_281, 1); +lean_inc(x_283); +lean_dec_ref(x_281); +x_284 = lean_ctor_get(x_282, 0); +lean_inc(x_284); +lean_dec_ref(x_282); +x_246 = x_284; +x_247 = x_283; +x_248 = lean_box(0); +goto block_271; } +else +{ +lean_object* x_285; lean_object* x_286; +lean_dec(x_282); +x_285 = lean_ctor_get(x_281, 1); +lean_inc(x_285); +lean_dec_ref(x_281); +x_286 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_216, x_219, x_7, x_8, x_9, x_10, x_11, x_285); +lean_dec_ref(x_216); +x_272 = x_286; +goto block_275; } } else { -lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; -lean_dec_ref(x_194); -lean_dec(x_188); -lean_dec(x_186); -lean_dec_ref(x_184); -lean_dec_ref(x_181); +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +lean_dec(x_245); +lean_dec_ref(x_219); +lean_dec_ref(x_216); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); @@ -19159,46 +17069,52 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_266 = lean_ctor_get(x_243, 0); -lean_inc(x_266); -x_267 = lean_ctor_get(x_243, 1); -lean_inc(x_267); -if (lean_is_exclusive(x_243)) { - lean_ctor_release(x_243, 0); - lean_ctor_release(x_243, 1); - x_268 = x_243; +x_287 = lean_ctor_get(x_281, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_281, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + lean_ctor_release(x_281, 1); + x_289 = x_281; } else { - lean_dec_ref(x_243); - x_268 = lean_box(0); + lean_dec_ref(x_281); + x_289 = lean_box(0); } -if (lean_is_scalar(x_268)) { - x_269 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(1, 2, 0); } else { - x_269 = x_268; + x_290 = x_289; } -lean_ctor_set(x_269, 0, x_266); -lean_ctor_set(x_269, 1, x_267); -return x_269; +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } } +block_297: +{ +if (x_293 == 0) +{ +lean_object* x_296; +lean_dec(x_222); +x_296 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_216, x_219, x_7, x_8, x_9, x_10, x_11, x_294); +lean_dec_ref(x_216); +x_272 = x_296; +goto block_275; } else { -lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_296 = lean_ctor_get(x_185, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_185, 1); -lean_inc(x_297); -lean_dec_ref(x_185); -x_298 = lean_ctor_get(x_181, 2); -lean_inc_ref(x_181); -x_299 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_299, 0, x_297); -lean_ctor_set(x_299, 1, x_181); -lean_ctor_set(x_299, 2, x_182); -lean_ctor_set_uint8(x_299, sizeof(void*)*3, x_179); -lean_ctor_set_uint8(x_299, sizeof(void*)*3 + 1, x_180); -x_300 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_181, x_296, x_298, x_8, x_9, x_10, x_11, x_299); +x_278 = x_292; +x_279 = x_294; +x_280 = lean_box(0); +goto block_291; +} +} +block_320: +{ +lean_object* x_300; +lean_inc(x_222); +x_300 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_216, x_222, x_229, x_8, x_9, x_10, x_11, x_298); if (lean_obj_tag(x_300) == 0) { lean_object* x_301; lean_object* x_302; uint8_t x_303; uint8_t x_304; uint8_t x_305; @@ -19214,97 +17130,430 @@ x_305 = l_Lake_instDecidableEqOutputStatus(x_304, x_303); if (x_305 == 0) { lean_object* x_306; -lean_dec_ref(x_184); -lean_dec_ref(x_181); +lean_dec(x_222); +lean_dec_ref(x_219); +lean_dec_ref(x_216); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_2); x_306 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_302); lean_dec_ref(x_11); -if (lean_obj_tag(x_306) == 0) -{ -lean_object* x_307; lean_object* x_308; -x_307 = lean_ctor_get(x_306, 0); -lean_inc(x_307); -x_308 = lean_ctor_get(x_306, 1); -lean_inc(x_308); -lean_dec_ref(x_306); -x_24 = x_307; -x_25 = x_308; -x_26 = lean_box(0); -goto block_38; +x_272 = x_306; +goto block_275; } else { -return x_306; -} -} -else +if (lean_obj_tag(x_276) == 0) { -lean_object* x_309; -x_309 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_181, x_184, x_7, x_8, x_9, x_10, x_11, x_302); -lean_dec_ref(x_181); +lean_object* x_307; +x_307 = lean_ctor_get(x_226, 6); +if (lean_obj_tag(x_307) == 0) +{ +lean_object* x_308; lean_object* x_309; +x_308 = lean_ctor_get(x_225, 6); +x_309 = lean_ctor_get(x_308, 25); if (lean_obj_tag(x_309) == 0) { -lean_object* x_310; lean_object* x_311; +x_278 = x_305; +x_279 = x_302; +x_280 = lean_box(0); +goto block_291; +} +else +{ +lean_object* x_310; uint8_t x_311; x_310 = lean_ctor_get(x_309, 0); -lean_inc(x_310); -x_311 = lean_ctor_get(x_309, 1); -lean_inc(x_311); -lean_dec_ref(x_309); -x_24 = x_310; -x_25 = x_311; -x_26 = lean_box(0); -goto block_38; +x_311 = lean_unbox(x_310); +x_292 = x_305; +x_293 = x_311; +x_294 = x_302; +x_295 = lean_box(0); +goto block_297; +} } else { -return x_309; +lean_object* x_312; uint8_t x_313; +x_312 = lean_ctor_get(x_307, 0); +x_313 = lean_unbox(x_312); +x_292 = x_305; +x_293 = x_313; +x_294 = x_302; +x_295 = lean_box(0); +goto block_297; +} +} +else +{ +lean_object* x_314; uint8_t x_315; +x_314 = lean_ctor_get(x_276, 0); +x_315 = lean_unbox(x_314); +x_292 = x_305; +x_293 = x_315; +x_294 = x_302; +x_295 = lean_box(0); +goto block_297; } } } else { -lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; -lean_dec_ref(x_184); -lean_dec_ref(x_181); +lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_245); +lean_dec(x_222); +lean_dec_ref(x_219); +lean_dec_ref(x_216); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_312 = lean_ctor_get(x_300, 0); -lean_inc(x_312); -x_313 = lean_ctor_get(x_300, 1); -lean_inc(x_313); +x_316 = lean_ctor_get(x_300, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_300, 1); +lean_inc(x_317); if (lean_is_exclusive(x_300)) { lean_ctor_release(x_300, 0); lean_ctor_release(x_300, 1); - x_314 = x_300; + x_318 = x_300; } else { lean_dec_ref(x_300); - x_314 = lean_box(0); + x_318 = lean_box(0); } -if (lean_is_scalar(x_314)) { - x_315 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_318)) { + x_319 = lean_alloc_ctor(1, 2, 0); } else { - x_315 = x_314; + x_319 = x_318; } -lean_ctor_set(x_315, 0, x_312); -lean_ctor_set(x_315, 1, x_313); -return x_315; +lean_ctor_set(x_319, 0, x_316); +lean_ctor_set(x_319, 1, x_317); +return x_319; +} +} +block_351: +{ +lean_object* x_324; +lean_inc_ref(x_11); +lean_inc_ref(x_219); +lean_inc_ref(x_1); +lean_inc(x_224); +lean_inc_ref(x_227); +lean_inc(x_222); +x_324 = l_Lake_buildArtifactUnlessUpToDate___lam__0(x_228, x_222, x_227, x_224, x_1, x_6, x_219, x_323, x_7, x_8, x_9, x_10, x_11, x_322); +if (lean_obj_tag(x_324) == 0) +{ +lean_object* x_325; +x_325 = lean_ctor_get(x_324, 0); +lean_inc(x_325); +if (lean_obj_tag(x_325) == 1) +{ +lean_object* x_326; lean_object* x_327; +lean_dec_ref(x_227); +lean_dec(x_224); +lean_dec(x_222); +lean_dec_ref(x_219); +lean_dec_ref(x_216); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_326 = lean_ctor_get(x_324, 1); +lean_inc(x_326); +lean_dec_ref(x_324); +x_327 = lean_ctor_get(x_325, 0); +lean_inc(x_327); +lean_dec_ref(x_325); +x_246 = x_327; +x_247 = x_326; +x_248 = lean_box(0); +goto block_271; +} +else +{ +lean_object* x_328; lean_object* x_329; +lean_dec(x_325); +x_328 = lean_ctor_get(x_324, 1); +lean_inc(x_328); +lean_dec_ref(x_324); +x_329 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_216, x_222, x_229, x_8, x_9, x_10, x_11, x_328); +if (lean_obj_tag(x_329) == 0) +{ +lean_object* x_330; lean_object* x_331; uint8_t x_332; uint8_t x_333; uint8_t x_334; +x_330 = lean_ctor_get(x_329, 0); +lean_inc(x_330); +x_331 = lean_ctor_get(x_329, 1); +lean_inc(x_331); +lean_dec_ref(x_329); +x_332 = 0; +x_333 = lean_unbox(x_330); +x_334 = l_Lake_instDecidableEqOutputStatus(x_333, x_332); +if (x_334 == 0) +{ +lean_object* x_335; uint8_t x_336; lean_object* x_337; +lean_dec_ref(x_219); +lean_dec_ref(x_216); +lean_dec_ref(x_2); +x_335 = lean_box(0); +x_336 = lean_unbox(x_330); +lean_dec(x_330); +x_337 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_336, x_1, x_4, x_3, x_6, x_323, x_224, x_227, x_228, x_335, x_7, x_8, x_9, x_10, x_11, x_331); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +x_272 = x_337; +goto block_275; +} +else +{ +lean_object* x_338; +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_4); +lean_inc_ref(x_1); +x_338 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_216, x_219, x_7, x_8, x_9, x_10, x_11, x_331); +lean_dec_ref(x_216); +if (lean_obj_tag(x_338) == 0) +{ +lean_object* x_339; lean_object* x_340; uint8_t x_341; lean_object* x_342; +x_339 = lean_ctor_get(x_338, 1); +lean_inc(x_339); +lean_dec_ref(x_338); +x_340 = lean_box(0); +x_341 = lean_unbox(x_330); +lean_dec(x_330); +x_342 = l_Lake_buildArtifactUnlessUpToDate___lam__1(x_341, x_1, x_4, x_3, x_6, x_323, x_224, x_227, x_228, x_340, x_7, x_8, x_9, x_10, x_11, x_339); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +x_272 = x_342; +goto block_275; +} +else +{ +lean_dec(x_330); +lean_dec(x_245); +lean_dec_ref(x_227); +lean_dec(x_224); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +return x_338; } } } else { -lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -lean_dec_ref(x_184); +lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; +lean_dec(x_245); +lean_dec_ref(x_227); +lean_dec(x_224); +lean_dec_ref(x_219); +lean_dec_ref(x_216); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_343 = lean_ctor_get(x_329, 0); +lean_inc(x_343); +x_344 = lean_ctor_get(x_329, 1); +lean_inc(x_344); +if (lean_is_exclusive(x_329)) { + lean_ctor_release(x_329, 0); + lean_ctor_release(x_329, 1); + x_345 = x_329; +} else { + lean_dec_ref(x_329); + x_345 = lean_box(0); +} +if (lean_is_scalar(x_345)) { + x_346 = lean_alloc_ctor(1, 2, 0); +} else { + x_346 = x_345; +} +lean_ctor_set(x_346, 0, x_343); +lean_ctor_set(x_346, 1, x_344); +return x_346; +} +} +} +else +{ +lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +lean_dec(x_245); +lean_dec_ref(x_227); +lean_dec(x_224); +lean_dec(x_222); +lean_dec_ref(x_219); +lean_dec_ref(x_216); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_347 = lean_ctor_get(x_324, 0); +lean_inc(x_347); +x_348 = lean_ctor_get(x_324, 1); +lean_inc(x_348); +if (lean_is_exclusive(x_324)) { + lean_ctor_release(x_324, 0); + lean_ctor_release(x_324, 1); + x_349 = x_324; +} else { + lean_dec_ref(x_324); + x_349 = lean_box(0); +} +if (lean_is_scalar(x_349)) { + x_350 = lean_alloc_ctor(1, 2, 0); +} else { + x_350 = x_349; +} +lean_ctor_set(x_350, 0, x_347); +lean_ctor_set(x_350, 1, x_348); +return x_350; +} +} +block_355: +{ +if (x_352 == 0) +{ +x_298 = x_353; +x_299 = lean_box(0); +goto block_320; +} +else +{ +lean_inc_ref(x_227); +lean_inc(x_224); +if (x_5 == 0) +{ +x_321 = lean_box(0); +x_322 = x_353; +x_323 = x_277; +goto block_351; +} +else +{ +x_321 = lean_box(0); +x_322 = x_353; +x_323 = x_5; +goto block_351; +} +} +} +} +else +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; +x_366 = lean_ctor_get(x_220, 0); +lean_inc(x_366); +x_367 = lean_ctor_get(x_220, 1); +lean_inc(x_367); +lean_dec_ref(x_220); +x_368 = lean_ctor_get(x_216, 2); +lean_inc_ref(x_216); +x_369 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_369, 0, x_367); +lean_ctor_set(x_369, 1, x_216); +lean_ctor_set(x_369, 2, x_217); +lean_ctor_set_uint8(x_369, sizeof(void*)*3, x_214); +lean_ctor_set_uint8(x_369, sizeof(void*)*3 + 1, x_215); +x_370 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00Lake_buildFileUnlessUpToDate_x27_spec__0(x_7, x_1, x_216, x_366, x_368, x_8, x_9, x_10, x_11, x_369); +if (lean_obj_tag(x_370) == 0) +{ +lean_object* x_371; lean_object* x_372; uint8_t x_373; uint8_t x_374; uint8_t x_375; +x_371 = lean_ctor_get(x_370, 0); +lean_inc(x_371); +x_372 = lean_ctor_get(x_370, 1); +lean_inc(x_372); +lean_dec_ref(x_370); +x_373 = 0; +x_374 = lean_unbox(x_371); +lean_dec(x_371); +x_375 = l_Lake_instDecidableEqOutputStatus(x_374, x_373); +if (x_375 == 0) +{ +lean_object* x_376; +lean_dec_ref(x_219); +lean_dec_ref(x_216); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_376 = l_Lake_computeArtifact___redArg(x_1, x_4, x_3, x_11, x_372); +lean_dec_ref(x_11); +if (lean_obj_tag(x_376) == 0) +{ +lean_object* x_377; lean_object* x_378; +x_377 = lean_ctor_get(x_376, 0); +lean_inc(x_377); +x_378 = lean_ctor_get(x_376, 1); +lean_inc(x_378); +lean_dec_ref(x_376); +x_24 = x_377; +x_25 = x_378; +x_26 = lean_box(0); +goto block_38; +} +else +{ +return x_376; +} +} +else +{ +lean_object* x_379; +x_379 = l___private_Lake_Build_Common_0__Lake_buildArtifactUnlessUpToDate_doBuild(x_1, x_2, x_3, x_4, x_216, x_219, x_7, x_8, x_9, x_10, x_11, x_372); +lean_dec_ref(x_216); +if (lean_obj_tag(x_379) == 0) +{ +lean_object* x_380; lean_object* x_381; +x_380 = lean_ctor_get(x_379, 0); +lean_inc(x_380); +x_381 = lean_ctor_get(x_379, 1); +lean_inc(x_381); +lean_dec_ref(x_379); +x_24 = x_380; +x_25 = x_381; +x_26 = lean_box(0); +goto block_38; +} +else +{ +return x_379; +} +} +} +else +{ +lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; +lean_dec_ref(x_219); +lean_dec_ref(x_216); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_9); @@ -19313,32 +17562,67 @@ lean_dec_ref(x_7); lean_dec_ref(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_316 = lean_ctor_get(x_185, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_185, 1); -lean_inc(x_317); -if (lean_is_exclusive(x_185)) { - lean_ctor_release(x_185, 0); - lean_ctor_release(x_185, 1); - x_318 = x_185; +x_382 = lean_ctor_get(x_370, 0); +lean_inc(x_382); +x_383 = lean_ctor_get(x_370, 1); +lean_inc(x_383); +if (lean_is_exclusive(x_370)) { + lean_ctor_release(x_370, 0); + lean_ctor_release(x_370, 1); + x_384 = x_370; } else { - lean_dec_ref(x_185); - x_318 = lean_box(0); + lean_dec_ref(x_370); + x_384 = lean_box(0); } -x_319 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_181); -lean_ctor_set(x_319, 2, x_182); -lean_ctor_set_uint8(x_319, sizeof(void*)*3, x_179); -lean_ctor_set_uint8(x_319, sizeof(void*)*3 + 1, x_180); -if (lean_is_scalar(x_318)) { - x_320 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_384)) { + x_385 = lean_alloc_ctor(1, 2, 0); } else { - x_320 = x_318; + x_385 = x_384; } -lean_ctor_set(x_320, 0, x_316); -lean_ctor_set(x_320, 1, x_319); -return x_320; +lean_ctor_set(x_385, 0, x_382); +lean_ctor_set(x_385, 1, x_383); +return x_385; +} +} +} +else +{ +lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; +lean_dec_ref(x_219); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_386 = lean_ctor_get(x_220, 0); +lean_inc(x_386); +x_387 = lean_ctor_get(x_220, 1); +lean_inc(x_387); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + lean_ctor_release(x_220, 1); + x_388 = x_220; +} else { + lean_dec_ref(x_220); + x_388 = lean_box(0); +} +x_389 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_389, 0, x_387); +lean_ctor_set(x_389, 1, x_216); +lean_ctor_set(x_389, 2, x_217); +lean_ctor_set_uint8(x_389, sizeof(void*)*3, x_214); +lean_ctor_set_uint8(x_389, sizeof(void*)*3 + 1, x_215); +if (lean_is_scalar(x_388)) { + x_390 = lean_alloc_ctor(1, 2, 0); +} else { + x_390 = x_388; +} +lean_ctor_set(x_390, 0, x_386); +lean_ctor_set(x_390, 1, x_389); +return x_390; } } block_23: @@ -20481,29 +18765,29 @@ x_47 = lean_nat_dec_le(x_39, x_46); if (x_47 == 0) { lean_inc(x_46); -x_24 = x_43; -x_25 = x_40; -x_26 = lean_box(0); -x_27 = x_41; -x_28 = x_46; +x_24 = x_41; +x_25 = lean_box(0); +x_26 = x_43; +x_27 = x_46; +x_28 = x_40; x_29 = x_46; goto block_31; } else { -x_24 = x_43; -x_25 = x_40; -x_26 = lean_box(0); -x_27 = x_41; -x_28 = x_46; +x_24 = x_41; +x_25 = lean_box(0); +x_26 = x_43; +x_27 = x_46; +x_28 = x_40; x_29 = x_39; goto block_31; } } else { -x_11 = lean_box(0); -x_12 = x_41; +x_11 = x_41; +x_12 = lean_box(0); x_13 = x_40; goto block_15; } @@ -20593,44 +18877,44 @@ block_15: lean_object* x_14; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_12); +lean_ctor_set(x_14, 1, x_11); return x_14; } block_23: { lean_object* x_22; -lean_dec(x_16); -x_22 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lake_inputDir_spec__1___redArg(x_18, x_17, x_21); +lean_dec(x_18); +x_22 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lake_inputDir_spec__1___redArg(x_20, x_19, x_21); lean_dec(x_21); -x_11 = lean_box(0); -x_12 = x_20; +x_11 = x_16; +x_12 = lean_box(0); x_13 = x_22; goto block_15; } block_31: { uint8_t x_30; -x_30 = lean_nat_dec_le(x_29, x_28); +x_30 = lean_nat_dec_le(x_29, x_27); if (x_30 == 0) { -lean_dec(x_28); +lean_dec(x_27); lean_inc(x_29); x_16 = x_24; -x_17 = x_29; -x_18 = x_25; -x_19 = lean_box(0); -x_20 = x_27; +x_17 = lean_box(0); +x_18 = x_26; +x_19 = x_29; +x_20 = x_28; x_21 = x_29; goto block_23; } else { x_16 = x_24; -x_17 = x_29; -x_18 = x_25; -x_19 = lean_box(0); -x_20 = x_27; -x_21 = x_28; +x_17 = lean_box(0); +x_18 = x_26; +x_19 = x_29; +x_20 = x_28; +x_21 = x_27; goto block_23; } } @@ -22538,9 +20822,9 @@ goto block_52; block_45: { lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_nat_add(x_39, x_41); +x_42 = lean_nat_add(x_40, x_41); lean_dec(x_41); -lean_dec(x_39); +lean_dec(x_40); if (lean_is_scalar(x_36)) { x_43 = lean_alloc_ctor(0, 5, 0); } else { @@ -22559,7 +20843,7 @@ if (lean_is_scalar(x_26)) { lean_ctor_set(x_44, 0, x_38); lean_ctor_set(x_44, 1, x_28); lean_ctor_set(x_44, 2, x_29); -lean_ctor_set(x_44, 3, x_40); +lean_ctor_set(x_44, 3, x_39); lean_ctor_set(x_44, 4, x_43); return x_44; } @@ -22585,8 +20869,8 @@ if (lean_obj_tag(x_31) == 0) lean_object* x_50; x_50 = lean_ctor_get(x_31, 0); lean_inc(x_50); -x_39 = x_49; -x_40 = x_48; +x_39 = x_48; +x_40 = x_49; x_41 = x_50; goto block_45; } @@ -22594,8 +20878,8 @@ else { lean_object* x_51; x_51 = lean_unsigned_to_nat(0u); -x_39 = x_49; -x_40 = x_48; +x_39 = x_48; +x_40 = x_49; x_41 = x_51; goto block_45; } diff --git a/stage0/stdlib/Lake/Build/ExternLib.c b/stage0/stdlib/Lake/Build/ExternLib.c index 9444f9e49a..aa5d9e6d48 100644 --- a/stage0/stdlib/Lake/Build/ExternLib.c +++ b/stage0/stdlib/Lake/Build/ExternLib.c @@ -2047,9 +2047,9 @@ goto block_52; block_44: { lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_nat_add(x_39, x_40); +x_41 = lean_nat_add(x_38, x_40); lean_dec(x_40); -lean_dec(x_39); +lean_dec(x_38); if (lean_is_scalar(x_35)) { x_42 = lean_alloc_ctor(0, 5, 0); } else { @@ -2068,7 +2068,7 @@ if (lean_is_scalar(x_25)) { lean_ctor_set(x_43, 0, x_37); lean_ctor_set(x_43, 1, x_28); lean_ctor_set(x_43, 2, x_29); -lean_ctor_set(x_43, 3, x_38); +lean_ctor_set(x_43, 3, x_39); lean_ctor_set(x_43, 4, x_42); return x_43; } @@ -2094,8 +2094,8 @@ if (lean_obj_tag(x_31) == 0) lean_object* x_50; x_50 = lean_ctor_get(x_31, 0); lean_inc(x_50); -x_38 = x_48; -x_39 = x_49; +x_38 = x_49; +x_39 = x_48; x_40 = x_50; goto block_44; } @@ -2103,8 +2103,8 @@ else { lean_object* x_51; x_51 = lean_unsigned_to_nat(0u); -x_38 = x_48; -x_39 = x_49; +x_38 = x_49; +x_39 = x_48; x_40 = x_51; goto block_44; } diff --git a/stage0/stdlib/Lake/Build/Module.c b/stage0/stdlib/Lake/Build/Module.c index 88160e296f..c167a8b211 100644 --- a/stage0/stdlib/Lake/Build/Module.c +++ b/stage0/stdlib/Lake/Build/Module.c @@ -814,29 +814,38 @@ LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldlM___at___00Std_DTreeM lean_object* l_Lean_LeanOptionValue_asCliFlagValue(lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_traceOptions(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_foldl___at___00__private_Lake_Build_Module_0__Lake_traceOptions_spec__0(lean_object*, lean_object*); -uint8_t l_Lake_Workspace_enableArtifactCache(lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "input '"}; -static const lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__0 = (const lean_object*)&l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__0_value; -static const lean_string_object l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 68, .m_capacity = 68, .m_length = 67, .m_data = "' found in package artifact cache, but some output(s) have issues: "}; -static const lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__1 = (const lean_object*)&l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__1_value; -lean_object* l_Lake_Package_cacheScope(lean_object*); +static const lean_string_object l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "input '"}; +static const lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__0 = (const lean_object*)&l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__0_value; +static const lean_string_object l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 68, .m_capacity = 68, .m_length = 67, .m_data = "' found in package artifact cache, but some output(s) have issues: "}; +static const lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__1 = (const lean_object*)&l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__1_value; lean_object* l_Lake_Cache_writeOutputsCore(lean_object*, lean_object*, uint64_t, lean_object*); lean_object* l_String_Slice_Pos_nextn(lean_object*, lean_object*, lean_object*); lean_object* l_String_Slice_toString(lean_object*); +lean_object* l_Lake_Package_cacheScope(lean_object*); lean_object* l_Lake_Cache_readOutputs_x3f(lean_object*, lean_object*, uint64_t, lean_object*); -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1(lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___boxed(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_Lake_instDecidableEqOutputStatus(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0___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_object*); lean_object* l_Lake_SavedTrace_replayOrFetchIfUpToDate___redArg(uint64_t, lean_object*, lean_object*); lean_object* l_Lake_BuildMetadata_ofFetch(uint64_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(uint64_t, 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_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0___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*); -uint8_t l_Lake_instDecidableEqOutputStatus(uint8_t, uint8_t); -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(uint8_t, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__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*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(uint64_t, 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_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__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*, lean_object*); +LEAN_EXPORT uint8_t l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4___boxed(lean_object*, lean_object*); +lean_object* l_Lake_Module_getMTime(lean_object*); +uint8_t l_IO_FS_instOrdSystemTime_ord(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4___boxed(lean_object*, lean_object*, lean_object*); +uint8_t l_Lake_Module_checkExists(lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lake_Build_Common_0__Lake_SavedTrace_replayIfUpToDate_x27_replay(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(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_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = ", "}; static const lean_object* l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___closed__0 = (const lean_object*)&l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___closed__0_value; lean_object* lean_string_append(lean_object*, lean_object*); @@ -849,42 +858,45 @@ static const lean_object* l_List_toString___at___00__private_Lake_Build_Module_0 lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(lean_object*); LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___boxed(lean_object*); -LEAN_EXPORT uint8_t l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5___boxed(lean_object*, lean_object*); -lean_object* l_Lake_Module_getMTime(lean_object*); -uint8_t l_IO_FS_instOrdSystemTime_ord(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l_Lake_Module_checkExists(lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lake_Build_Common_0__Lake_SavedTrace_replayIfUpToDate_x27_replay(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(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_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3___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 uint64_t l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4(lean_object*, size_t, size_t, uint64_t); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint64_t l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(lean_object*, size_t, size_t, uint64_t); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "Module.leanArgs: "}; static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__0 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__0_value; static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "#"}; static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__1 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__1_value; static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = ":leanArts"}; static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2_value; -static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "options"}; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "Package.id\?: "}; static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "none"}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__4 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__4_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "(some "}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__5 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__5_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "Module.name: "}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__6 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__6_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "isModule: "}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__7 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__7_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "false"}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__8 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__8_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "true"}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__9 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__9_value; +static const lean_string_object l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "options"}; +static const lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__10 = (const lean_object*)&l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__10_value; lean_object* lean_st_ref_take(lean_object*); lean_object* l_Lake_CacheMap_insertCore(uint64_t, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*); lean_object* l_Lake_readTraceFile(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, 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* l_addParenHeuristic(lean_object*); +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2(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*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___boxed(lean_object**); extern lean_object* l_Lake_Module_leanFacet; -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(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_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3___boxed(lean_object**); lean_object* l_Lake_Job_renew___redArg(lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4(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_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___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___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3(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_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___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_Lake_formatQuery___at___00Lake_Module_leanArtsFacetConfig_spec__0___redArg(uint8_t); LEAN_EXPORT lean_object* l_Lake_formatQuery___at___00Lake_Module_leanArtsFacetConfig_spec__0___redArg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lake_formatQuery___at___00Lake_Module_leanArtsFacetConfig_spec__0(uint8_t, lean_object*); @@ -24740,749 +24752,886 @@ x_3 = l_Std_DTreeMap_Internal_Impl_foldlM___at___00Std_DTreeMap_Internal_Impl_fo return x_3; } } -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(uint64_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_1, 6); -x_6 = lean_ctor_get(x_5, 25); -if (lean_obj_tag(x_6) == 0) +lean_object* x_8; lean_object* x_9; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_179; lean_object* x_180; +x_179 = lean_ctor_get(x_4, 6); +x_180 = lean_ctor_get(x_179, 25); +if (lean_obj_tag(x_180) == 0) { -lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; -x_7 = lean_ctor_get(x_2, 1); -x_8 = l_Lake_Workspace_enableArtifactCache(x_7); -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_3); -return x_10; +lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_181 = lean_ctor_get(x_5, 1); +x_182 = lean_ctor_get(x_181, 1); +x_183 = lean_ctor_get(x_182, 6); +if (lean_obj_tag(x_183) == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_184 = lean_ctor_get(x_181, 0); +x_185 = lean_ctor_get(x_184, 6); +x_186 = lean_ctor_get(x_185, 25); +if (lean_obj_tag(x_186) == 0) +{ +uint8_t x_187; +x_187 = 0; +x_89 = x_187; +x_90 = x_6; +x_91 = lean_box(0); +goto block_178; } else { -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_6, 0); -lean_inc(x_11); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_3); +lean_object* x_188; uint8_t x_189; +x_188 = lean_ctor_get(x_186, 0); +x_189 = lean_unbox(x_188); +x_89 = x_189; +x_90 = x_6; +x_91 = lean_box(0); +goto block_178; +} +} +else +{ +lean_object* x_190; uint8_t x_191; +x_190 = lean_ctor_get(x_183, 0); +x_191 = lean_unbox(x_190); +x_89 = x_191; +x_90 = x_6; +x_91 = lean_box(0); +goto block_178; +} +} +else +{ +lean_object* x_192; uint8_t x_193; +x_192 = lean_ctor_get(x_180, 0); +x_193 = lean_unbox(x_192); +x_89 = x_193; +x_90 = x_6; +x_91 = lean_box(0); +goto block_178; +} +block_12: +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_box(0); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_8); +return x_11; +} +block_18: +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_16, 0, x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_14); +return x_17; +} +block_61: +{ +if (lean_obj_tag(x_2) == 2) +{ +lean_object* x_24; uint64_t x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_24); +lean_dec_ref(x_2); +x_25 = lean_ctor_get_uint64(x_24, sizeof(void*)*3); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec_ref(x_24); +x_27 = lean_uint64_dec_eq(x_25, x_1); +if (x_27 == 0) +{ +lean_dec(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +else +{ +if (lean_obj_tag(x_26) == 1) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec_ref(x_26); +lean_inc(x_28); +x_29 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_28); +if (lean_obj_tag(x_29) == 0) +{ +lean_dec_ref(x_29); +lean_dec(x_28); +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_30 = lean_ctor_get(x_21, 1); +lean_inc(x_30); +lean_dec_ref(x_21); +x_31 = lean_ctor_get(x_29, 0); +lean_inc(x_31); +lean_dec_ref(x_29); +x_32 = lean_ctor_get(x_22, 0); +x_33 = lean_ctor_get_uint8(x_22, sizeof(void*)*3); +x_34 = lean_ctor_get_uint8(x_22, sizeof(void*)*3 + 1); +x_35 = lean_ctor_get(x_22, 1); +x_36 = lean_ctor_get(x_22, 2); +x_37 = lean_ctor_get(x_30, 2); +lean_inc_ref(x_37); +lean_dec(x_30); +x_38 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_37, x_31); +if (lean_obj_tag(x_38) == 0) +{ +if (x_19 == 0) +{ +lean_object* x_39; +lean_dec(x_28); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +x_13 = x_39; +x_14 = x_22; +x_15 = lean_box(0); +goto block_18; +} +else +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec_ref(x_38); +x_41 = l_Lake_Cache_writeOutputsCore(x_3, x_20, x_1, x_28); +if (lean_obj_tag(x_41) == 0) +{ +lean_dec_ref(x_41); +x_13 = x_40; +x_14 = x_22; +x_15 = lean_box(0); +goto block_18; +} +else +{ +uint8_t x_42; +lean_dec(x_40); +lean_inc(x_36); +lean_inc_ref(x_35); +lean_inc_ref(x_32); +x_42 = !lean_is_exclusive(x_22); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_43 = lean_ctor_get(x_22, 2); +lean_dec(x_43); +x_44 = lean_ctor_get(x_22, 1); +lean_dec(x_44); +x_45 = lean_ctor_get(x_22, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_41, 0); +lean_inc(x_46); +lean_dec_ref(x_41); +x_47 = lean_io_error_to_string(x_46); +x_48 = 3; +x_49 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set_uint8(x_49, sizeof(void*)*1, x_48); +x_50 = lean_array_get_size(x_32); +x_51 = lean_array_push(x_32, x_49); +lean_ctor_set(x_22, 0, x_51); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_22); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_22); +x_53 = lean_ctor_get(x_41, 0); +lean_inc(x_53); +lean_dec_ref(x_41); +x_54 = lean_io_error_to_string(x_53); +x_55 = 3; +x_56 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set_uint8(x_56, sizeof(void*)*1, x_55); +x_57 = lean_array_get_size(x_32); +x_58 = lean_array_push(x_32, x_56); +x_59 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_35); +lean_ctor_set(x_59, 2, x_36); +lean_ctor_set_uint8(x_59, sizeof(void*)*3, x_33); +lean_ctor_set_uint8(x_59, sizeof(void*)*3 + 1, x_34); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_59); +return x_60; +} +} +} +} +else +{ +lean_dec_ref(x_38); +lean_dec(x_28); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +} +else +{ +lean_dec(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +} +else +{ +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec_ref(x_3); +lean_dec(x_2); +x_8 = x_22; +x_9 = lean_box(0); +goto block_12; +} +} +block_88: +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* 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; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_71 = l_Lake_Hash_hex(x_1); +x_72 = lean_string_utf8_byte_size(x_71); +x_73 = lean_unsigned_to_nat(0u); +lean_inc_ref(x_71); +x_74 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_73); +lean_ctor_set(x_74, 2, x_72); +x_75 = lean_unsigned_to_nat(7u); +x_76 = l_String_Slice_Pos_nextn(x_74, x_73, x_75); +lean_dec_ref(x_74); +x_77 = ((lean_object*)(l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__0)); +x_78 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_78, 0, x_71); +lean_ctor_set(x_78, 1, x_73); +lean_ctor_set(x_78, 2, x_76); +x_79 = l_String_Slice_toString(x_78); +lean_dec_ref(x_78); +x_80 = lean_string_append(x_77, x_79); +lean_dec_ref(x_79); +x_81 = ((lean_object*)(l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___closed__1)); +x_82 = lean_string_append(x_80, x_81); +x_83 = lean_string_append(x_82, x_64); +lean_dec_ref(x_64); +x_84 = 2; +x_85 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set_uint8(x_85, sizeof(void*)*1, x_84); +x_86 = lean_array_push(x_65, x_85); +x_87 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_68); +lean_ctor_set(x_87, 2, x_69); +lean_ctor_set_uint8(x_87, sizeof(void*)*3, x_66); +lean_ctor_set_uint8(x_87, sizeof(void*)*3 + 1, x_67); +x_19 = x_62; +x_20 = x_63; +x_21 = x_5; +x_22 = x_87; +x_23 = lean_box(0); +goto block_61; +} +block_178: +{ +uint8_t x_92; +x_92 = !lean_is_exclusive(x_90); +if (x_92 == 0) +{ +lean_object* x_93; uint8_t x_94; uint8_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_93 = lean_ctor_get(x_90, 0); +x_94 = lean_ctor_get_uint8(x_90, sizeof(void*)*3); +x_95 = lean_ctor_get_uint8(x_90, sizeof(void*)*3 + 1); +x_96 = lean_ctor_get(x_90, 1); +x_97 = lean_ctor_get(x_90, 2); +x_98 = l_Lake_Package_cacheScope(x_4); +lean_inc_ref(x_98); +lean_inc_ref(x_3); +x_99 = l_Lake_Cache_readOutputs_x3f(x_3, x_98, x_1, x_93); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_99); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_99, 0); +x_102 = lean_ctor_get(x_99, 1); +lean_inc(x_97); +lean_inc_ref(x_96); +lean_inc(x_102); +lean_ctor_set(x_90, 0, x_102); +if (lean_obj_tag(x_101) == 1) +{ +uint8_t x_103; +x_103 = !lean_is_exclusive(x_101); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_101, 0); +x_105 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_104); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +lean_free_object(x_101); +lean_dec_ref(x_90); +lean_free_object(x_99); +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +lean_dec_ref(x_105); +x_107 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); +x_108 = lean_string_append(x_107, x_106); +lean_dec(x_106); +x_62 = x_89; +x_63 = x_98; +x_64 = x_108; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_109 = lean_ctor_get(x_5, 1); +x_110 = lean_ctor_get(x_105, 0); +lean_inc(x_110); +lean_dec_ref(x_105); +x_111 = lean_ctor_get(x_109, 2); +lean_inc_ref(x_111); +x_112 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_111, x_110); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; +lean_dec(x_102); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +lean_dec_ref(x_112); +lean_ctor_set(x_101, 0, x_113); +lean_ctor_set(x_99, 1, x_90); +return x_99; +} +else +{ +lean_object* x_114; +lean_free_object(x_101); +lean_dec_ref(x_90); +lean_free_object(x_99); +x_114 = lean_ctor_get(x_112, 0); +lean_inc(x_114); +lean_dec_ref(x_112); +x_62 = x_89; +x_63 = x_98; +x_64 = x_114; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_101, 0); +lean_inc(x_115); +lean_dec(x_101); +x_116 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_115); +if (lean_obj_tag(x_116) == 0) +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +lean_dec_ref(x_90); +lean_free_object(x_99); +x_117 = lean_ctor_get(x_116, 0); +lean_inc(x_117); +lean_dec_ref(x_116); +x_118 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); +x_119 = lean_string_append(x_118, x_117); +lean_dec(x_117); +x_62 = x_89; +x_63 = x_98; +x_64 = x_119; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_120 = lean_ctor_get(x_5, 1); +x_121 = lean_ctor_get(x_116, 0); +lean_inc(x_121); +lean_dec_ref(x_116); +x_122 = lean_ctor_get(x_120, 2); +lean_inc_ref(x_122); +x_123 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_122, x_121); +if (lean_obj_tag(x_123) == 0) +{ +lean_object* x_124; lean_object* x_125; +lean_dec(x_102); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +lean_dec_ref(x_123); +x_125 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_99, 1, x_90); +lean_ctor_set(x_99, 0, x_125); +return x_99; +} +else +{ +lean_object* x_126; +lean_dec_ref(x_90); +lean_free_object(x_99); +x_126 = lean_ctor_get(x_123, 0); +lean_inc(x_126); +lean_dec_ref(x_123); +x_62 = x_89; +x_63 = x_98; +x_64 = x_126; +x_65 = x_102; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +} +else +{ +lean_free_object(x_99); +lean_dec(x_102); +lean_dec(x_101); +lean_dec(x_97); +lean_dec_ref(x_96); +x_19 = x_89; +x_20 = x_98; +x_21 = x_5; +x_22 = x_90; +x_23 = lean_box(0); +goto block_61; +} +} +else +{ +lean_object* x_127; lean_object* x_128; +x_127 = lean_ctor_get(x_99, 0); +x_128 = lean_ctor_get(x_99, 1); +lean_inc(x_128); +lean_inc(x_127); +lean_dec(x_99); +lean_inc(x_97); +lean_inc_ref(x_96); +lean_inc(x_128); +lean_ctor_set(x_90, 0, x_128); +if (lean_obj_tag(x_127) == 1) +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_127, 0); +lean_inc(x_129); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + x_130 = x_127; +} else { + lean_dec_ref(x_127); + x_130 = lean_box(0); +} +x_131 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_129); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; +lean_dec(x_130); +lean_dec_ref(x_90); +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +lean_dec_ref(x_131); +x_133 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); +x_134 = lean_string_append(x_133, x_132); +lean_dec(x_132); +x_62 = x_89; +x_63 = x_98; +x_64 = x_134; +x_65 = x_128; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_135 = lean_ctor_get(x_5, 1); +x_136 = lean_ctor_get(x_131, 0); +lean_inc(x_136); +lean_dec_ref(x_131); +x_137 = lean_ctor_get(x_135, 2); +lean_inc_ref(x_137); +x_138 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_137, x_136); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_128); +lean_dec_ref(x_98); +lean_dec(x_97); +lean_dec_ref(x_96); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +lean_dec_ref(x_138); +if (lean_is_scalar(x_130)) { + x_140 = lean_alloc_ctor(1, 1, 0); +} else { + x_140 = x_130; +} +lean_ctor_set(x_140, 0, x_139); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_90); +return x_141; +} +else +{ +lean_object* x_142; +lean_dec(x_130); +lean_dec_ref(x_90); +x_142 = lean_ctor_get(x_138, 0); +lean_inc(x_142); +lean_dec_ref(x_138); +x_62 = x_89; +x_63 = x_98; +x_64 = x_142; +x_65 = x_128; +x_66 = x_94; +x_67 = x_95; +x_68 = x_96; +x_69 = x_97; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_dec(x_128); +lean_dec(x_127); +lean_dec(x_97); +lean_dec_ref(x_96); +x_19 = x_89; +x_20 = x_98; +x_21 = x_5; +x_22 = x_90; +x_23 = lean_box(0); +goto block_61; +} +} +} +else +{ +uint8_t x_143; +lean_dec_ref(x_98); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_143 = !lean_is_exclusive(x_99); +if (x_143 == 0) +{ +lean_object* x_144; +x_144 = lean_ctor_get(x_99, 1); +lean_ctor_set(x_90, 0, x_144); +lean_ctor_set(x_99, 1, x_90); +return x_99; +} +else +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_145 = lean_ctor_get(x_99, 0); +x_146 = lean_ctor_get(x_99, 1); +lean_inc(x_146); +lean_inc(x_145); +lean_dec(x_99); +lean_ctor_set(x_90, 0, x_146); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_145); +lean_ctor_set(x_147, 1, x_90); +return x_147; +} +} +} +else +{ +lean_object* x_148; uint8_t x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_148 = lean_ctor_get(x_90, 0); +x_149 = lean_ctor_get_uint8(x_90, sizeof(void*)*3); +x_150 = lean_ctor_get_uint8(x_90, sizeof(void*)*3 + 1); +x_151 = lean_ctor_get(x_90, 1); +x_152 = lean_ctor_get(x_90, 2); +lean_inc(x_152); +lean_inc(x_151); +lean_inc(x_148); +lean_dec(x_90); +x_153 = l_Lake_Package_cacheScope(x_4); +lean_inc_ref(x_153); +lean_inc_ref(x_3); +x_154 = l_Lake_Cache_readOutputs_x3f(x_3, x_153, x_1, x_148); +if (lean_obj_tag(x_154) == 0) +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +x_156 = lean_ctor_get(x_154, 1); +lean_inc(x_156); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_157 = x_154; +} else { + lean_dec_ref(x_154); + x_157 = lean_box(0); +} +lean_inc(x_152); +lean_inc_ref(x_151); +lean_inc(x_156); +x_158 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_151); +lean_ctor_set(x_158, 2, x_152); +lean_ctor_set_uint8(x_158, sizeof(void*)*3, x_149); +lean_ctor_set_uint8(x_158, sizeof(void*)*3 + 1, x_150); +if (lean_obj_tag(x_155) == 1) +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_159 = lean_ctor_get(x_155, 0); +lean_inc(x_159); +if (lean_is_exclusive(x_155)) { + lean_ctor_release(x_155, 0); + x_160 = x_155; +} else { + lean_dec_ref(x_155); + x_160 = lean_box(0); +} +x_161 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_159); +if (lean_obj_tag(x_161) == 0) +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; +lean_dec(x_160); +lean_dec_ref(x_158); +lean_dec(x_157); +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +lean_dec_ref(x_161); +x_163 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); +x_164 = lean_string_append(x_163, x_162); +lean_dec(x_162); +x_62 = x_89; +x_63 = x_153; +x_64 = x_164; +x_65 = x_156; +x_66 = x_149; +x_67 = x_150; +x_68 = x_151; +x_69 = x_152; +x_70 = lean_box(0); +goto block_88; +} +else +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +x_165 = lean_ctor_get(x_5, 1); +x_166 = lean_ctor_get(x_161, 0); +lean_inc(x_166); +lean_dec_ref(x_161); +x_167 = lean_ctor_get(x_165, 2); +lean_inc_ref(x_167); +x_168 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_167, x_166); +if (lean_obj_tag(x_168) == 0) +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; +lean_dec(x_156); +lean_dec_ref(x_153); +lean_dec(x_152); +lean_dec_ref(x_151); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +lean_dec_ref(x_168); +if (lean_is_scalar(x_160)) { + x_170 = lean_alloc_ctor(1, 1, 0); +} else { + x_170 = x_160; +} +lean_ctor_set(x_170, 0, x_169); +if (lean_is_scalar(x_157)) { + x_171 = lean_alloc_ctor(0, 2, 0); +} else { + x_171 = x_157; +} +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_158); +return x_171; +} +else +{ +lean_object* x_172; +lean_dec(x_160); +lean_dec_ref(x_158); +lean_dec(x_157); +x_172 = lean_ctor_get(x_168, 0); +lean_inc(x_172); +lean_dec_ref(x_168); +x_62 = x_89; +x_63 = x_153; +x_64 = x_172; +x_65 = x_156; +x_66 = x_149; +x_67 = x_150; +x_68 = x_151; +x_69 = x_152; +x_70 = lean_box(0); +goto block_88; +} +} +} +else +{ +lean_dec(x_157); +lean_dec(x_156); +lean_dec(x_155); +lean_dec(x_152); +lean_dec_ref(x_151); +x_19 = x_89; +x_20 = x_153; +x_21 = x_5; +x_22 = x_158; +x_23 = lean_box(0); +goto block_61; +} +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec_ref(x_153); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec(x_2); +x_173 = lean_ctor_get(x_154, 0); +lean_inc(x_173); +x_174 = lean_ctor_get(x_154, 1); +lean_inc(x_174); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + lean_ctor_release(x_154, 1); + x_175 = x_154; +} else { + lean_dec_ref(x_154); + x_175 = lean_box(0); +} +x_176 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_176, 0, x_174); +lean_ctor_set(x_176, 1, x_151); +lean_ctor_set(x_176, 2, x_152); +lean_ctor_set_uint8(x_176, sizeof(void*)*3, x_149); +lean_ctor_set_uint8(x_176, sizeof(void*)*3 + 1, x_150); +if (lean_is_scalar(x_175)) { + x_177 = lean_alloc_ctor(1, 2, 0); +} else { + x_177 = x_175; +} +lean_ctor_set(x_177, 0, x_173); +lean_ctor_set(x_177, 1, x_176); +return x_177; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___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) { +_start: +{ +uint64_t x_8; lean_object* x_9; +x_8 = lean_unbox_uint64(x_1); +lean_dec(x_1); +x_9 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_8, x_2, x_3, x_4, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1(lean_object* x_1, uint64_t 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_12; +x_12 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_2, x_3, x_4, x_5, x_9, x_10); return x_12; } } -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_1, x_2, x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_1, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(lean_object* x_1, uint64_t 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_12; lean_object* x_13; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t 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_76; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_101; -x_23 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_5, x_9, x_10); -x_24 = lean_ctor_get(x_23, 1); -lean_inc(x_24); -x_25 = lean_ctor_get(x_23, 0); -lean_inc(x_25); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_26 = x_23; -} else { - lean_dec_ref(x_23); - x_26 = lean_box(0); -} -x_27 = lean_ctor_get(x_24, 0); -lean_inc_ref(x_27); -x_28 = lean_ctor_get_uint8(x_24, sizeof(void*)*3); -x_29 = lean_ctor_get_uint8(x_24, sizeof(void*)*3 + 1); -x_30 = lean_ctor_get(x_24, 1); -lean_inc_ref(x_30); -x_31 = lean_ctor_get(x_24, 2); -lean_inc(x_31); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - lean_ctor_release(x_24, 1); - lean_ctor_release(x_24, 2); - x_32 = x_24; -} else { - lean_dec_ref(x_24); - x_32 = lean_box(0); -} -x_33 = l_Lake_Package_cacheScope(x_5); -lean_inc_ref(x_33); -lean_inc_ref(x_4); -x_101 = l_Lake_Cache_readOutputs_x3f(x_4, x_33, x_2, x_27); -if (lean_obj_tag(x_101) == 0) -{ -uint8_t x_102; -x_102 = !lean_is_exclusive(x_101); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_101, 0); -x_104 = lean_ctor_get(x_101, 1); -lean_inc(x_31); -lean_inc_ref(x_30); -lean_inc(x_104); -x_105 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_30); -lean_ctor_set(x_105, 2, x_31); -lean_ctor_set_uint8(x_105, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_105, sizeof(void*)*3 + 1, x_29); -if (lean_obj_tag(x_103) == 1) -{ -uint8_t x_106; -x_106 = !lean_is_exclusive(x_103); -if (x_106 == 0) -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_103, 0); -x_108 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_107); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_free_object(x_103); -lean_dec_ref(x_105); -lean_free_object(x_101); -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -lean_dec_ref(x_108); -x_110 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); -x_111 = lean_string_append(x_110, x_109); -lean_dec(x_109); -x_76 = x_111; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_112 = lean_ctor_get(x_9, 1); -x_113 = lean_ctor_get(x_108, 0); -lean_inc(x_113); -lean_dec_ref(x_108); -x_114 = lean_ctor_get(x_112, 2); -lean_inc_ref(x_114); -x_115 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_114, x_113); -if (lean_obj_tag(x_115) == 0) -{ -lean_object* x_116; -lean_dec(x_104); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -lean_dec_ref(x_115); -lean_ctor_set(x_103, 0, x_116); -lean_ctor_set(x_101, 1, x_105); -return x_101; -} -else -{ -lean_object* x_117; -lean_free_object(x_103); -lean_dec_ref(x_105); -lean_free_object(x_101); -x_117 = lean_ctor_get(x_115, 0); -lean_inc(x_117); -lean_dec_ref(x_115); -x_76 = x_117; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -else -{ -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_103, 0); -lean_inc(x_118); -lean_dec(x_103); -x_119 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_118); -if (lean_obj_tag(x_119) == 0) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec_ref(x_105); -lean_free_object(x_101); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -lean_dec_ref(x_119); -x_121 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); -x_122 = lean_string_append(x_121, x_120); -lean_dec(x_120); -x_76 = x_122; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; -x_123 = lean_ctor_get(x_9, 1); -x_124 = lean_ctor_get(x_119, 0); -lean_inc(x_124); -lean_dec_ref(x_119); -x_125 = lean_ctor_get(x_123, 2); -lean_inc_ref(x_125); -x_126 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_125, x_124); -if (lean_obj_tag(x_126) == 0) -{ -lean_object* x_127; lean_object* x_128; -lean_dec(x_104); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_127 = lean_ctor_get(x_126, 0); -lean_inc(x_127); -lean_dec_ref(x_126); -x_128 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_101, 1, x_105); -lean_ctor_set(x_101, 0, x_128); -return x_101; -} -else -{ -lean_object* x_129; -lean_dec_ref(x_105); -lean_free_object(x_101); -x_129 = lean_ctor_get(x_126, 0); -lean_inc(x_129); -lean_dec_ref(x_126); -x_76 = x_129; -x_77 = x_104; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -} -else -{ -lean_free_object(x_101); -lean_dec(x_104); -lean_dec(x_103); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -x_34 = x_9; -x_35 = x_105; -x_36 = lean_box(0); -goto block_75; -} -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_ctor_get(x_101, 0); -x_131 = lean_ctor_get(x_101, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_101); -lean_inc(x_31); -lean_inc_ref(x_30); -lean_inc(x_131); -x_132 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_132, 0, x_131); -lean_ctor_set(x_132, 1, x_30); -lean_ctor_set(x_132, 2, x_31); -lean_ctor_set_uint8(x_132, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_132, sizeof(void*)*3 + 1, x_29); -if (lean_obj_tag(x_130) == 1) -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_133 = lean_ctor_get(x_130, 0); -lean_inc(x_133); -if (lean_is_exclusive(x_130)) { - lean_ctor_release(x_130, 0); - x_134 = x_130; -} else { - lean_dec_ref(x_130); - x_134 = lean_box(0); -} -x_135 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_133); -if (lean_obj_tag(x_135) == 0) -{ -lean_object* x_136; lean_object* x_137; lean_object* x_138; -lean_dec(x_134); -lean_dec_ref(x_132); -x_136 = lean_ctor_get(x_135, 0); -lean_inc(x_136); -lean_dec_ref(x_135); -x_137 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_resolveModuleOutputs_x3f___redArg___closed__0)); -x_138 = lean_string_append(x_137, x_136); -lean_dec(x_136); -x_76 = x_138; -x_77 = x_131; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -else -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_139 = lean_ctor_get(x_9, 1); -x_140 = lean_ctor_get(x_135, 0); -lean_inc(x_140); -lean_dec_ref(x_135); -x_141 = lean_ctor_get(x_139, 2); -lean_inc_ref(x_141); -x_142 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_141, x_140); -if (lean_obj_tag(x_142) == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -lean_dec(x_131); -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_143 = lean_ctor_get(x_142, 0); -lean_inc(x_143); -lean_dec_ref(x_142); -if (lean_is_scalar(x_134)) { - x_144 = lean_alloc_ctor(1, 1, 0); -} else { - x_144 = x_134; -} -lean_ctor_set(x_144, 0, x_143); -x_145 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_145, 0, x_144); -lean_ctor_set(x_145, 1, x_132); -return x_145; -} -else -{ -lean_object* x_146; -lean_dec(x_134); -lean_dec_ref(x_132); -x_146 = lean_ctor_get(x_142, 0); -lean_inc(x_146); -lean_dec_ref(x_142); -x_76 = x_146; -x_77 = x_131; -x_78 = x_28; -x_79 = x_29; -x_80 = x_30; -x_81 = x_31; -x_82 = lean_box(0); -goto block_100; -} -} -} -else -{ -lean_dec(x_131); -lean_dec(x_130); -lean_dec(x_32); -lean_dec(x_31); -lean_dec_ref(x_30); -x_34 = x_9; -x_35 = x_132; -x_36 = lean_box(0); -goto block_75; -} -} -} -else -{ -uint8_t x_147; -lean_dec_ref(x_33); -lean_dec(x_32); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_9); -lean_dec_ref(x_4); -lean_dec(x_3); -x_147 = !lean_is_exclusive(x_101); -if (x_147 == 0) -{ -lean_object* x_148; lean_object* x_149; -x_148 = lean_ctor_get(x_101, 1); -x_149 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_149, 0, x_148); -lean_ctor_set(x_149, 1, x_30); -lean_ctor_set(x_149, 2, x_31); -lean_ctor_set_uint8(x_149, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_149, sizeof(void*)*3 + 1, x_29); -lean_ctor_set(x_101, 1, x_149); -return x_101; -} -else -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_150 = lean_ctor_get(x_101, 0); -x_151 = lean_ctor_get(x_101, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_101); -x_152 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_152, 0, x_151); -lean_ctor_set(x_152, 1, x_30); -lean_ctor_set(x_152, 2, x_31); -lean_ctor_set_uint8(x_152, sizeof(void*)*3, x_28); -lean_ctor_set_uint8(x_152, sizeof(void*)*3 + 1, x_29); -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_150); -lean_ctor_set(x_153, 1, x_152); -return x_153; -} -} -block_16: -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_12); -return x_15; -} -block_22: -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_18); -return x_21; -} -block_75: -{ -if (lean_obj_tag(x_3) == 2) -{ -lean_object* x_37; uint64_t x_38; lean_object* x_39; uint8_t x_40; -x_37 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_37); -lean_dec_ref(x_3); -x_38 = lean_ctor_get_uint64(x_37, sizeof(void*)*3); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec_ref(x_37); -x_40 = lean_uint64_dec_eq(x_38, x_2); -if (x_40 == 0) -{ -lean_dec(x_39); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -else -{ -if (lean_obj_tag(x_39) == 1) -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_39, 0); -lean_inc(x_41); -lean_dec_ref(x_39); -lean_inc(x_41); -x_42 = l_Lake_ModuleOutputDescrs_fromJson_x3f(x_41); -if (lean_obj_tag(x_42) == 0) -{ -lean_dec_ref(x_42); -lean_dec(x_41); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_43 = lean_ctor_get(x_34, 1); -lean_inc(x_43); -lean_dec_ref(x_34); -x_44 = lean_ctor_get(x_42, 0); -lean_inc(x_44); -lean_dec_ref(x_42); -x_45 = lean_ctor_get(x_35, 0); -x_46 = lean_ctor_get_uint8(x_35, sizeof(void*)*3); -x_47 = lean_ctor_get_uint8(x_35, sizeof(void*)*3 + 1); -x_48 = lean_ctor_get(x_35, 1); -x_49 = lean_ctor_get(x_35, 2); -x_50 = lean_ctor_get(x_43, 2); -lean_inc_ref(x_50); -lean_dec(x_43); -x_51 = l___private_Lake_Build_Module_0__Lake_ModuleOutputDescrs_getArtifactsFrom(x_50, x_44); -if (lean_obj_tag(x_51) == 0) -{ -uint8_t x_52; -x_52 = lean_unbox(x_25); -lean_dec(x_25); -if (x_52 == 0) -{ -lean_object* x_53; -lean_dec(x_41); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec_ref(x_4); -x_53 = lean_ctor_get(x_51, 0); -lean_inc(x_53); -lean_dec_ref(x_51); -x_17 = x_53; -x_18 = x_35; -x_19 = lean_box(0); -goto block_22; -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_ctor_get(x_51, 0); -lean_inc(x_54); -lean_dec_ref(x_51); -x_55 = l_Lake_Cache_writeOutputsCore(x_4, x_33, x_2, x_41); -if (lean_obj_tag(x_55) == 0) -{ -lean_dec_ref(x_55); -lean_dec(x_26); -x_17 = x_54; -x_18 = x_35; -x_19 = lean_box(0); -goto block_22; -} -else -{ -uint8_t x_56; -lean_dec(x_54); -lean_inc(x_49); -lean_inc_ref(x_48); -lean_inc_ref(x_45); -x_56 = !lean_is_exclusive(x_35); -if (x_56 == 0) -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_57 = lean_ctor_get(x_35, 2); -lean_dec(x_57); -x_58 = lean_ctor_get(x_35, 1); -lean_dec(x_58); -x_59 = lean_ctor_get(x_35, 0); -lean_dec(x_59); -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -lean_dec_ref(x_55); -x_61 = lean_io_error_to_string(x_60); -x_62 = 3; -x_63 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_62); -x_64 = lean_array_get_size(x_45); -x_65 = lean_array_push(x_45, x_63); -lean_ctor_set(x_35, 0, x_65); -if (lean_is_scalar(x_26)) { - x_66 = lean_alloc_ctor(1, 2, 0); -} else { - x_66 = x_26; - lean_ctor_set_tag(x_66, 1); -} -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_35); -return x_66; -} -else -{ -lean_object* x_67; lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_35); -x_67 = lean_ctor_get(x_55, 0); -lean_inc(x_67); -lean_dec_ref(x_55); -x_68 = lean_io_error_to_string(x_67); -x_69 = 3; -x_70 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set_uint8(x_70, sizeof(void*)*1, x_69); -x_71 = lean_array_get_size(x_45); -x_72 = lean_array_push(x_45, x_70); -x_73 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_48); -lean_ctor_set(x_73, 2, x_49); -lean_ctor_set_uint8(x_73, sizeof(void*)*3, x_46); -lean_ctor_set_uint8(x_73, sizeof(void*)*3 + 1, x_47); -if (lean_is_scalar(x_26)) { - x_74 = lean_alloc_ctor(1, 2, 0); -} else { - x_74 = x_26; - lean_ctor_set_tag(x_74, 1); -} -lean_ctor_set(x_74, 0, x_71); -lean_ctor_set(x_74, 1, x_73); -return x_74; -} -} -} -} -else -{ -lean_dec_ref(x_51); -lean_dec(x_41); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -} -else -{ -lean_dec(x_39); -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -} -else -{ -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_26); -lean_dec(x_25); -lean_dec_ref(x_4); -lean_dec(x_3); -x_12 = x_35; -x_13 = lean_box(0); -goto block_16; -} -} -block_100: -{ -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; uint8_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_83 = l_Lake_Hash_hex(x_2); -x_84 = lean_string_utf8_byte_size(x_83); -x_85 = lean_unsigned_to_nat(0u); -lean_inc_ref(x_83); -x_86 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_85); -lean_ctor_set(x_86, 2, x_84); -x_87 = lean_unsigned_to_nat(7u); -x_88 = l_String_Slice_Pos_nextn(x_86, x_85, x_87); -lean_dec_ref(x_86); -x_89 = ((lean_object*)(l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__0)); -x_90 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_90, 0, x_83); -lean_ctor_set(x_90, 1, x_85); -lean_ctor_set(x_90, 2, x_88); -x_91 = l_String_Slice_toString(x_90); -lean_dec_ref(x_90); -x_92 = lean_string_append(x_89, x_91); -lean_dec_ref(x_91); -x_93 = ((lean_object*)(l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2___closed__1)); -x_94 = lean_string_append(x_92, x_93); -x_95 = lean_string_append(x_94, x_76); -lean_dec_ref(x_76); -x_96 = 2; -x_97 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_97, 0, x_95); -lean_ctor_set_uint8(x_97, sizeof(void*)*1, x_96); -x_98 = lean_array_push(x_77, x_97); -if (lean_is_scalar(x_32)) { - x_99 = lean_alloc_ctor(0, 3, 2); -} else { - x_99 = x_32; -} -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_80); -lean_ctor_set(x_99, 2, x_81); -lean_ctor_set_uint8(x_99, sizeof(void*)*3, x_78); -lean_ctor_set_uint8(x_99, sizeof(void*)*3 + 1, x_79); -x_34 = x_9; -x_35 = x_99; -x_36 = lean_box(0); -goto block_75; -} -} -} -LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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: { uint64_t x_12; lean_object* x_13; x_12 = lean_unbox_uint64(x_2); lean_dec(x_2); -x_13 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -25490,12 +25639,344 @@ lean_dec_ref(x_1); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(uint64_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t 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) { +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint64_t 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, lean_object* x_14) { +_start: +{ +uint8_t x_16; uint8_t x_17; +x_16 = 1; +x_17 = l_Lake_instDecidableEqOutputStatus(x_1, x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = l___private_Lake_Build_Module_0__Lake_Module_cacheOutputArtifacts___redArg(x_2, x_3, x_4, x_13, x_14); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t 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; +x_20 = lean_ctor_get(x_18, 1); +x_21 = lean_ctor_get(x_18, 0); +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get_uint8(x_20, sizeof(void*)*3); +x_24 = lean_ctor_get_uint8(x_20, sizeof(void*)*3 + 1); +x_25 = lean_ctor_get(x_20, 1); +x_26 = lean_ctor_get(x_20, 2); +x_27 = l_Lake_Package_cacheScope(x_5); +lean_inc(x_21); +x_28 = l_Lake_ModuleOutputArtifacts_descrs(x_21); +x_29 = l_Lake_ModuleOutputDescrs_toJson(x_28); +x_30 = l_Lake_Cache_writeOutputsCore(x_6, x_27, x_7, x_29); +if (lean_obj_tag(x_30) == 0) +{ +lean_dec_ref(x_30); +return x_18; +} +else +{ +uint8_t x_31; +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc_ref(x_22); +lean_dec(x_21); +x_31 = !lean_is_exclusive(x_20); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_32 = lean_ctor_get(x_20, 2); +lean_dec(x_32); +x_33 = lean_ctor_get(x_20, 1); +lean_dec(x_33); +x_34 = lean_ctor_get(x_20, 0); +lean_dec(x_34); +x_35 = lean_ctor_get(x_30, 0); +lean_inc(x_35); +lean_dec_ref(x_30); +x_36 = lean_io_error_to_string(x_35); +x_37 = 3; +x_38 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set_uint8(x_38, sizeof(void*)*1, x_37); +x_39 = lean_array_get_size(x_22); +x_40 = lean_array_push(x_22, x_38); +lean_ctor_set(x_20, 0, x_40); +lean_ctor_set_tag(x_18, 1); +lean_ctor_set(x_18, 0, x_39); +return x_18; +} +else +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_20); +x_41 = lean_ctor_get(x_30, 0); +lean_inc(x_41); +lean_dec_ref(x_30); +x_42 = lean_io_error_to_string(x_41); +x_43 = 3; +x_44 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set_uint8(x_44, sizeof(void*)*1, x_43); +x_45 = lean_array_get_size(x_22); +x_46 = lean_array_push(x_22, x_44); +x_47 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_25); +lean_ctor_set(x_47, 2, x_26); +lean_ctor_set_uint8(x_47, sizeof(void*)*3, x_23); +lean_ctor_set_uint8(x_47, sizeof(void*)*3 + 1, x_24); +lean_ctor_set_tag(x_18, 1); +lean_ctor_set(x_18, 1, x_47); +lean_ctor_set(x_18, 0, x_45); +return x_18; +} +} +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; uint8_t 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; +x_48 = lean_ctor_get(x_18, 1); +x_49 = lean_ctor_get(x_18, 0); +lean_inc(x_48); +lean_inc(x_49); +lean_dec(x_18); +x_50 = lean_ctor_get(x_48, 0); +x_51 = lean_ctor_get_uint8(x_48, sizeof(void*)*3); +x_52 = lean_ctor_get_uint8(x_48, sizeof(void*)*3 + 1); +x_53 = lean_ctor_get(x_48, 1); +x_54 = lean_ctor_get(x_48, 2); +x_55 = l_Lake_Package_cacheScope(x_5); +lean_inc(x_49); +x_56 = l_Lake_ModuleOutputArtifacts_descrs(x_49); +x_57 = l_Lake_ModuleOutputDescrs_toJson(x_56); +x_58 = l_Lake_Cache_writeOutputsCore(x_6, x_55, x_7, x_57); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; +lean_dec_ref(x_58); +x_59 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_59, 0, x_49); +lean_ctor_set(x_59, 1, x_48); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_inc(x_54); +lean_inc_ref(x_53); +lean_inc_ref(x_50); +lean_dec(x_49); +if (lean_is_exclusive(x_48)) { + lean_ctor_release(x_48, 0); + lean_ctor_release(x_48, 1); + lean_ctor_release(x_48, 2); + x_60 = x_48; +} else { + lean_dec_ref(x_48); + x_60 = lean_box(0); +} +x_61 = lean_ctor_get(x_58, 0); +lean_inc(x_61); +lean_dec_ref(x_58); +x_62 = lean_io_error_to_string(x_61); +x_63 = 3; +x_64 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set_uint8(x_64, sizeof(void*)*1, x_63); +x_65 = lean_array_get_size(x_50); +x_66 = lean_array_push(x_50, x_64); +if (lean_is_scalar(x_60)) { + x_67 = lean_alloc_ctor(0, 3, 2); +} else { + x_67 = x_60; +} +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_53); +lean_ctor_set(x_67, 2, x_54); +lean_ctor_set_uint8(x_67, sizeof(void*)*3, x_51); +lean_ctor_set_uint8(x_67, sizeof(void*)*3 + 1, x_52); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_67); +return x_68; +} +} +} +else +{ +lean_dec_ref(x_6); +lean_dec_ref(x_5); +return x_18; +} +} +else +{ +uint8_t x_69; +lean_dec_ref(x_6); +lean_dec_ref(x_5); +x_69 = !lean_is_exclusive(x_14); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_14, 0); +x_71 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_2, x_3, x_13, x_70); +lean_dec_ref(x_13); +if (lean_obj_tag(x_71) == 0) +{ +uint8_t x_72; +x_72 = !lean_is_exclusive(x_71); +if (x_72 == 0) +{ +lean_object* x_73; +x_73 = lean_ctor_get(x_71, 1); +lean_ctor_set(x_14, 0, x_73); +lean_ctor_set(x_71, 1, x_14); +return x_71; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_71, 0); +x_75 = lean_ctor_get(x_71, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_71); +lean_ctor_set(x_14, 0, x_75); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_14); +return x_76; +} +} +else +{ +uint8_t x_77; +x_77 = !lean_is_exclusive(x_71); +if (x_77 == 0) +{ +lean_object* x_78; +x_78 = lean_ctor_get(x_71, 1); +lean_ctor_set(x_14, 0, x_78); +lean_ctor_set(x_71, 1, x_14); +return x_71; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_71, 0); +x_80 = lean_ctor_get(x_71, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_71); +lean_ctor_set(x_14, 0, x_80); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_14); +return x_81; +} +} +} +else +{ +lean_object* x_82; uint8_t x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_82 = lean_ctor_get(x_14, 0); +x_83 = lean_ctor_get_uint8(x_14, sizeof(void*)*3); +x_84 = lean_ctor_get_uint8(x_14, sizeof(void*)*3 + 1); +x_85 = lean_ctor_get(x_14, 1); +x_86 = lean_ctor_get(x_14, 2); +lean_inc(x_86); +lean_inc(x_85); +lean_inc(x_82); +lean_dec(x_14); +x_87 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_2, x_3, x_13, x_82); +lean_dec_ref(x_13); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_90 = x_87; +} else { + lean_dec_ref(x_87); + x_90 = lean_box(0); +} +x_91 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_85); +lean_ctor_set(x_91, 2, x_86); +lean_ctor_set_uint8(x_91, sizeof(void*)*3, x_83); +lean_ctor_set_uint8(x_91, sizeof(void*)*3 + 1, x_84); +if (lean_is_scalar(x_90)) { + x_92 = lean_alloc_ctor(0, 2, 0); +} else { + x_92 = x_90; +} +lean_ctor_set(x_92, 0, x_88); +lean_ctor_set(x_92, 1, x_91); +return x_92; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_93 = lean_ctor_get(x_87, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_87, 1); +lean_inc(x_94); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_95 = x_87; +} else { + lean_dec_ref(x_87); + x_95 = lean_box(0); +} +x_96 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_85); +lean_ctor_set(x_96, 2, x_86); +lean_ctor_set_uint8(x_96, sizeof(void*)*3, x_83); +lean_ctor_set_uint8(x_96, sizeof(void*)*3 + 1, x_84); +if (lean_is_scalar(x_95)) { + x_97 = lean_alloc_ctor(1, 2, 0); +} else { + x_97 = x_95; +} +lean_ctor_set(x_97, 0, x_93); +lean_ctor_set(x_97, 1, x_96); +return x_97; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0___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, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; uint8_t x_18; uint64_t x_19; lean_object* x_20; +x_16 = lean_unbox(x_1); +x_17 = lean_unbox(x_3); +x_18 = lean_unbox(x_4); +x_19 = lean_unbox_uint64(x_7); +lean_dec(x_7); +x_20 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_16, x_2, x_17, x_18, x_5, x_6, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +return x_20; +} +} +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(uint64_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t 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_15; lean_inc(x_2); -x_15 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(x_8, x_1, x_2, x_3, x_4, x_9, x_10, x_11, x_12, x_13); +x_15 = l_Lake_getArtifacts_x3f___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_1, x_2, x_3, x_4, x_12, x_13); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; @@ -26013,14 +26494,14 @@ return x_15; } } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__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, lean_object* x_14) { _start: { uint64_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox_uint64(x_1); lean_dec(x_1); x_16 = lean_unbox(x_7); -x_17 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_15, x_2, x_3, x_4, x_5, x_6, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_15, x_2, x_3, x_4, x_5, x_6, x_16, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -26028,415 +26509,7 @@ lean_dec_ref(x_8); return x_17; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(uint8_t x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, uint64_t 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, lean_object* x_14) { -_start: -{ -uint8_t x_16; uint8_t x_17; -x_16 = 1; -x_17 = l_Lake_instDecidableEqOutputStatus(x_1, x_16); -if (x_17 == 0) -{ -lean_object* x_18; -x_18 = l___private_Lake_Build_Module_0__Lake_Module_cacheOutputArtifacts___redArg(x_2, x_3, x_4, x_13, x_14); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t 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; -x_20 = lean_ctor_get(x_18, 1); -x_21 = lean_ctor_get(x_18, 0); -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get_uint8(x_20, sizeof(void*)*3); -x_24 = lean_ctor_get_uint8(x_20, sizeof(void*)*3 + 1); -x_25 = lean_ctor_get(x_20, 1); -x_26 = lean_ctor_get(x_20, 2); -x_27 = l_Lake_Package_cacheScope(x_5); -lean_inc(x_21); -x_28 = l_Lake_ModuleOutputArtifacts_descrs(x_21); -x_29 = l_Lake_ModuleOutputDescrs_toJson(x_28); -x_30 = l_Lake_Cache_writeOutputsCore(x_6, x_27, x_7, x_29); -if (lean_obj_tag(x_30) == 0) -{ -lean_dec_ref(x_30); -return x_18; -} -else -{ -uint8_t x_31; -lean_inc(x_26); -lean_inc_ref(x_25); -lean_inc_ref(x_22); -lean_dec(x_21); -x_31 = !lean_is_exclusive(x_20); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_32 = lean_ctor_get(x_20, 2); -lean_dec(x_32); -x_33 = lean_ctor_get(x_20, 1); -lean_dec(x_33); -x_34 = lean_ctor_get(x_20, 0); -lean_dec(x_34); -x_35 = lean_ctor_get(x_30, 0); -lean_inc(x_35); -lean_dec_ref(x_30); -x_36 = lean_io_error_to_string(x_35); -x_37 = 3; -x_38 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set_uint8(x_38, sizeof(void*)*1, x_37); -x_39 = lean_array_get_size(x_22); -x_40 = lean_array_push(x_22, x_38); -lean_ctor_set(x_20, 0, x_40); -lean_ctor_set_tag(x_18, 1); -lean_ctor_set(x_18, 0, x_39); -return x_18; -} -else -{ -lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -lean_dec(x_20); -x_41 = lean_ctor_get(x_30, 0); -lean_inc(x_41); -lean_dec_ref(x_30); -x_42 = lean_io_error_to_string(x_41); -x_43 = 3; -x_44 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*1, x_43); -x_45 = lean_array_get_size(x_22); -x_46 = lean_array_push(x_22, x_44); -x_47 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_25); -lean_ctor_set(x_47, 2, x_26); -lean_ctor_set_uint8(x_47, sizeof(void*)*3, x_23); -lean_ctor_set_uint8(x_47, sizeof(void*)*3 + 1, x_24); -lean_ctor_set_tag(x_18, 1); -lean_ctor_set(x_18, 1, x_47); -lean_ctor_set(x_18, 0, x_45); -return x_18; -} -} -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; uint8_t 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; -x_48 = lean_ctor_get(x_18, 1); -x_49 = lean_ctor_get(x_18, 0); -lean_inc(x_48); -lean_inc(x_49); -lean_dec(x_18); -x_50 = lean_ctor_get(x_48, 0); -x_51 = lean_ctor_get_uint8(x_48, sizeof(void*)*3); -x_52 = lean_ctor_get_uint8(x_48, sizeof(void*)*3 + 1); -x_53 = lean_ctor_get(x_48, 1); -x_54 = lean_ctor_get(x_48, 2); -x_55 = l_Lake_Package_cacheScope(x_5); -lean_inc(x_49); -x_56 = l_Lake_ModuleOutputArtifacts_descrs(x_49); -x_57 = l_Lake_ModuleOutputDescrs_toJson(x_56); -x_58 = l_Lake_Cache_writeOutputsCore(x_6, x_55, x_7, x_57); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; -lean_dec_ref(x_58); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_49); -lean_ctor_set(x_59, 1, x_48); -return x_59; -} -else -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -lean_inc(x_54); -lean_inc_ref(x_53); -lean_inc_ref(x_50); -lean_dec(x_49); -if (lean_is_exclusive(x_48)) { - lean_ctor_release(x_48, 0); - lean_ctor_release(x_48, 1); - lean_ctor_release(x_48, 2); - x_60 = x_48; -} else { - lean_dec_ref(x_48); - x_60 = lean_box(0); -} -x_61 = lean_ctor_get(x_58, 0); -lean_inc(x_61); -lean_dec_ref(x_58); -x_62 = lean_io_error_to_string(x_61); -x_63 = 3; -x_64 = lean_alloc_ctor(0, 1, 1); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set_uint8(x_64, sizeof(void*)*1, x_63); -x_65 = lean_array_get_size(x_50); -x_66 = lean_array_push(x_50, x_64); -if (lean_is_scalar(x_60)) { - x_67 = lean_alloc_ctor(0, 3, 2); -} else { - x_67 = x_60; -} -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_53); -lean_ctor_set(x_67, 2, x_54); -lean_ctor_set_uint8(x_67, sizeof(void*)*3, x_51); -lean_ctor_set_uint8(x_67, sizeof(void*)*3 + 1, x_52); -x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_65); -lean_ctor_set(x_68, 1, x_67); -return x_68; -} -} -} -else -{ -lean_dec_ref(x_6); -lean_dec_ref(x_5); -return x_18; -} -} -else -{ -uint8_t x_69; -lean_dec_ref(x_6); -lean_dec_ref(x_5); -x_69 = !lean_is_exclusive(x_14); -if (x_69 == 0) -{ -lean_object* x_70; lean_object* x_71; -x_70 = lean_ctor_get(x_14, 0); -x_71 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_2, x_3, x_13, x_70); -lean_dec_ref(x_13); -if (lean_obj_tag(x_71) == 0) -{ -uint8_t x_72; -x_72 = !lean_is_exclusive(x_71); -if (x_72 == 0) -{ -lean_object* x_73; -x_73 = lean_ctor_get(x_71, 1); -lean_ctor_set(x_14, 0, x_73); -lean_ctor_set(x_71, 1, x_14); -return x_71; -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_71, 0); -x_75 = lean_ctor_get(x_71, 1); -lean_inc(x_75); -lean_inc(x_74); -lean_dec(x_71); -lean_ctor_set(x_14, 0, x_75); -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_74); -lean_ctor_set(x_76, 1, x_14); -return x_76; -} -} -else -{ -uint8_t x_77; -x_77 = !lean_is_exclusive(x_71); -if (x_77 == 0) -{ -lean_object* x_78; -x_78 = lean_ctor_get(x_71, 1); -lean_ctor_set(x_14, 0, x_78); -lean_ctor_set(x_71, 1, x_14); -return x_71; -} -else -{ -lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_79 = lean_ctor_get(x_71, 0); -x_80 = lean_ctor_get(x_71, 1); -lean_inc(x_80); -lean_inc(x_79); -lean_dec(x_71); -lean_ctor_set(x_14, 0, x_80); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_79); -lean_ctor_set(x_81, 1, x_14); -return x_81; -} -} -} -else -{ -lean_object* x_82; uint8_t x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_82 = lean_ctor_get(x_14, 0); -x_83 = lean_ctor_get_uint8(x_14, sizeof(void*)*3); -x_84 = lean_ctor_get_uint8(x_14, sizeof(void*)*3 + 1); -x_85 = lean_ctor_get(x_14, 1); -x_86 = lean_ctor_get(x_14, 2); -lean_inc(x_86); -lean_inc(x_85); -lean_inc(x_82); -lean_dec(x_14); -x_87 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_2, x_3, x_13, x_82); -lean_dec_ref(x_13); -if (lean_obj_tag(x_87) == 0) -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_88 = lean_ctor_get(x_87, 0); -lean_inc(x_88); -x_89 = lean_ctor_get(x_87, 1); -lean_inc(x_89); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - lean_ctor_release(x_87, 1); - x_90 = x_87; -} else { - lean_dec_ref(x_87); - x_90 = lean_box(0); -} -x_91 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_85); -lean_ctor_set(x_91, 2, x_86); -lean_ctor_set_uint8(x_91, sizeof(void*)*3, x_83); -lean_ctor_set_uint8(x_91, sizeof(void*)*3 + 1, x_84); -if (lean_is_scalar(x_90)) { - x_92 = lean_alloc_ctor(0, 2, 0); -} else { - x_92 = x_90; -} -lean_ctor_set(x_92, 0, x_88); -lean_ctor_set(x_92, 1, x_91); -return x_92; -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_93 = lean_ctor_get(x_87, 0); -lean_inc(x_93); -x_94 = lean_ctor_get(x_87, 1); -lean_inc(x_94); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - lean_ctor_release(x_87, 1); - x_95 = x_87; -} else { - lean_dec_ref(x_87); - x_95 = lean_box(0); -} -x_96 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_96, 0, x_94); -lean_ctor_set(x_96, 1, x_85); -lean_ctor_set(x_96, 2, x_86); -lean_ctor_set_uint8(x_96, sizeof(void*)*3, x_83); -lean_ctor_set_uint8(x_96, sizeof(void*)*3 + 1, x_84); -if (lean_is_scalar(x_95)) { - x_97 = lean_alloc_ctor(1, 2, 0); -} else { - x_97 = x_95; -} -lean_ctor_set(x_97, 0, x_93); -lean_ctor_set(x_97, 1, x_96); -return x_97; -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__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, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; uint8_t x_17; uint8_t x_18; uint64_t x_19; lean_object* x_20; -x_16 = lean_unbox(x_1); -x_17 = lean_unbox(x_3); -x_18 = lean_unbox(x_4); -x_19 = lean_unbox_uint64(x_7); -lean_dec(x_7); -x_20 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_16, x_2, x_17, x_18, x_5, x_6, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -return x_20; -} -} -LEAN_EXPORT lean_object* l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_3 = lean_ctor_get(x_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = ((lean_object*)(l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___closed__0)); -x_6 = lean_string_append(x_1, x_5); -x_7 = lean_string_append(x_6, x_3); -x_1 = x_7; -x_2 = x_4; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_2; -x_2 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__0)); -return x_2; -} -else -{ -lean_object* x_3; -x_3 = lean_ctor_get(x_1, 1); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_4 = lean_ctor_get(x_1, 0); -x_5 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__1)); -x_6 = lean_string_append(x_5, x_4); -x_7 = ((lean_object*)(l_Array_Array_repr___at___00__private_Lake_Build_Module_0__Lake_instReprModuleDeps_repr_spec__0___closed__4)); -x_8 = lean_string_append(x_6, x_7); -return x_8; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint32_t x_13; lean_object* x_14; -x_9 = lean_ctor_get(x_1, 0); -x_10 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__1)); -x_11 = lean_string_append(x_10, x_9); -x_12 = l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(x_11, x_3); -x_13 = 93; -x_14 = lean_string_push(x_12, x_13); -return x_14; -} -} -} -} -LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -26475,18 +26548,18 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5(x_1, x_2); +x_3 = l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT uint8_t l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; @@ -26521,17 +26594,17 @@ return x_9; } } } -LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5(x_1, x_2); +x_4 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4(x_1, x_2); lean_dec_ref(x_2); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(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_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint64_t x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -26539,7 +26612,7 @@ x_8 = lean_ctor_get_uint64(x_2, sizeof(void*)*3); x_9 = lean_box_uint64(x_8); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_9); -x_11 = l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4_spec__5(x_10, x_3); +x_11 = l_Option_instBEq_beq___at___00__private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3_spec__4(x_10, x_3); lean_dec_ref(x_10); if (x_11 == 0) { @@ -26560,7 +26633,7 @@ return x_16; else { uint8_t x_17; -x_17 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5(x_1, x_4); +x_17 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4(x_1, x_4); if (x_17 == 0) { uint8_t x_18; lean_object* x_19; lean_object* x_20; @@ -26610,11 +26683,11 @@ return x_30; } } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg___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_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg___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) { _start: { lean_object* x_8; -x_8 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -26622,7 +26695,7 @@ lean_dec_ref(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(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_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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: { if (lean_obj_tag(x_4) == 2) @@ -26640,7 +26713,7 @@ lean_dec_ref(x_13); x_16 = lean_box_uint64(x_14); lean_ctor_set_tag(x_4, 1); lean_ctor_set(x_4, 0, x_16); -x_17 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(x_2, x_3, x_4, x_5, x_9, x_10); +x_17 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(x_2, x_3, x_4, x_5, x_9, x_10); lean_dec_ref(x_4); x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); @@ -26798,7 +26871,7 @@ lean_dec_ref(x_52); x_55 = lean_box_uint64(x_53); x_56 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_56, 0, x_55); -x_57 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(x_2, x_3, x_56, x_5, x_9, x_10); +x_57 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(x_2, x_3, x_56, x_5, x_9, x_10); lean_dec_ref(x_56); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); @@ -26927,7 +27000,7 @@ return x_87; else { uint8_t x_88; -x_88 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__5(x_2, x_5); +x_88 = l_Lake_MTime_checkUpToDate___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__4(x_2, x_5); if (x_88 == 0) { uint8_t x_89; lean_object* x_90; lean_object* x_91; @@ -26952,11 +27025,11 @@ return x_94; } } } -LEAN_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3___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_EXPORT lean_object* l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__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, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); @@ -26967,7 +27040,83 @@ lean_dec_ref(x_1); return x_12; } } -LEAN_EXPORT uint64_t l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4(lean_object* x_1, size_t x_2, size_t x_3, uint64_t x_4) { +LEAN_EXPORT lean_object* l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = ((lean_object*)(l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___closed__0)); +x_6 = lean_string_append(x_1, x_5); +x_7 = lean_string_append(x_6, x_3); +x_1 = x_7; +x_2 = x_4; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__0)); +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 1); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_4 = lean_ctor_get(x_1, 0); +x_5 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__1)); +x_6 = lean_string_append(x_5, x_4); +x_7 = ((lean_object*)(l_Array_Array_repr___at___00__private_Lake_Build_Module_0__Lake_instReprModuleDeps_repr_spec__0___closed__4)); +x_8 = lean_string_append(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint32_t x_13; lean_object* x_14; +x_9 = lean_ctor_get(x_1, 0); +x_10 = ((lean_object*)(l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___closed__1)); +x_11 = lean_string_append(x_10, x_9); +x_12 = l_List_foldl___at___00List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0_spec__0(x_11, x_3); +x_13 = 93; +x_14 = lean_string_push(x_12, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT uint64_t l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(lean_object* x_1, size_t x_2, size_t x_3, uint64_t x_4) { _start: { uint8_t x_5; @@ -26993,7 +27142,7 @@ return x_4; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; size_t x_6; uint64_t x_7; uint64_t x_8; lean_object* x_9; @@ -27003,13 +27152,13 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_uint64(x_4); lean_dec(x_4); -x_8 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4(x_1, x_5, x_6, x_7); +x_8 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_1, x_5, x_6, x_7); lean_dec_ref(x_1); x_9 = lean_box_uint64(x_8); return x_9; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__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, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; uint64_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint64_t x_35; lean_object* x_36; lean_object* x_40; uint8_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; @@ -27038,498 +27187,371 @@ lean_inc_ref(x_48); x_49 = l_Lake_BuildTrace_mix(x_43, x_48); if (lean_obj_tag(x_46) == 0) { -lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; uint64_t x_61; lean_object* x_260; lean_object* x_261; uint8_t x_262; lean_object* x_263; lean_object* x_264; uint8_t x_265; uint8_t x_266; lean_object* x_267; lean_object* x_268; uint8_t x_269; lean_object* x_285; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +lean_object* x_50; lean_object* x_51; uint64_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint64_t x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_77; uint64_t x_78; uint8_t 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_133; uint8_t x_134; lean_object* x_135; uint8_t x_136; uint64_t x_137; lean_object* x_138; uint64_t x_139; lean_object* x_140; uint8_t x_141; uint8_t x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; lean_object* x_149; uint8_t x_180; uint8_t x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; uint8_t x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; uint64_t x_192; uint8_t x_266; lean_object* x_267; lean_object* x_268; uint8_t x_269; lean_object* x_270; lean_object* x_271; uint64_t x_272; lean_object* x_273; uint8_t x_274; uint8_t x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_300; lean_object* x_301; uint64_t x_302; lean_object* x_303; uint64_t x_304; lean_object* x_305; lean_object* x_306; uint8_t x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; lean_object* x_321; uint64_t x_322; lean_object* x_323; lean_object* x_324; uint64_t x_325; uint8_t x_336; lean_object* x_337; uint8_t x_338; lean_object* x_339; uint64_t x_340; uint64_t x_341; lean_object* x_342; lean_object* x_343; uint8_t x_364; lean_object* x_365; uint64_t x_366; lean_object* x_367; uint64_t x_368; lean_object* x_374; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; x_50 = lean_ctor_get(x_46, 0); lean_inc(x_50); x_51 = lean_ctor_get(x_46, 1); lean_inc(x_51); lean_dec_ref(x_46); -x_303 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_303); +x_385 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_385); lean_dec_ref(x_1); -x_304 = lean_task_get_own(x_303); -x_305 = lean_ctor_get(x_304, 1); -lean_inc(x_305); -lean_dec(x_304); -x_306 = lean_ctor_get(x_305, 1); -lean_inc_ref(x_306); -lean_dec(x_305); -x_285 = x_306; -goto block_302; -block_259: +x_386 = lean_task_get_own(x_385); +x_387 = lean_ctor_get(x_386, 1); +lean_inc(x_387); +lean_dec(x_386); +x_388 = lean_ctor_get(x_387, 1); +lean_inc_ref(x_388); +lean_dec(x_387); +x_374 = x_388; +goto block_384; +block_68: { -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; 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; lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_62 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_buildLean___closed__0)); -x_63 = l_System_FilePath_normalize(x_58); -x_64 = l_Lake_joinRelative(x_5, x_63); -x_65 = l_System_FilePath_normalize(x_55); -x_66 = l_Lake_joinRelative(x_64, x_65); -x_67 = l_Lean_modToFilePath(x_66, x_6, x_62); -lean_dec_ref(x_66); -lean_inc_ref(x_67); -x_68 = l_Lake_readTraceFile(x_67, x_51); -x_69 = l___private_Lake_Build_Module_0__Lake_Module_recFetchInput___lam__0___closed__0; -x_70 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__0)); -x_71 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__1)); -x_72 = lean_array_to_list(x_59); -x_73 = l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(x_72); -lean_dec(x_72); -x_74 = lean_string_append(x_71, x_73); -lean_dec_ref(x_73); -x_75 = lean_string_append(x_70, x_74); -lean_dec_ref(x_74); -x_76 = l_Std_DTreeMap_Internal_Impl_foldlM___at___00Std_DTreeMap_Internal_Impl_foldl___at___00__private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3; -x_77 = lean_alloc_ctor(0, 3, 8); -lean_ctor_set(x_77, 0, x_75); -lean_ctor_set(x_77, 1, x_69); -lean_ctor_set(x_77, 2, x_76); -lean_ctor_set_uint64(x_77, sizeof(void*)*3, x_61); -x_78 = l_Lake_BuildTrace_mix(x_57, x_77); -x_79 = !lean_is_exclusive(x_78); -if (x_79 == 0) -{ -uint64_t x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get_uint64(x_78, sizeof(void*)*3); -x_81 = lean_ctor_get(x_78, 0); -lean_dec(x_81); -x_82 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2)); -x_83 = lean_string_append(x_7, x_82); -lean_ctor_set(x_78, 0, x_83); -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; -x_84 = lean_ctor_get(x_68, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_68, 1); -lean_inc(x_85); -lean_dec_ref(x_68); -lean_inc_ref(x_78); -if (lean_is_scalar(x_45)) { - x_86 = lean_alloc_ctor(0, 3, 2); -} else { - x_86 = x_45; -} -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_78); -lean_ctor_set(x_86, 2, x_44); -lean_ctor_set_uint8(x_86, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_86, sizeof(void*)*3 + 1, x_42); -x_87 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_8, x_16, x_86); -x_88 = lean_ctor_get(x_87, 0); -lean_inc(x_88); -x_89 = lean_unbox(x_88); -lean_dec(x_88); -if (x_89 == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_ctor_get(x_87, 1); -lean_inc(x_90); -lean_dec_ref(x_87); -x_91 = lean_ctor_get(x_47, 2); -x_92 = lean_ctor_get(x_60, 2); -lean_inc_ref(x_92); -lean_dec_ref(x_60); -lean_inc(x_84); -lean_inc_ref(x_9); -x_93 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_12, x_9, x_78, x_84, x_92, x_13, x_14, x_15, x_16, x_90); -lean_dec_ref(x_92); -if (lean_obj_tag(x_93) == 0) -{ -lean_object* x_94; lean_object* x_95; uint8_t x_96; uint8_t x_97; uint8_t x_98; -x_94 = lean_ctor_get(x_93, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_93, 1); -lean_inc(x_95); -lean_dec_ref(x_93); -x_96 = 0; -x_97 = lean_unbox(x_94); -lean_dec(x_94); -x_98 = l_Lake_instDecidableEqOutputStatus(x_97, x_96); -if (x_98 == 0) -{ -uint8_t x_99; -lean_dec(x_84); -lean_dec_ref(x_78); -lean_dec_ref(x_67); -lean_dec(x_50); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_8); -x_99 = !lean_is_exclusive(x_95); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -x_100 = lean_ctor_get(x_95, 0); -x_101 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_9, x_54, x_16, x_100); -lean_dec_ref(x_16); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_101, 1); -lean_inc(x_103); -lean_dec_ref(x_101); -lean_ctor_set(x_95, 0, x_103); -x_24 = x_80; -x_25 = x_102; -x_26 = x_95; -x_27 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_104; -x_104 = !lean_is_exclusive(x_101); -if (x_104 == 0) -{ -lean_object* x_105; -x_105 = lean_ctor_get(x_101, 1); -lean_ctor_set(x_95, 0, x_105); -lean_ctor_set(x_101, 1, x_95); -return x_101; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_101, 0); -x_107 = lean_ctor_get(x_101, 1); -lean_inc(x_107); -lean_inc(x_106); -lean_dec(x_101); -lean_ctor_set(x_95, 0, x_107); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_106); -lean_ctor_set(x_108, 1, x_95); -return x_108; -} -} -} -else -{ -lean_object* x_109; uint8_t x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_109 = lean_ctor_get(x_95, 0); -x_110 = lean_ctor_get_uint8(x_95, sizeof(void*)*3); -x_111 = lean_ctor_get_uint8(x_95, sizeof(void*)*3 + 1); -x_112 = lean_ctor_get(x_95, 1); -x_113 = lean_ctor_get(x_95, 2); -lean_inc(x_113); -lean_inc(x_112); -lean_inc(x_109); -lean_dec(x_95); -x_114 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_9, x_54, x_16, x_109); -lean_dec_ref(x_16); -if (lean_obj_tag(x_114) == 0) -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_114, 1); -lean_inc(x_116); -lean_dec_ref(x_114); -x_117 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set(x_117, 1, x_112); -lean_ctor_set(x_117, 2, x_113); -lean_ctor_set_uint8(x_117, sizeof(void*)*3, x_110); -lean_ctor_set_uint8(x_117, sizeof(void*)*3 + 1, x_111); -x_24 = x_80; -x_25 = x_115; -x_26 = x_117; -x_27 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_118 = lean_ctor_get(x_114, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_114, 1); -lean_inc(x_119); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_120 = x_114; -} else { - lean_dec_ref(x_114); - x_120 = lean_box(0); -} -x_121 = lean_alloc_ctor(0, 3, 2); -lean_ctor_set(x_121, 0, x_119); -lean_ctor_set(x_121, 1, x_112); -lean_ctor_set(x_121, 2, x_113); -lean_ctor_set_uint8(x_121, sizeof(void*)*3, x_110); -lean_ctor_set_uint8(x_121, sizeof(void*)*3 + 1, x_111); -if (lean_is_scalar(x_120)) { - x_122 = lean_alloc_ctor(1, 2, 0); -} else { - x_122 = x_120; -} -lean_ctor_set(x_122, 0, x_118); -lean_ctor_set(x_122, 1, x_121); -return x_122; -} -} -} -else -{ -lean_object* x_123; -lean_inc_ref(x_16); -lean_inc_ref(x_9); -lean_inc_ref(x_91); -x_123 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_80, x_84, x_91, x_8, x_9, x_67, x_10, x_12, x_13, x_14, x_15, x_16, x_95); -if (lean_obj_tag(x_123) == 0) -{ -lean_object* x_124; -x_124 = lean_ctor_get(x_123, 0); -lean_inc(x_124); -if (lean_obj_tag(x_124) == 1) -{ -lean_object* x_125; lean_object* x_126; -lean_dec_ref(x_78); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -x_125 = lean_ctor_get(x_123, 1); -lean_inc(x_125); -lean_dec_ref(x_123); -x_126 = lean_ctor_get(x_124, 0); -lean_inc(x_126); -lean_dec_ref(x_124); -x_24 = x_80; -x_25 = x_126; -x_26 = x_125; -x_27 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_127; lean_object* x_128; -lean_dec(x_124); -x_127 = lean_ctor_get(x_123, 1); -lean_inc(x_127); -lean_dec_ref(x_123); -x_128 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_9, x_78, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_127); -lean_dec_ref(x_78); -x_35 = x_80; -x_36 = x_128; -goto block_39; -} -} -else -{ -uint8_t x_129; -lean_dec_ref(x_78); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -x_129 = !lean_is_exclusive(x_123); -if (x_129 == 0) -{ -return x_123; -} -else -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_ctor_get(x_123, 0); -x_131 = lean_ctor_get(x_123, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_123); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_130); -lean_ctor_set(x_132, 1, x_131); -return x_132; -} -} -} -} -else -{ -uint8_t x_133; -lean_dec(x_84); -lean_dec_ref(x_78); -lean_dec_ref(x_67); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_133 = !lean_is_exclusive(x_93); -if (x_133 == 0) -{ -return x_93; -} -else -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_134 = lean_ctor_get(x_93, 0); -x_135 = lean_ctor_get(x_93, 1); -lean_inc(x_135); -lean_inc(x_134); -lean_dec(x_93); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -return x_136; -} -} -} -else -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_87, 1); -lean_inc(x_137); -lean_dec_ref(x_87); -x_138 = lean_ctor_get(x_47, 2); -lean_inc_ref(x_138); -lean_inc_ref(x_16); -lean_inc_ref(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_138); -lean_inc(x_84); -x_139 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_80, x_84, x_138, x_8, x_9, x_67, x_56, x_12, x_13, x_14, x_15, x_16, x_137); -if (lean_obj_tag(x_139) == 0) -{ -lean_object* x_140; -x_140 = lean_ctor_get(x_139, 0); -lean_inc(x_140); -if (lean_obj_tag(x_140) == 1) -{ -lean_object* x_141; lean_object* x_142; -lean_dec_ref(x_138); -lean_dec(x_84); -lean_dec_ref(x_78); -lean_dec_ref(x_60); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_141 = lean_ctor_get(x_139, 1); -lean_inc(x_141); -lean_dec_ref(x_139); -x_142 = lean_ctor_get(x_140, 0); -lean_inc(x_142); -lean_dec_ref(x_140); -x_24 = x_80; -x_25 = x_142; -x_26 = x_141; -x_27 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -lean_dec(x_140); -x_143 = lean_ctor_get(x_139, 1); -lean_inc(x_143); -lean_dec_ref(x_139); -x_144 = lean_ctor_get(x_60, 2); -lean_inc_ref(x_144); -lean_dec_ref(x_60); -lean_inc_ref(x_9); -x_145 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_12, x_9, x_78, x_84, x_144, x_13, x_14, x_15, x_16, x_143); -lean_dec_ref(x_144); -if (lean_obj_tag(x_145) == 0) -{ -lean_object* x_146; lean_object* x_147; uint8_t x_148; uint8_t x_149; uint8_t x_150; -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); -lean_inc(x_147); -lean_dec_ref(x_145); -x_148 = 0; -x_149 = lean_unbox(x_146); -x_150 = l_Lake_instDecidableEqOutputStatus(x_149, x_148); -if (x_150 == 0) -{ -lean_object* x_151; uint8_t x_152; lean_object* x_153; -lean_dec_ref(x_78); -lean_dec(x_50); -lean_dec_ref(x_11); -x_151 = lean_box(0); -x_152 = lean_unbox(x_146); -lean_dec(x_146); -x_153 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_152, x_9, x_53, x_52, x_8, x_138, x_80, x_151, x_12, x_13, x_14, x_15, x_16, x_147); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -x_35 = x_80; -x_36 = x_153; -goto block_39; -} -else -{ -lean_object* x_154; +lean_object* x_57; lean_object* x_58; +x_57 = lean_box(x_3); lean_inc_ref(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc_ref(x_12); -lean_inc_ref(x_9); -x_154 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_9, x_78, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_147); -lean_dec_ref(x_78); -if (lean_obj_tag(x_154) == 0) +x_58 = lean_apply_8(x_53, x_57, x_12, x_13, x_14, x_15, x_16, x_55, lean_box(0)); +if (lean_obj_tag(x_58) == 0) { -lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; -x_155 = lean_ctor_get(x_154, 1); -lean_inc(x_155); -lean_dec_ref(x_154); -x_156 = lean_box(0); -x_157 = lean_unbox(x_146); -lean_dec(x_146); -x_158 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_157, x_9, x_53, x_52, x_8, x_138, x_80, x_156, x_12, x_13, x_14, x_15, x_16, x_155); +lean_object* x_59; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +if (lean_obj_tag(x_59) == 1) +{ +lean_object* x_60; lean_object* x_61; +lean_dec_ref(x_54); +lean_dec(x_50); +lean_dec_ref(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); -x_35 = x_80; -x_36 = x_158; +lean_dec_ref(x_11); +lean_dec_ref(x_4); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +lean_dec_ref(x_58); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +lean_dec_ref(x_59); +x_24 = x_52; +x_25 = x_61; +x_26 = x_60; +x_27 = lean_box(0); +goto block_34; +} +else +{ +lean_object* x_62; lean_object* x_63; +lean_dec(x_59); +x_62 = lean_ctor_get(x_58, 1); +lean_inc(x_62); +lean_dec_ref(x_58); +x_63 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_4, x_54, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_62); +lean_dec_ref(x_54); +x_35 = x_52; +x_36 = x_63; +goto block_39; +} +} +else +{ +uint8_t x_64; +lean_dec_ref(x_54); +lean_dec(x_50); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_4); +x_64 = !lean_is_exclusive(x_58); +if (x_64 == 0) +{ +return x_58; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_58, 0); +x_66 = lean_ctor_get(x_58, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_58); +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +return x_67; +} +} +} +block_76: +{ +if (x_72 == 0) +{ +lean_object* x_75; +lean_dec_ref(x_70); +x_75 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_4, x_71, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_73); +lean_dec_ref(x_71); +x_35 = x_69; +x_36 = x_75; goto block_39; } else { -lean_dec(x_146); -lean_dec_ref(x_138); -lean_dec_ref(x_16); +x_52 = x_69; +x_53 = x_70; +x_54 = x_71; +x_55 = x_73; +x_56 = lean_box(0); +goto block_68; +} +} +block_132: +{ +lean_object* x_88; lean_object* x_89; +x_88 = lean_ctor_get(x_85, 2); +lean_inc_ref(x_88); +lean_dec_ref(x_85); +lean_inc_ref(x_4); +x_89 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(x_12, x_4, x_84, x_83, x_88, x_13, x_14, x_15, x_16, x_86); +lean_dec_ref(x_88); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; lean_object* x_91; uint8_t x_92; uint8_t x_93; uint8_t x_94; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec_ref(x_89); +x_92 = 0; +x_93 = lean_unbox(x_90); +lean_dec(x_90); +x_94 = l_Lake_instDecidableEqOutputStatus(x_93, x_92); +if (x_94 == 0) +{ +uint8_t x_95; +lean_dec_ref(x_84); +lean_dec_ref(x_82); +lean_dec_ref(x_81); +lean_dec_ref(x_80); +lean_dec(x_77); +lean_dec(x_50); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -return x_154; +lean_dec_ref(x_11); +x_95 = !lean_is_exclusive(x_91); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_91, 0); +x_97 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_4, x_79, x_16, x_96); +lean_dec_ref(x_16); +if (lean_obj_tag(x_97) == 0) +{ +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_97, 0); +lean_inc(x_98); +x_99 = lean_ctor_get(x_97, 1); +lean_inc(x_99); +lean_dec_ref(x_97); +lean_ctor_set(x_91, 0, x_99); +x_24 = x_78; +x_25 = x_98; +x_26 = x_91; +x_27 = lean_box(0); +goto block_34; +} +else +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_97); +if (x_100 == 0) +{ +lean_object* x_101; +x_101 = lean_ctor_get(x_97, 1); +lean_ctor_set(x_91, 0, x_101); +lean_ctor_set(x_97, 1, x_91); +return x_97; +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_97, 0); +x_103 = lean_ctor_get(x_97, 1); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_97); +lean_ctor_set(x_91, 0, x_103); +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_91); +return x_104; } } } else { -uint8_t x_159; -lean_dec_ref(x_138); -lean_dec_ref(x_78); +lean_object* x_105; uint8_t x_106; uint8_t x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_105 = lean_ctor_get(x_91, 0); +x_106 = lean_ctor_get_uint8(x_91, sizeof(void*)*3); +x_107 = lean_ctor_get_uint8(x_91, sizeof(void*)*3 + 1); +x_108 = lean_ctor_get(x_91, 1); +x_109 = lean_ctor_get(x_91, 2); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_105); +lean_dec(x_91); +x_110 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_4, x_79, x_16, x_105); +lean_dec_ref(x_16); +if (lean_obj_tag(x_110) == 0) +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec_ref(x_110); +x_113 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_108); +lean_ctor_set(x_113, 2, x_109); +lean_ctor_set_uint8(x_113, sizeof(void*)*3, x_106); +lean_ctor_set_uint8(x_113, sizeof(void*)*3 + 1, x_107); +x_24 = x_78; +x_25 = x_111; +x_26 = x_113; +x_27 = lean_box(0); +goto block_34; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_114 = lean_ctor_get(x_110, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_110, 1); +lean_inc(x_115); +if (lean_is_exclusive(x_110)) { + lean_ctor_release(x_110, 0); + lean_ctor_release(x_110, 1); + x_116 = x_110; +} else { + lean_dec_ref(x_110); + x_116 = lean_box(0); +} +x_117 = lean_alloc_ctor(0, 3, 2); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_108); +lean_ctor_set(x_117, 2, x_109); +lean_ctor_set_uint8(x_117, sizeof(void*)*3, x_106); +lean_ctor_set_uint8(x_117, sizeof(void*)*3 + 1, x_107); +if (lean_is_scalar(x_116)) { + x_118 = lean_alloc_ctor(1, 2, 0); +} else { + x_118 = x_116; +} +lean_ctor_set(x_118, 0, x_114); +lean_ctor_set(x_118, 1, x_117); +return x_118; +} +} +} +else +{ +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_119; +x_119 = lean_ctor_get(x_81, 6); +lean_inc(x_119); +lean_dec_ref(x_81); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; lean_object* x_121; +x_120 = lean_ctor_get(x_80, 6); +lean_inc_ref(x_120); +lean_dec_ref(x_80); +x_121 = lean_ctor_get(x_120, 25); +lean_inc(x_121); +lean_dec_ref(x_120); +if (lean_obj_tag(x_121) == 0) +{ +x_52 = x_78; +x_53 = x_82; +x_54 = x_84; +x_55 = x_91; +x_56 = lean_box(0); +goto block_68; +} +else +{ +lean_object* x_122; uint8_t x_123; +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +lean_dec_ref(x_121); +x_123 = lean_unbox(x_122); +lean_dec(x_122); +x_69 = x_78; +x_70 = x_82; +x_71 = x_84; +x_72 = x_123; +x_73 = x_91; +x_74 = lean_box(0); +goto block_76; +} +} +else +{ +lean_object* x_124; uint8_t x_125; +lean_dec_ref(x_80); +x_124 = lean_ctor_get(x_119, 0); +lean_inc(x_124); +lean_dec_ref(x_119); +x_125 = lean_unbox(x_124); +lean_dec(x_124); +x_69 = x_78; +x_70 = x_82; +x_71 = x_84; +x_72 = x_125; +x_73 = x_91; +x_74 = lean_box(0); +goto block_76; +} +} +else +{ +lean_object* x_126; uint8_t x_127; +lean_dec_ref(x_81); +lean_dec_ref(x_80); +x_126 = lean_ctor_get(x_77, 0); +lean_inc(x_126); +lean_dec_ref(x_77); +x_127 = lean_unbox(x_126); +lean_dec(x_126); +x_69 = x_78; +x_70 = x_82; +x_71 = x_84; +x_72 = x_127; +x_73 = x_91; +x_74 = lean_box(0); +goto block_76; +} +} +} +else +{ +uint8_t x_128; +lean_dec_ref(x_84); +lean_dec_ref(x_82); +lean_dec_ref(x_81); +lean_dec_ref(x_80); +lean_dec(x_77); lean_dec(x_50); lean_dec_ref(x_16); lean_dec(x_15); @@ -27537,36 +27559,71 @@ lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_159 = !lean_is_exclusive(x_145); -if (x_159 == 0) +lean_dec_ref(x_4); +x_128 = !lean_is_exclusive(x_89); +if (x_128 == 0) { -return x_145; +return x_89; } else { -lean_object* x_160; lean_object* x_161; lean_object* x_162; -x_160 = lean_ctor_get(x_145, 0); -x_161 = lean_ctor_get(x_145, 1); -lean_inc(x_161); -lean_inc(x_160); -lean_dec(x_145); -x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_160); -lean_ctor_set(x_162, 1, x_161); -return x_162; +lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_129 = lean_ctor_get(x_89, 0); +x_130 = lean_ctor_get(x_89, 1); +lean_inc(x_130); +lean_inc(x_129); +lean_dec(x_89); +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_129); +lean_ctor_set(x_131, 1, x_130); +return x_131; } } } +block_179: +{ +if (x_147 == 0) +{ +lean_dec_ref(x_135); +lean_dec_ref(x_10); +x_77 = x_140; +x_78 = x_139; +x_79 = x_142; +x_80 = x_138; +x_81 = x_133; +x_82 = x_143; +x_83 = x_144; +x_84 = x_146; +x_85 = x_145; +x_86 = x_148; +x_87 = lean_box(0); +goto block_132; } else { -uint8_t x_163; +lean_object* x_150; lean_object* x_151; +lean_dec(x_140); lean_dec_ref(x_138); -lean_dec(x_84); -lean_dec_ref(x_78); -lean_dec_ref(x_60); +lean_dec_ref(x_133); +x_150 = lean_box(x_141); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +x_151 = lean_apply_8(x_143, x_150, x_12, x_13, x_14, x_15, x_16, x_148, lean_box(0)); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +if (lean_obj_tag(x_152) == 1) +{ +lean_object* x_153; lean_object* x_154; +lean_dec_ref(x_146); +lean_dec_ref(x_145); +lean_dec(x_144); +lean_dec_ref(x_135); lean_dec(x_50); lean_dec_ref(x_16); lean_dec(x_15); @@ -27574,34 +27631,111 @@ lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_163 = !lean_is_exclusive(x_139); -if (x_163 == 0) -{ -return x_139; +lean_dec_ref(x_10); +lean_dec_ref(x_4); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +lean_dec_ref(x_151); +x_154 = lean_ctor_get(x_152, 0); +lean_inc(x_154); +lean_dec_ref(x_152); +x_24 = x_139; +x_25 = x_154; +x_26 = x_153; +x_27 = lean_box(0); +goto block_34; } else { -lean_object* x_164; lean_object* x_165; lean_object* x_166; -x_164 = lean_ctor_get(x_139, 0); -x_165 = lean_ctor_get(x_139, 1); -lean_inc(x_165); -lean_inc(x_164); -lean_dec(x_139); -x_166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_166, 0, x_164); -lean_ctor_set(x_166, 1, x_165); +lean_object* x_155; lean_object* x_156; lean_object* x_157; +lean_dec(x_152); +x_155 = lean_ctor_get(x_151, 1); +lean_inc(x_155); +lean_dec_ref(x_151); +x_156 = lean_ctor_get(x_145, 2); +lean_inc_ref(x_156); +lean_dec_ref(x_145); +lean_inc_ref(x_4); +x_157 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2(x_12, x_4, x_146, x_144, x_156, x_13, x_14, x_15, x_16, x_155); +lean_dec_ref(x_156); +if (lean_obj_tag(x_157) == 0) +{ +lean_object* x_158; lean_object* x_159; uint8_t x_160; uint8_t x_161; uint8_t x_162; +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec_ref(x_157); +x_160 = 0; +x_161 = lean_unbox(x_158); +x_162 = l_Lake_instDecidableEqOutputStatus(x_161, x_160); +if (x_162 == 0) +{ +lean_object* x_163; uint8_t x_164; lean_object* x_165; +lean_dec_ref(x_146); +lean_dec(x_50); +lean_dec_ref(x_11); +x_163 = lean_box(0); +x_164 = lean_unbox(x_158); +lean_dec(x_158); +x_165 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_164, x_4, x_136, x_134, x_10, x_135, x_137, x_163, x_12, x_13, x_14, x_15, x_16, x_159); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +x_35 = x_139; +x_36 = x_165; +goto block_39; +} +else +{ +lean_object* x_166; +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_4); +x_166 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_4, x_146, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_159); +lean_dec_ref(x_146); +if (lean_obj_tag(x_166) == 0) +{ +lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_170; +x_167 = lean_ctor_get(x_166, 1); +lean_inc(x_167); +lean_dec_ref(x_166); +x_168 = lean_box(0); +x_169 = lean_unbox(x_158); +lean_dec(x_158); +x_170 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_169, x_4, x_136, x_134, x_10, x_135, x_137, x_168, x_12, x_13, x_14, x_15, x_16, x_167); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +x_35 = x_139; +x_36 = x_170; +goto block_39; +} +else +{ +lean_dec(x_158); +lean_dec_ref(x_135); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_10); +lean_dec_ref(x_4); return x_166; } } } -} else { -uint8_t x_167; -lean_dec_ref(x_67); -lean_dec_ref(x_60); +uint8_t x_171; +lean_dec_ref(x_146); +lean_dec_ref(x_135); lean_dec(x_50); lean_dec_ref(x_16); lean_dec(x_15); @@ -27609,262 +27743,254 @@ lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_167 = !lean_is_exclusive(x_68); -if (x_167 == 0) +lean_dec_ref(x_10); +lean_dec_ref(x_4); +x_171 = !lean_is_exclusive(x_157); +if (x_171 == 0) { -lean_object* x_168; lean_object* x_169; -x_168 = lean_ctor_get(x_68, 1); -if (lean_is_scalar(x_45)) { - x_169 = lean_alloc_ctor(0, 3, 2); -} else { - x_169 = x_45; -} -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_78); -lean_ctor_set(x_169, 2, x_44); -lean_ctor_set_uint8(x_169, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_169, sizeof(void*)*3 + 1, x_42); -lean_ctor_set(x_68, 1, x_169); -return x_68; +return x_157; } else { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -x_170 = lean_ctor_get(x_68, 0); -x_171 = lean_ctor_get(x_68, 1); -lean_inc(x_171); -lean_inc(x_170); -lean_dec(x_68); -if (lean_is_scalar(x_45)) { - x_172 = lean_alloc_ctor(0, 3, 2); -} else { - x_172 = x_45; +lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_172 = lean_ctor_get(x_157, 0); +x_173 = lean_ctor_get(x_157, 1); +lean_inc(x_173); +lean_inc(x_172); +lean_dec(x_157); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +return x_174; } -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_78); -lean_ctor_set(x_172, 2, x_44); -lean_ctor_set_uint8(x_172, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_172, sizeof(void*)*3 + 1, x_42); -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_170); -lean_ctor_set(x_173, 1, x_172); -return x_173; } } } else { -lean_object* x_174; uint64_t x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_174 = lean_ctor_get(x_78, 1); -x_175 = lean_ctor_get_uint64(x_78, sizeof(void*)*3); -x_176 = lean_ctor_get(x_78, 2); +uint8_t x_175; +lean_dec_ref(x_146); +lean_dec_ref(x_145); +lean_dec(x_144); +lean_dec_ref(x_135); +lean_dec(x_50); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_4); +x_175 = !lean_is_exclusive(x_151); +if (x_175 == 0) +{ +return x_151; +} +else +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = lean_ctor_get(x_151, 0); +x_177 = lean_ctor_get(x_151, 1); +lean_inc(x_177); lean_inc(x_176); -lean_inc(x_174); -lean_dec(x_78); -x_177 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2)); -x_178 = lean_string_append(x_7, x_177); -x_179 = lean_alloc_ctor(0, 3, 8); -lean_ctor_set(x_179, 0, x_178); -lean_ctor_set(x_179, 1, x_174); -lean_ctor_set(x_179, 2, x_176); -lean_ctor_set_uint64(x_179, sizeof(void*)*3, x_175); -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; -x_180 = lean_ctor_get(x_68, 0); -lean_inc(x_180); -x_181 = lean_ctor_get(x_68, 1); -lean_inc(x_181); -lean_dec_ref(x_68); -lean_inc_ref(x_179); -if (lean_is_scalar(x_45)) { - x_182 = lean_alloc_ctor(0, 3, 2); -} else { - x_182 = x_45; +lean_dec(x_151); +x_178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +return x_178; } -lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_179); -lean_ctor_set(x_182, 2, x_44); -lean_ctor_set_uint8(x_182, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_182, sizeof(void*)*3 + 1, x_42); -x_183 = l_Lake_Package_isArtifactCacheEnabled___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__1___redArg(x_8, x_16, x_182); -x_184 = lean_ctor_get(x_183, 0); -lean_inc(x_184); -x_185 = lean_unbox(x_184); -lean_dec(x_184); -if (x_185 == 0) +} +} +} +block_265: { -lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_186 = lean_ctor_get(x_183, 1); -lean_inc(x_186); -lean_dec_ref(x_183); -x_187 = lean_ctor_get(x_47, 2); -x_188 = lean_ctor_get(x_60, 2); -lean_inc_ref(x_188); -lean_dec_ref(x_60); -lean_inc(x_180); -lean_inc_ref(x_9); -x_189 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_12, x_9, x_179, x_180, x_188, x_13, x_14, x_15, x_16, x_186); -lean_dec_ref(x_188); -if (lean_obj_tag(x_189) == 0) -{ -lean_object* x_190; lean_object* x_191; uint8_t x_192; uint8_t x_193; uint8_t x_194; -x_190 = lean_ctor_get(x_189, 0); -lean_inc(x_190); -x_191 = lean_ctor_get(x_189, 1); -lean_inc(x_191); -lean_dec_ref(x_189); -x_192 = 0; -x_193 = lean_unbox(x_190); -lean_dec(x_190); -x_194 = l_Lake_instDecidableEqOutputStatus(x_193, x_192); -if (x_194 == 0) -{ -lean_object* x_195; uint8_t x_196; uint8_t x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -lean_dec(x_180); -lean_dec_ref(x_179); -lean_dec_ref(x_67); -lean_dec(x_50); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_8); -x_195 = lean_ctor_get(x_191, 0); -lean_inc_ref(x_195); -x_196 = lean_ctor_get_uint8(x_191, sizeof(void*)*3); -x_197 = lean_ctor_get_uint8(x_191, sizeof(void*)*3 + 1); -x_198 = lean_ctor_get(x_191, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; +x_193 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_buildLean___closed__0)); +x_194 = l_System_FilePath_normalize(x_187); +x_195 = l_Lake_joinRelative(x_7, x_194); +x_196 = l_System_FilePath_normalize(x_190); +x_197 = l_Lake_joinRelative(x_195, x_196); +x_198 = l_Lean_modToFilePath(x_197, x_8, x_193); +lean_dec_ref(x_197); lean_inc_ref(x_198); -x_199 = lean_ctor_get(x_191, 2); -lean_inc(x_199); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - lean_ctor_release(x_191, 1); - lean_ctor_release(x_191, 2); - x_200 = x_191; -} else { - lean_dec_ref(x_191); - x_200 = lean_box(0); -} -x_201 = l___private_Lake_Build_Module_0__Lake_Module_computeArtifacts___redArg(x_9, x_54, x_16, x_195); -lean_dec_ref(x_16); -if (lean_obj_tag(x_201) == 0) +x_199 = l_Lake_readTraceFile(x_198, x_51); +x_200 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__0)); +x_201 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__1)); +x_202 = lean_array_to_list(x_189); +x_203 = l_List_toString___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__0(x_202); +lean_dec(x_202); +x_204 = lean_string_append(x_201, x_203); +lean_dec_ref(x_203); +x_205 = lean_string_append(x_200, x_204); +lean_dec_ref(x_204); +x_206 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_206, 0, x_205); +lean_ctor_set(x_206, 1, x_183); +lean_ctor_set(x_206, 2, x_184); +lean_ctor_set_uint64(x_206, sizeof(void*)*3, x_192); +x_207 = l_Lake_BuildTrace_mix(x_188, x_206); +x_208 = !lean_is_exclusive(x_207); +if (x_208 == 0) { -lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -lean_dec_ref(x_201); -if (lean_is_scalar(x_200)) { - x_204 = lean_alloc_ctor(0, 3, 2); -} else { - x_204 = x_200; -} -lean_ctor_set(x_204, 0, x_203); -lean_ctor_set(x_204, 1, x_198); -lean_ctor_set(x_204, 2, x_199); -lean_ctor_set_uint8(x_204, sizeof(void*)*3, x_196); -lean_ctor_set_uint8(x_204, sizeof(void*)*3 + 1, x_197); -x_24 = x_175; -x_25 = x_202; -x_26 = x_204; -x_27 = lean_box(0); -goto block_34; -} -else +uint64_t x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_209 = lean_ctor_get_uint64(x_207, sizeof(void*)*3); +x_210 = lean_ctor_get(x_207, 0); +lean_dec(x_210); +x_211 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2)); +x_212 = lean_string_append(x_9, x_211); +lean_ctor_set(x_207, 0, x_212); +if (lean_obj_tag(x_199) == 0) { -lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; -x_205 = lean_ctor_get(x_201, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_201, 1); -lean_inc(x_206); -if (lean_is_exclusive(x_201)) { - lean_ctor_release(x_201, 0); - lean_ctor_release(x_201, 1); - x_207 = x_201; -} else { - lean_dec_ref(x_201); - x_207 = lean_box(0); -} -if (lean_is_scalar(x_200)) { - x_208 = lean_alloc_ctor(0, 3, 2); -} else { - x_208 = x_200; -} -lean_ctor_set(x_208, 0, x_206); -lean_ctor_set(x_208, 1, x_198); -lean_ctor_set(x_208, 2, x_199); -lean_ctor_set_uint8(x_208, sizeof(void*)*3, x_196); -lean_ctor_set_uint8(x_208, sizeof(void*)*3 + 1, x_197); -if (lean_is_scalar(x_207)) { - x_209 = lean_alloc_ctor(1, 2, 0); -} else { - x_209 = x_207; -} -lean_ctor_set(x_209, 0, x_205); -lean_ctor_set(x_209, 1, x_208); -return x_209; -} -} -else -{ -lean_object* x_210; -lean_inc_ref(x_16); -lean_inc_ref(x_9); -lean_inc_ref(x_187); -x_210 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_175, x_180, x_187, x_8, x_9, x_67, x_10, x_12, x_13, x_14, x_15, x_16, x_191); -if (lean_obj_tag(x_210) == 0) -{ -lean_object* x_211; -x_211 = lean_ctor_get(x_210, 0); -lean_inc(x_211); -if (lean_obj_tag(x_211) == 1) -{ -lean_object* x_212; lean_object* x_213; -lean_dec_ref(x_179); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -x_212 = lean_ctor_get(x_210, 1); -lean_inc(x_212); -lean_dec_ref(x_210); -x_213 = lean_ctor_get(x_211, 0); +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; +x_213 = lean_ctor_get(x_199, 0); lean_inc(x_213); -lean_dec_ref(x_211); -x_24 = x_175; -x_25 = x_213; -x_26 = x_212; -x_27 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_214; lean_object* x_215; -lean_dec(x_211); -x_214 = lean_ctor_get(x_210, 1); +x_214 = lean_ctor_get(x_199, 1); lean_inc(x_214); -lean_dec_ref(x_210); -x_215 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_9, x_179, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_214); -lean_dec_ref(x_179); -x_35 = x_175; -x_36 = x_215; -goto block_39; +lean_dec_ref(x_199); +x_215 = lean_ctor_get(x_47, 0); +x_216 = lean_ctor_get(x_47, 1); +x_217 = lean_ctor_get(x_47, 2); +x_218 = lean_box_uint64(x_209); +lean_inc_ref(x_4); +lean_inc_ref(x_10); +lean_inc_ref(x_217); +lean_inc(x_213); +x_219 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1___boxed), 14, 6); +lean_closure_set(x_219, 0, x_218); +lean_closure_set(x_219, 1, x_213); +lean_closure_set(x_219, 2, x_217); +lean_closure_set(x_219, 3, x_10); +lean_closure_set(x_219, 4, x_4); +lean_closure_set(x_219, 5, x_198); +lean_inc_ref(x_207); +if (lean_is_scalar(x_45)) { + x_220 = lean_alloc_ctor(0, 3, 2); +} else { + x_220 = x_45; +} +lean_ctor_set(x_220, 0, x_214); +lean_ctor_set(x_220, 1, x_207); +lean_ctor_set(x_220, 2, x_44); +lean_ctor_set_uint8(x_220, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_220, sizeof(void*)*3 + 1, x_42); +if (lean_obj_tag(x_182) == 0) +{ +lean_object* x_221; +x_221 = lean_ctor_get(x_216, 6); +if (lean_obj_tag(x_221) == 0) +{ +lean_object* x_222; lean_object* x_223; +x_222 = lean_ctor_get(x_215, 6); +x_223 = lean_ctor_get(x_222, 25); +if (lean_obj_tag(x_223) == 0) +{ +lean_dec_ref(x_10); +lean_inc_ref(x_216); +lean_inc_ref(x_215); +x_77 = x_182; +x_78 = x_209; +x_79 = x_186; +x_80 = x_215; +x_81 = x_216; +x_82 = x_219; +x_83 = x_213; +x_84 = x_207; +x_85 = x_191; +x_86 = x_220; +x_87 = lean_box(0); +goto block_132; +} +else +{ +lean_object* x_224; uint8_t x_225; +x_224 = lean_ctor_get(x_223, 0); +x_225 = lean_unbox(x_224); +lean_inc_ref(x_215); +lean_inc_ref(x_217); +lean_inc_ref(x_216); +x_133 = x_216; +x_134 = x_180; +x_135 = x_217; +x_136 = x_181; +x_137 = x_209; +x_138 = x_215; +x_139 = x_209; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_219; +x_144 = x_213; +x_145 = x_191; +x_146 = x_207; +x_147 = x_225; +x_148 = x_220; +x_149 = lean_box(0); +goto block_179; } } else { -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; -lean_dec_ref(x_179); +lean_object* x_226; uint8_t x_227; +x_226 = lean_ctor_get(x_221, 0); +x_227 = lean_unbox(x_226); +lean_inc_ref(x_215); +lean_inc_ref(x_217); +lean_inc_ref(x_216); +x_133 = x_216; +x_134 = x_180; +x_135 = x_217; +x_136 = x_181; +x_137 = x_209; +x_138 = x_215; +x_139 = x_209; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_219; +x_144 = x_213; +x_145 = x_191; +x_146 = x_207; +x_147 = x_227; +x_148 = x_220; +x_149 = lean_box(0); +goto block_179; +} +} +else +{ +lean_object* x_228; uint8_t x_229; +x_228 = lean_ctor_get(x_182, 0); +x_229 = lean_unbox(x_228); +lean_inc_ref(x_215); +lean_inc_ref(x_217); +lean_inc_ref(x_216); +x_133 = x_216; +x_134 = x_180; +x_135 = x_217; +x_136 = x_181; +x_137 = x_209; +x_138 = x_215; +x_139 = x_209; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_219; +x_144 = x_213; +x_145 = x_191; +x_146 = x_207; +x_147 = x_229; +x_148 = x_220; +x_149 = lean_box(0); +goto block_179; +} +} +else +{ +uint8_t x_230; +lean_dec_ref(x_198); +lean_dec_ref(x_191); +lean_dec(x_182); lean_dec(x_50); lean_dec_ref(x_16); lean_dec(x_15); @@ -27872,205 +27998,218 @@ lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_9); -x_216 = lean_ctor_get(x_210, 0); -lean_inc(x_216); -x_217 = lean_ctor_get(x_210, 1); -lean_inc(x_217); -if (lean_is_exclusive(x_210)) { - lean_ctor_release(x_210, 0); - lean_ctor_release(x_210, 1); - x_218 = x_210; +lean_dec_ref(x_10); +lean_dec_ref(x_4); +x_230 = !lean_is_exclusive(x_199); +if (x_230 == 0) +{ +lean_object* x_231; lean_object* x_232; +x_231 = lean_ctor_get(x_199, 1); +if (lean_is_scalar(x_45)) { + x_232 = lean_alloc_ctor(0, 3, 2); } else { - lean_dec_ref(x_210); - x_218 = lean_box(0); -} -if (lean_is_scalar(x_218)) { - x_219 = lean_alloc_ctor(1, 2, 0); -} else { - x_219 = x_218; -} -lean_ctor_set(x_219, 0, x_216); -lean_ctor_set(x_219, 1, x_217); -return x_219; -} + x_232 = x_45; } +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_207); +lean_ctor_set(x_232, 2, x_44); +lean_ctor_set_uint8(x_232, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_232, sizeof(void*)*3 + 1, x_42); +lean_ctor_set(x_199, 1, x_232); +return x_199; } else { -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -lean_dec(x_180); -lean_dec_ref(x_179); -lean_dec_ref(x_67); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_220 = lean_ctor_get(x_189, 0); -lean_inc(x_220); -x_221 = lean_ctor_get(x_189, 1); -lean_inc(x_221); -if (lean_is_exclusive(x_189)) { - lean_ctor_release(x_189, 0); - lean_ctor_release(x_189, 1); - x_222 = x_189; -} else { - lean_dec_ref(x_189); - x_222 = lean_box(0); -} -if (lean_is_scalar(x_222)) { - x_223 = lean_alloc_ctor(1, 2, 0); -} else { - x_223 = x_222; -} -lean_ctor_set(x_223, 0, x_220); -lean_ctor_set(x_223, 1, x_221); -return x_223; -} -} -else -{ -lean_object* x_224; lean_object* x_225; lean_object* x_226; -x_224 = lean_ctor_get(x_183, 1); -lean_inc(x_224); -lean_dec_ref(x_183); -x_225 = lean_ctor_get(x_47, 2); -lean_inc_ref(x_225); -lean_inc_ref(x_16); -lean_inc_ref(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_225); -lean_inc(x_180); -x_226 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__0(x_175, x_180, x_225, x_8, x_9, x_67, x_56, x_12, x_13, x_14, x_15, x_16, x_224); -if (lean_obj_tag(x_226) == 0) -{ -lean_object* x_227; -x_227 = lean_ctor_get(x_226, 0); -lean_inc(x_227); -if (lean_obj_tag(x_227) == 1) -{ -lean_object* x_228; lean_object* x_229; -lean_dec_ref(x_225); -lean_dec(x_180); -lean_dec_ref(x_179); -lean_dec_ref(x_60); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_228 = lean_ctor_get(x_226, 1); -lean_inc(x_228); -lean_dec_ref(x_226); -x_229 = lean_ctor_get(x_227, 0); -lean_inc(x_229); -lean_dec_ref(x_227); -x_24 = x_175; -x_25 = x_229; -x_26 = x_228; -x_27 = lean_box(0); -goto block_34; -} -else -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; -lean_dec(x_227); -x_230 = lean_ctor_get(x_226, 1); -lean_inc(x_230); -lean_dec_ref(x_226); -x_231 = lean_ctor_get(x_60, 2); -lean_inc_ref(x_231); -lean_dec_ref(x_60); -lean_inc_ref(x_9); -x_232 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_12, x_9, x_179, x_180, x_231, x_13, x_14, x_15, x_16, x_230); -lean_dec_ref(x_231); -if (lean_obj_tag(x_232) == 0) -{ -lean_object* x_233; lean_object* x_234; uint8_t x_235; uint8_t x_236; uint8_t x_237; -x_233 = lean_ctor_get(x_232, 0); -lean_inc(x_233); -x_234 = lean_ctor_get(x_232, 1); +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_233 = lean_ctor_get(x_199, 0); +x_234 = lean_ctor_get(x_199, 1); lean_inc(x_234); -lean_dec_ref(x_232); -x_235 = 0; -x_236 = lean_unbox(x_233); -x_237 = l_Lake_instDecidableEqOutputStatus(x_236, x_235); -if (x_237 == 0) -{ -lean_object* x_238; uint8_t x_239; lean_object* x_240; -lean_dec_ref(x_179); -lean_dec(x_50); -lean_dec_ref(x_11); -x_238 = lean_box(0); -x_239 = lean_unbox(x_233); -lean_dec(x_233); -x_240 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_239, x_9, x_53, x_52, x_8, x_225, x_175, x_238, x_12, x_13, x_14, x_15, x_16, x_234); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -x_35 = x_175; -x_36 = x_240; -goto block_39; +lean_inc(x_233); +lean_dec(x_199); +if (lean_is_scalar(x_45)) { + x_235 = lean_alloc_ctor(0, 3, 2); +} else { + x_235 = x_45; } -else -{ -lean_object* x_241; -lean_inc_ref(x_16); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc_ref(x_9); -x_241 = l___private_Lake_Build_Module_0__Lake_Module_buildLean(x_9, x_179, x_50, x_11, x_12, x_13, x_14, x_15, x_16, x_234); -lean_dec_ref(x_179); -if (lean_obj_tag(x_241) == 0) -{ -lean_object* x_242; lean_object* x_243; uint8_t x_244; lean_object* x_245; -x_242 = lean_ctor_get(x_241, 1); -lean_inc(x_242); -lean_dec_ref(x_241); -x_243 = lean_box(0); -x_244 = lean_unbox(x_233); -lean_dec(x_233); -x_245 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1(x_244, x_9, x_53, x_52, x_8, x_225, x_175, x_243, x_12, x_13, x_14, x_15, x_16, x_242); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -x_35 = x_175; -x_36 = x_245; -goto block_39; -} -else -{ -lean_dec(x_233); -lean_dec_ref(x_225); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -return x_241; +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_207); +lean_ctor_set(x_235, 2, x_44); +lean_ctor_set_uint8(x_235, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_235, sizeof(void*)*3 + 1, x_42); +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_233); +lean_ctor_set(x_236, 1, x_235); +return x_236; } } } else { -lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -lean_dec_ref(x_225); -lean_dec_ref(x_179); +lean_object* x_237; uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_237 = lean_ctor_get(x_207, 1); +x_238 = lean_ctor_get_uint64(x_207, sizeof(void*)*3); +x_239 = lean_ctor_get(x_207, 2); +lean_inc(x_239); +lean_inc(x_237); +lean_dec(x_207); +x_240 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__2)); +x_241 = lean_string_append(x_9, x_240); +x_242 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_237); +lean_ctor_set(x_242, 2, x_239); +lean_ctor_set_uint64(x_242, sizeof(void*)*3, x_238); +if (lean_obj_tag(x_199) == 0) +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_243 = lean_ctor_get(x_199, 0); +lean_inc(x_243); +x_244 = lean_ctor_get(x_199, 1); +lean_inc(x_244); +lean_dec_ref(x_199); +x_245 = lean_ctor_get(x_47, 0); +x_246 = lean_ctor_get(x_47, 1); +x_247 = lean_ctor_get(x_47, 2); +x_248 = lean_box_uint64(x_238); +lean_inc_ref(x_4); +lean_inc_ref(x_10); +lean_inc_ref(x_247); +lean_inc(x_243); +x_249 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__1___boxed), 14, 6); +lean_closure_set(x_249, 0, x_248); +lean_closure_set(x_249, 1, x_243); +lean_closure_set(x_249, 2, x_247); +lean_closure_set(x_249, 3, x_10); +lean_closure_set(x_249, 4, x_4); +lean_closure_set(x_249, 5, x_198); +lean_inc_ref(x_242); +if (lean_is_scalar(x_45)) { + x_250 = lean_alloc_ctor(0, 3, 2); +} else { + x_250 = x_45; +} +lean_ctor_set(x_250, 0, x_244); +lean_ctor_set(x_250, 1, x_242); +lean_ctor_set(x_250, 2, x_44); +lean_ctor_set_uint8(x_250, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_250, sizeof(void*)*3 + 1, x_42); +if (lean_obj_tag(x_182) == 0) +{ +lean_object* x_251; +x_251 = lean_ctor_get(x_246, 6); +if (lean_obj_tag(x_251) == 0) +{ +lean_object* x_252; lean_object* x_253; +x_252 = lean_ctor_get(x_245, 6); +x_253 = lean_ctor_get(x_252, 25); +if (lean_obj_tag(x_253) == 0) +{ +lean_dec_ref(x_10); +lean_inc_ref(x_246); +lean_inc_ref(x_245); +x_77 = x_182; +x_78 = x_238; +x_79 = x_186; +x_80 = x_245; +x_81 = x_246; +x_82 = x_249; +x_83 = x_243; +x_84 = x_242; +x_85 = x_191; +x_86 = x_250; +x_87 = lean_box(0); +goto block_132; +} +else +{ +lean_object* x_254; uint8_t x_255; +x_254 = lean_ctor_get(x_253, 0); +x_255 = lean_unbox(x_254); +lean_inc_ref(x_245); +lean_inc_ref(x_247); +lean_inc_ref(x_246); +x_133 = x_246; +x_134 = x_180; +x_135 = x_247; +x_136 = x_181; +x_137 = x_238; +x_138 = x_245; +x_139 = x_238; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_249; +x_144 = x_243; +x_145 = x_191; +x_146 = x_242; +x_147 = x_255; +x_148 = x_250; +x_149 = lean_box(0); +goto block_179; +} +} +else +{ +lean_object* x_256; uint8_t x_257; +x_256 = lean_ctor_get(x_251, 0); +x_257 = lean_unbox(x_256); +lean_inc_ref(x_245); +lean_inc_ref(x_247); +lean_inc_ref(x_246); +x_133 = x_246; +x_134 = x_180; +x_135 = x_247; +x_136 = x_181; +x_137 = x_238; +x_138 = x_245; +x_139 = x_238; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_249; +x_144 = x_243; +x_145 = x_191; +x_146 = x_242; +x_147 = x_257; +x_148 = x_250; +x_149 = lean_box(0); +goto block_179; +} +} +else +{ +lean_object* x_258; uint8_t x_259; +x_258 = lean_ctor_get(x_182, 0); +x_259 = lean_unbox(x_258); +lean_inc_ref(x_245); +lean_inc_ref(x_247); +lean_inc_ref(x_246); +x_133 = x_246; +x_134 = x_180; +x_135 = x_247; +x_136 = x_181; +x_137 = x_238; +x_138 = x_245; +x_139 = x_238; +x_140 = x_182; +x_141 = x_185; +x_142 = x_186; +x_143 = x_249; +x_144 = x_243; +x_145 = x_191; +x_146 = x_242; +x_147 = x_259; +x_148 = x_250; +x_149 = lean_box(0); +goto block_179; +} +} +else +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +lean_dec_ref(x_198); +lean_dec_ref(x_191); +lean_dec(x_182); lean_dec(x_50); lean_dec_ref(x_16); lean_dec(x_15); @@ -28078,314 +28217,436 @@ lean_dec(x_14); lean_dec(x_13); lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_246 = lean_ctor_get(x_232, 0); -lean_inc(x_246); -x_247 = lean_ctor_get(x_232, 1); -lean_inc(x_247); -if (lean_is_exclusive(x_232)) { - lean_ctor_release(x_232, 0); - lean_ctor_release(x_232, 1); - x_248 = x_232; +lean_dec_ref(x_10); +lean_dec_ref(x_4); +x_260 = lean_ctor_get(x_199, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_199, 1); +lean_inc(x_261); +if (lean_is_exclusive(x_199)) { + lean_ctor_release(x_199, 0); + lean_ctor_release(x_199, 1); + x_262 = x_199; } else { - lean_dec_ref(x_232); - x_248 = lean_box(0); -} -if (lean_is_scalar(x_248)) { - x_249 = lean_alloc_ctor(1, 2, 0); -} else { - x_249 = x_248; -} -lean_ctor_set(x_249, 0, x_246); -lean_ctor_set(x_249, 1, x_247); -return x_249; -} -} -} -else -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -lean_dec_ref(x_225); -lean_dec(x_180); -lean_dec_ref(x_179); -lean_dec_ref(x_60); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_250 = lean_ctor_get(x_226, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_226, 1); -lean_inc(x_251); -if (lean_is_exclusive(x_226)) { - lean_ctor_release(x_226, 0); - lean_ctor_release(x_226, 1); - x_252 = x_226; -} else { - lean_dec_ref(x_226); - x_252 = lean_box(0); -} -if (lean_is_scalar(x_252)) { - x_253 = lean_alloc_ctor(1, 2, 0); -} else { - x_253 = x_252; -} -lean_ctor_set(x_253, 0, x_250); -lean_ctor_set(x_253, 1, x_251); -return x_253; -} -} -} -else -{ -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; -lean_dec_ref(x_67); -lean_dec_ref(x_60); -lean_dec(x_50); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -x_254 = lean_ctor_get(x_68, 0); -lean_inc(x_254); -x_255 = lean_ctor_get(x_68, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_68)) { - lean_ctor_release(x_68, 0); - lean_ctor_release(x_68, 1); - x_256 = x_68; -} else { - lean_dec_ref(x_68); - x_256 = lean_box(0); + lean_dec_ref(x_199); + x_262 = lean_box(0); } if (lean_is_scalar(x_45)) { - x_257 = lean_alloc_ctor(0, 3, 2); + x_263 = lean_alloc_ctor(0, 3, 2); } else { - x_257 = x_45; + x_263 = x_45; } -lean_ctor_set(x_257, 0, x_255); -lean_ctor_set(x_257, 1, x_179); -lean_ctor_set(x_257, 2, x_44); -lean_ctor_set_uint8(x_257, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_257, sizeof(void*)*3 + 1, x_42); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_261); +lean_ctor_set(x_263, 1, x_242); +lean_ctor_set(x_263, 2, x_44); +lean_ctor_set_uint8(x_263, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_263, sizeof(void*)*3 + 1, x_42); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(1, 2, 0); } else { - x_258 = x_256; + x_264 = x_262; } -lean_ctor_set(x_258, 0, x_254); -lean_ctor_set(x_258, 1, x_257); -return x_258; +lean_ctor_set(x_264, 0, x_260); +lean_ctor_set(x_264, 1, x_263); +return x_264; } } } -block_284: +block_295: { -lean_object* x_270; lean_object* x_271; lean_object* x_272; uint64_t x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; -x_270 = l_Lake_BuildType_leanArgs(x_269); -x_271 = l_Array_append___redArg(x_270, x_261); -lean_dec_ref(x_261); -x_272 = l_Array_append___redArg(x_271, x_260); -x_273 = l_Lake_Hash_nil; -x_274 = lean_unsigned_to_nat(0u); -x_275 = lean_array_get_size(x_272); -x_276 = lean_nat_dec_lt(x_274, x_275); -if (x_276 == 0) -{ -x_52 = x_262; -x_53 = x_265; -x_54 = x_266; -x_55 = x_264; -x_56 = x_262; -x_57 = x_267; -x_58 = x_263; -x_59 = x_272; -x_60 = x_268; -x_61 = x_273; -goto block_259; -} -else -{ -uint8_t x_277; -x_277 = lean_nat_dec_le(x_275, x_275); -if (x_277 == 0) -{ -if (x_276 == 0) -{ -x_52 = x_262; -x_53 = x_265; -x_54 = x_266; -x_55 = x_264; -x_56 = x_262; -x_57 = x_267; -x_58 = x_263; -x_59 = x_272; -x_60 = x_268; -x_61 = x_273; -goto block_259; -} -else -{ -size_t x_278; size_t x_279; uint64_t x_280; -x_278 = 0; -x_279 = lean_usize_of_nat(x_275); -x_280 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4(x_272, x_278, x_279, x_273); -x_52 = x_262; -x_53 = x_265; -x_54 = x_266; -x_55 = x_264; -x_56 = x_262; -x_57 = x_267; -x_58 = x_263; -x_59 = x_272; -x_60 = x_268; -x_61 = x_280; -goto block_259; -} -} -else -{ -size_t x_281; size_t x_282; uint64_t x_283; -x_281 = 0; -x_282 = lean_usize_of_nat(x_275); -x_283 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__4(x_272, x_281, x_282, x_273); -x_52 = x_262; -x_53 = x_265; -x_54 = x_266; -x_55 = x_264; -x_56 = x_262; -x_57 = x_267; -x_58 = x_263; -x_59 = x_272; -x_60 = x_268; -x_61 = x_283; -goto block_259; -} -} -} -block_302: -{ -lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; uint8_t x_293; lean_object* x_294; uint8_t x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; uint8_t x_301; -x_286 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_286); -x_287 = lean_ctor_get(x_4, 0); -x_288 = lean_ctor_get_uint8(x_11, sizeof(void*)*7); -x_289 = lean_ctor_get(x_11, 6); -x_290 = lean_ctor_get(x_3, 6); -lean_inc_ref(x_290); -x_291 = lean_ctor_get(x_3, 7); -lean_inc_ref(x_291); -x_292 = lean_ctor_get_uint8(x_3, sizeof(void*)*26 + 4); -lean_dec_ref(x_3); -x_293 = lean_ctor_get_uint8(x_286, sizeof(void*)*13); -x_294 = lean_ctor_get(x_286, 1); -lean_inc_ref(x_294); -lean_dec_ref(x_286); -x_295 = lean_ctor_get_uint8(x_287, sizeof(void*)*13); -x_296 = lean_ctor_get(x_287, 1); -lean_inc_ref(x_285); -x_297 = l_Lake_BuildTrace_mix(x_49, x_285); -x_298 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3)); -lean_inc(x_289); -x_299 = l___private_Lake_Build_Module_0__Lake_traceOptions(x_289, x_298); -x_300 = l_Lake_BuildTrace_mix(x_297, x_299); -x_301 = l_Lake_instOrdBuildType_ord(x_293, x_295); -if (x_301 == 2) -{ -x_260 = x_296; -x_261 = x_294; -x_262 = x_292; -x_263 = x_290; -x_264 = x_291; -x_265 = x_288; -x_266 = x_288; -x_267 = x_300; -x_268 = x_285; -x_269 = x_295; -goto block_284; -} -else -{ -x_260 = x_296; -x_261 = x_294; -x_262 = x_292; -x_263 = x_290; -x_264 = x_291; -x_265 = x_288; -x_266 = x_288; -x_267 = x_300; -x_268 = x_285; -x_269 = x_293; -goto block_284; -} -} -} -else -{ -uint8_t x_307; -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; uint8_t x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; uint8_t x_287; +x_275 = lean_ctor_get(x_5, 1); +lean_inc_ref(x_275); +x_276 = lean_ctor_get(x_6, 0); +x_277 = lean_ctor_get(x_5, 6); +lean_inc_ref(x_277); +x_278 = lean_ctor_get(x_5, 7); +lean_inc_ref(x_278); +x_279 = lean_ctor_get(x_5, 25); +lean_inc(x_279); +x_280 = lean_ctor_get_uint8(x_5, sizeof(void*)*26 + 4); lean_dec_ref(x_5); -lean_dec_ref(x_3); -lean_dec_ref(x_1); -x_307 = !lean_is_exclusive(x_46); -if (x_307 == 0) +x_281 = lean_ctor_get(x_275, 1); +lean_inc_ref(x_281); +lean_dec_ref(x_275); +x_282 = lean_ctor_get(x_276, 1); +x_283 = l_Lake_BuildType_leanArgs(x_274); +x_284 = l_Array_append___redArg(x_283, x_281); +lean_dec_ref(x_281); +x_285 = l_Array_append___redArg(x_284, x_282); +x_286 = lean_array_get_size(x_285); +x_287 = lean_nat_dec_lt(x_271, x_286); +if (x_287 == 0) { -lean_object* x_308; lean_object* x_309; -x_308 = lean_ctor_get(x_46, 1); -if (lean_is_scalar(x_45)) { - x_309 = lean_alloc_ctor(0, 3, 2); -} else { - x_309 = x_45; +x_180 = x_280; +x_181 = x_266; +x_182 = x_279; +x_183 = x_267; +x_184 = x_268; +x_185 = x_280; +x_186 = x_269; +x_187 = x_277; +x_188 = x_270; +x_189 = x_285; +x_190 = x_278; +x_191 = x_273; +x_192 = x_272; +goto block_265; } -lean_ctor_set(x_309, 0, x_308); -lean_ctor_set(x_309, 1, x_49); -lean_ctor_set(x_309, 2, x_44); -lean_ctor_set_uint8(x_309, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_309, sizeof(void*)*3 + 1, x_42); -lean_ctor_set(x_46, 1, x_309); +else +{ +uint8_t x_288; +x_288 = lean_nat_dec_le(x_286, x_286); +if (x_288 == 0) +{ +if (x_287 == 0) +{ +x_180 = x_280; +x_181 = x_266; +x_182 = x_279; +x_183 = x_267; +x_184 = x_268; +x_185 = x_280; +x_186 = x_269; +x_187 = x_277; +x_188 = x_270; +x_189 = x_285; +x_190 = x_278; +x_191 = x_273; +x_192 = x_272; +goto block_265; +} +else +{ +size_t x_289; size_t x_290; uint64_t x_291; +x_289 = 0; +x_290 = lean_usize_of_nat(x_286); +x_291 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_285, x_289, x_290, x_272); +x_180 = x_280; +x_181 = x_266; +x_182 = x_279; +x_183 = x_267; +x_184 = x_268; +x_185 = x_280; +x_186 = x_269; +x_187 = x_277; +x_188 = x_270; +x_189 = x_285; +x_190 = x_278; +x_191 = x_273; +x_192 = x_291; +goto block_265; +} +} +else +{ +size_t x_292; size_t x_293; uint64_t x_294; +x_292 = 0; +x_293 = lean_usize_of_nat(x_286); +x_294 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3(x_285, x_292, x_293, x_272); +x_180 = x_280; +x_181 = x_266; +x_182 = x_279; +x_183 = x_267; +x_184 = x_268; +x_185 = x_280; +x_186 = x_269; +x_187 = x_277; +x_188 = x_270; +x_189 = x_285; +x_190 = x_278; +x_191 = x_273; +x_192 = x_294; +goto block_265; +} +} +} +block_315: +{ +lean_object* x_307; lean_object* x_308; uint8_t x_309; uint8_t x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; +x_307 = lean_ctor_get(x_5, 1); +x_308 = lean_ctor_get(x_6, 0); +x_309 = lean_ctor_get_uint8(x_307, sizeof(void*)*13); +x_310 = lean_ctor_get_uint8(x_308, sizeof(void*)*13); +x_311 = lean_string_append(x_303, x_306); +lean_dec_ref(x_306); +lean_inc_ref(x_298); +lean_inc_ref(x_297); +x_312 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_297); +lean_ctor_set(x_312, 2, x_298); +lean_ctor_set_uint64(x_312, sizeof(void*)*3, x_304); +x_313 = l_Lake_BuildTrace_mix(x_301, x_312); +x_314 = l_Lake_instOrdBuildType_ord(x_309, x_310); +if (x_314 == 2) +{ +x_266 = x_296; +x_267 = x_297; +x_268 = x_298; +x_269 = x_299; +x_270 = x_313; +x_271 = x_300; +x_272 = x_302; +x_273 = x_305; +x_274 = x_310; +goto block_295; +} +else +{ +x_266 = x_296; +x_267 = x_297; +x_268 = x_298; +x_269 = x_299; +x_270 = x_313; +x_271 = x_300; +x_272 = x_302; +x_273 = x_305; +x_274 = x_309; +goto block_295; +} +} +block_335: +{ +uint64_t x_326; lean_object* x_327; +x_326 = lean_uint64_mix_hash(x_322, x_325); +x_327 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__3)); +if (lean_obj_tag(x_323) == 0) +{ +lean_object* x_328; +x_328 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__4)); +x_296 = x_316; +x_297 = x_317; +x_298 = x_318; +x_299 = x_319; +x_300 = x_320; +x_301 = x_321; +x_302 = x_322; +x_303 = x_327; +x_304 = x_326; +x_305 = x_324; +x_306 = x_328; +goto block_315; +} +else +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; +x_329 = lean_ctor_get(x_323, 0); +lean_inc(x_329); +lean_dec_ref(x_323); +x_330 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__5)); +x_331 = l_addParenHeuristic(x_329); +x_332 = lean_string_append(x_330, x_331); +lean_dec_ref(x_331); +x_333 = ((lean_object*)(l___private_Init_Data_Nat_Fold_0__Nat_foldTR_loop___at___00__private_Lake_Build_Module_0__Lake_fetchImportInfo_spec__2___redArg___closed__2)); +x_334 = lean_string_append(x_332, x_333); +x_296 = x_316; +x_297 = x_317; +x_298 = x_318; +x_299 = x_319; +x_300 = x_320; +x_301 = x_321; +x_302 = x_322; +x_303 = x_327; +x_304 = x_326; +x_305 = x_324; +x_306 = x_334; +goto block_315; +} +} +block_363: +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint64_t x_350; uint64_t x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; +x_344 = lean_string_append(x_339, x_343); +lean_dec_ref(x_343); +x_345 = lean_unsigned_to_nat(0u); +x_346 = l___private_Lake_Build_Module_0__Lake_Module_recFetchInput___lam__0___closed__0; +x_347 = l_Std_DTreeMap_Internal_Impl_foldlM___at___00Std_DTreeMap_Internal_Impl_foldl___at___00__private_Lake_Build_Module_0__Lake_traceOptions_spec__0_spec__0___closed__3; +x_348 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_348, 0, x_344); +lean_ctor_set(x_348, 1, x_346); +lean_ctor_set(x_348, 2, x_347); +lean_ctor_set_uint64(x_348, sizeof(void*)*3, x_341); +x_349 = l_Lake_BuildTrace_mix(x_337, x_348); +x_350 = l_Lean_Name_hash___override(x_8); +x_351 = lean_uint64_mix_hash(x_340, x_350); +x_352 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__6)); +lean_inc(x_8); +x_353 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_8, x_3); +x_354 = lean_string_append(x_352, x_353); +lean_dec_ref(x_353); +x_355 = lean_alloc_ctor(0, 3, 8); +lean_ctor_set(x_355, 0, x_354); +lean_ctor_set(x_355, 1, x_346); +lean_ctor_set(x_355, 2, x_347); +lean_ctor_set_uint64(x_355, sizeof(void*)*3, x_351); +x_356 = l_Lake_BuildTrace_mix(x_349, x_355); +lean_inc_ref(x_10); +x_357 = l_Lake_Package_id_x3f(x_10); +if (lean_obj_tag(x_357) == 0) +{ +uint64_t x_358; +x_358 = 11; +x_316 = x_336; +x_317 = x_346; +x_318 = x_347; +x_319 = x_338; +x_320 = x_345; +x_321 = x_356; +x_322 = x_340; +x_323 = x_357; +x_324 = x_342; +x_325 = x_358; +goto block_335; +} +else +{ +lean_object* x_359; uint64_t x_360; uint64_t x_361; uint64_t x_362; +x_359 = lean_ctor_get(x_357, 0); +lean_inc(x_359); +x_360 = lean_string_hash(x_359); +lean_dec(x_359); +x_361 = 13; +x_362 = lean_uint64_mix_hash(x_360, x_361); +x_316 = x_336; +x_317 = x_346; +x_318 = x_347; +x_319 = x_338; +x_320 = x_345; +x_321 = x_356; +x_322 = x_340; +x_323 = x_357; +x_324 = x_342; +x_325 = x_362; +goto block_335; +} +} +block_373: +{ +uint64_t x_369; lean_object* x_370; +x_369 = lean_uint64_mix_hash(x_366, x_368); +x_370 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__7)); +if (x_364 == 0) +{ +lean_object* x_371; +x_371 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__8)); +x_336 = x_364; +x_337 = x_365; +x_338 = x_364; +x_339 = x_370; +x_340 = x_366; +x_341 = x_369; +x_342 = x_367; +x_343 = x_371; +goto block_363; +} +else +{ +lean_object* x_372; +x_372 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__9)); +x_336 = x_364; +x_337 = x_365; +x_338 = x_364; +x_339 = x_370; +x_340 = x_366; +x_341 = x_369; +x_342 = x_367; +x_343 = x_372; +goto block_363; +} +} +block_384: +{ +uint8_t x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; uint64_t x_381; +x_375 = lean_ctor_get_uint8(x_11, sizeof(void*)*7); +x_376 = lean_ctor_get(x_11, 6); +lean_inc_ref(x_374); +x_377 = l_Lake_BuildTrace_mix(x_49, x_374); +x_378 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___closed__10)); +lean_inc(x_376); +x_379 = l___private_Lake_Build_Module_0__Lake_traceOptions(x_376, x_378); +x_380 = l_Lake_BuildTrace_mix(x_377, x_379); +x_381 = l_Lake_Hash_nil; +if (x_375 == 0) +{ +uint64_t x_382; +x_382 = 13; +x_364 = x_375; +x_365 = x_380; +x_366 = x_381; +x_367 = x_374; +x_368 = x_382; +goto block_373; +} +else +{ +uint64_t x_383; +x_383 = 11; +x_364 = x_375; +x_365 = x_380; +x_366 = x_381; +x_367 = x_374; +x_368 = x_383; +goto block_373; +} +} +} +else +{ +uint8_t x_389; +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_389 = !lean_is_exclusive(x_46); +if (x_389 == 0) +{ +lean_object* x_390; lean_object* x_391; +x_390 = lean_ctor_get(x_46, 1); +if (lean_is_scalar(x_45)) { + x_391 = lean_alloc_ctor(0, 3, 2); +} else { + x_391 = x_45; +} +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_49); +lean_ctor_set(x_391, 2, x_44); +lean_ctor_set_uint8(x_391, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_391, sizeof(void*)*3 + 1, x_42); +lean_ctor_set(x_46, 1, x_391); return x_46; } else { -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_310 = lean_ctor_get(x_46, 0); -x_311 = lean_ctor_get(x_46, 1); -lean_inc(x_311); -lean_inc(x_310); +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; +x_392 = lean_ctor_get(x_46, 0); +x_393 = lean_ctor_get(x_46, 1); +lean_inc(x_393); +lean_inc(x_392); lean_dec(x_46); if (lean_is_scalar(x_45)) { - x_312 = lean_alloc_ctor(0, 3, 2); + x_394 = lean_alloc_ctor(0, 3, 2); } else { - x_312 = x_45; + x_394 = x_45; } -lean_ctor_set(x_312, 0, x_311); -lean_ctor_set(x_312, 1, x_49); -lean_ctor_set(x_312, 2, x_44); -lean_ctor_set_uint8(x_312, sizeof(void*)*3, x_41); -lean_ctor_set_uint8(x_312, sizeof(void*)*3 + 1, x_42); -x_313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_313, 0, x_310); -lean_ctor_set(x_313, 1, x_312); -return x_313; +lean_ctor_set(x_394, 0, x_393); +lean_ctor_set(x_394, 1, x_49); +lean_ctor_set(x_394, 2, x_44); +lean_ctor_set_uint8(x_394, sizeof(void*)*3, x_41); +lean_ctor_set_uint8(x_394, sizeof(void*)*3 + 1, x_42); +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_392); +lean_ctor_set(x_395, 1, x_394); +return x_395; } } block_23: @@ -28466,14 +28727,14 @@ lean_object* x_18 = _args[17]; _start: { uint8_t x_19; lean_object* x_20; -x_19 = lean_unbox(x_10); -x_20 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_4); +x_19 = lean_unbox(x_3); +x_20 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_6); lean_dec(x_2); return x_20; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(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, uint8_t x_12, lean_object* x_13, 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_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { lean_object* x_21; @@ -28512,18 +28773,18 @@ if (x_27 == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; x_28 = lean_ctor_get(x_26, 0); -x_29 = lean_box(x_12); +x_29 = lean_box(x_6); x_30 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___boxed), 18, 10); lean_closure_set(x_30, 0, x_28); lean_closure_set(x_30, 1, x_5); -lean_closure_set(x_30, 2, x_6); -lean_closure_set(x_30, 3, x_7); -lean_closure_set(x_30, 4, x_8); -lean_closure_set(x_30, 5, x_9); -lean_closure_set(x_30, 6, x_10); -lean_closure_set(x_30, 7, x_11); -lean_closure_set(x_30, 8, x_4); -lean_closure_set(x_30, 9, x_29); +lean_closure_set(x_30, 2, x_29); +lean_closure_set(x_30, 3, x_4); +lean_closure_set(x_30, 4, x_7); +lean_closure_set(x_30, 5, x_8); +lean_closure_set(x_30, 6, x_9); +lean_closure_set(x_30, 7, x_10); +lean_closure_set(x_30, 8, x_11); +lean_closure_set(x_30, 9, x_12); x_31 = lean_unsigned_to_nat(0u); x_32 = 0; x_33 = l___private_Lake_Build_Module_0__Lake_Module_recParseImports___closed__2; @@ -28539,18 +28800,18 @@ x_36 = lean_ctor_get(x_26, 1); lean_inc(x_36); lean_inc(x_35); lean_dec(x_26); -x_37 = lean_box(x_12); +x_37 = lean_box(x_6); x_38 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__2___boxed), 18, 10); lean_closure_set(x_38, 0, x_35); lean_closure_set(x_38, 1, x_5); -lean_closure_set(x_38, 2, x_6); -lean_closure_set(x_38, 3, x_7); -lean_closure_set(x_38, 4, x_8); -lean_closure_set(x_38, 5, x_9); -lean_closure_set(x_38, 6, x_10); -lean_closure_set(x_38, 7, x_11); -lean_closure_set(x_38, 8, x_4); -lean_closure_set(x_38, 9, x_37); +lean_closure_set(x_38, 2, x_37); +lean_closure_set(x_38, 3, x_4); +lean_closure_set(x_38, 4, x_7); +lean_closure_set(x_38, 5, x_8); +lean_closure_set(x_38, 6, x_9); +lean_closure_set(x_38, 7, x_10); +lean_closure_set(x_38, 8, x_11); +lean_closure_set(x_38, 9, x_12); x_39 = lean_unsigned_to_nat(0u); x_40 = 0; x_41 = l___private_Lake_Build_Module_0__Lake_Module_recParseImports___closed__2; @@ -28571,12 +28832,12 @@ lean_dec(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); +lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_5); lean_dec_ref(x_4); x_44 = !lean_is_exclusive(x_26); @@ -28608,12 +28869,12 @@ lean_dec(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); +lean_dec_ref(x_12); lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -28663,8 +28924,8 @@ lean_object* x_20 = _args[19]; _start: { uint8_t x_21; lean_object* x_22; -x_21 = lean_unbox(x_12); -x_22 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_21, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_21 = lean_unbox(x_6); +x_22 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean___lam__3(x_1, x_2, x_3, x_4, x_5, x_21, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); return x_22; } } @@ -28712,13 +28973,13 @@ lean_closure_set(x_25, 1, x_21); lean_closure_set(x_25, 2, x_22); lean_closure_set(x_25, 3, x_1); lean_closure_set(x_25, 4, x_16); -lean_closure_set(x_25, 5, x_15); -lean_closure_set(x_25, 6, x_12); -lean_closure_set(x_25, 7, x_14); -lean_closure_set(x_25, 8, x_11); -lean_closure_set(x_25, 9, x_19); -lean_closure_set(x_25, 10, x_10); -lean_closure_set(x_25, 11, x_24); +lean_closure_set(x_25, 5, x_24); +lean_closure_set(x_25, 6, x_15); +lean_closure_set(x_25, 7, x_12); +lean_closure_set(x_25, 8, x_14); +lean_closure_set(x_25, 9, x_11); +lean_closure_set(x_25, 10, x_19); +lean_closure_set(x_25, 11, x_10); lean_closure_set(x_25, 12, x_17); lean_inc_ref(x_6); x_26 = l_Lake_ensureJob___redArg(x_17, x_25, x_2, x_3, x_4, x_5, x_6, x_7); @@ -28843,19 +29104,19 @@ x_9 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLean(x_1, x_2, x_3, x return x_9; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4(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_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3(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_12; -x_12 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___redArg(x_2, x_3, x_4, x_5, x_9, x_10); +x_12 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___redArg(x_2, x_3, x_4, x_5, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4___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_EXPORT lean_object* l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3___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_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__3_spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lake_Build_Common_0__Lake_checkHashUpToDate_x27___at___00Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildLean_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec(x_7); @@ -31100,7 +31361,7 @@ return x_3; LEAN_EXPORT lean_object* l___private_Lake_Build_Module_0__Lake_Module_recBuildLeanCToOExport(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) { _start: { -lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_73; uint8_t x_99; uint8_t x_100; +lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; 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; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_73; uint8_t x_99; uint8_t x_100; x_9 = lean_ctor_get(x_6, 0); x_10 = lean_ctor_get(x_6, 3); lean_inc(x_10); @@ -31126,16 +31387,16 @@ block_72: { 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; 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_27 = l_Lake_BuildType_leancArgs(x_26); -x_28 = l_Array_append___redArg(x_27, x_21); -lean_dec_ref(x_21); -x_29 = l_Array_append___redArg(x_28, x_14); -lean_dec_ref(x_14); +x_28 = l_Array_append___redArg(x_27, x_19); +lean_dec_ref(x_19); +x_29 = l_Array_append___redArg(x_28, x_24); +lean_dec_ref(x_24); x_30 = l___private_Lake_Build_Module_0__Lake_Module_recBuildLeanCToOExport___closed__1; x_31 = l_Array_append___redArg(x_29, x_30); x_32 = l_Lake_Module_cFacet; x_33 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_33, 0, x_19); -lean_ctor_set(x_33, 1, x_17); +lean_ctor_set(x_33, 0, x_17); +lean_ctor_set(x_33, 1, x_15); x_34 = l_Lake_Module_keyword; x_35 = lean_alloc_ctor(1, 4, 0); lean_ctor_set(x_35, 0, x_33); @@ -31143,17 +31404,17 @@ lean_ctor_set(x_35, 1, x_34); lean_ctor_set(x_35, 2, x_1); lean_ctor_set(x_35, 3, x_32); x_36 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_36, 0, x_18); -x_37 = lean_box(x_23); +lean_ctor_set(x_36, 0, x_16); +x_37 = lean_box(x_21); x_38 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recBuildLeanCToOExport___lam__0___boxed), 17, 10); lean_closure_set(x_38, 0, x_35); lean_closure_set(x_38, 1, x_36); -lean_closure_set(x_38, 2, x_24); -lean_closure_set(x_38, 3, x_20); -lean_closure_set(x_38, 4, x_25); +lean_closure_set(x_38, 2, x_22); +lean_closure_set(x_38, 3, x_18); +lean_closure_set(x_38, 4, x_23); lean_closure_set(x_38, 5, x_13); -lean_closure_set(x_38, 6, x_22); -lean_closure_set(x_38, 7, x_15); +lean_closure_set(x_38, 6, x_20); +lean_closure_set(x_38, 7, x_25); lean_closure_set(x_38, 8, x_31); lean_closure_set(x_38, 9, x_37); x_39 = l_Lake_ensureJob___redArg(x_12, x_38, x_2, x_3, x_4, x_5, x_6, x_7); @@ -31173,7 +31434,7 @@ x_43 = lean_ctor_get(x_41, 2); lean_dec(x_43); x_44 = lean_st_ref_take(x_10); x_45 = 0; -lean_ctor_set(x_41, 2, x_16); +lean_ctor_set(x_41, 2, x_14); lean_ctor_set_uint8(x_41, sizeof(void*)*3, x_45); lean_inc_ref(x_41); x_46 = l_Lake_Job_toOpaque___redArg(x_41); @@ -31197,7 +31458,7 @@ x_53 = 0; x_54 = lean_alloc_ctor(0, 3, 1); lean_ctor_set(x_54, 0, x_50); lean_ctor_set(x_54, 1, x_51); -lean_ctor_set(x_54, 2, x_16); +lean_ctor_set(x_54, 2, x_14); lean_ctor_set_uint8(x_54, sizeof(void*)*3, x_53); lean_inc_ref(x_54); x_55 = l_Lake_Job_toOpaque___redArg(x_54); @@ -31239,7 +31500,7 @@ if (lean_is_scalar(x_63)) { } lean_ctor_set(x_66, 0, x_61); lean_ctor_set(x_66, 1, x_62); -lean_ctor_set(x_66, 2, x_16); +lean_ctor_set(x_66, 2, x_14); lean_ctor_set_uint8(x_66, sizeof(void*)*3, x_65); lean_inc_ref(x_66); x_67 = l_Lake_Job_toOpaque___redArg(x_66); @@ -31255,7 +31516,7 @@ return x_71; } else { -lean_dec_ref(x_16); +lean_dec_ref(x_14); lean_dec(x_10); return x_39; } @@ -31291,6 +31552,8 @@ lean_dec_ref(x_73); x_97 = l_Lake_instOrdBuildType_ord(x_86, x_89); if (x_97 == 2) { +lean_inc_ref(x_91); +lean_inc_ref(x_90); lean_inc_ref(x_85); lean_inc_ref(x_84); lean_inc_ref(x_88); @@ -31298,27 +31561,27 @@ lean_inc_ref(x_87); lean_inc_ref(x_82); lean_inc(x_81); lean_inc_ref(x_75); -lean_inc_ref(x_91); -lean_inc_ref(x_90); lean_inc_n(x_80, 2); x_13 = x_80; -x_14 = x_90; -x_15 = x_91; -x_16 = x_96; -x_17 = x_80; -x_18 = x_75; -x_19 = x_81; -x_20 = x_82; -x_21 = x_87; -x_22 = x_88; -x_23 = x_83; -x_24 = x_84; -x_25 = x_85; +x_14 = x_96; +x_15 = x_80; +x_16 = x_75; +x_17 = x_81; +x_18 = x_82; +x_19 = x_87; +x_20 = x_88; +x_21 = x_83; +x_22 = x_84; +x_23 = x_85; +x_24 = x_90; +x_25 = x_91; x_26 = x_89; goto block_72; } else { +lean_inc_ref(x_91); +lean_inc_ref(x_90); lean_inc_ref(x_85); lean_inc_ref(x_84); lean_inc_ref(x_88); @@ -31326,22 +31589,20 @@ lean_inc_ref(x_87); lean_inc_ref(x_82); lean_inc(x_81); lean_inc_ref(x_75); -lean_inc_ref(x_91); -lean_inc_ref(x_90); lean_inc_n(x_80, 2); x_13 = x_80; -x_14 = x_90; -x_15 = x_91; -x_16 = x_96; -x_17 = x_80; -x_18 = x_75; -x_19 = x_81; -x_20 = x_82; -x_21 = x_87; -x_22 = x_88; -x_23 = x_83; -x_24 = x_84; -x_25 = x_85; +x_14 = x_96; +x_15 = x_80; +x_16 = x_75; +x_17 = x_81; +x_18 = x_82; +x_19 = x_87; +x_20 = x_88; +x_21 = x_83; +x_22 = x_84; +x_23 = x_85; +x_24 = x_90; +x_25 = x_91; x_26 = x_86; goto block_72; } @@ -32858,8 +33119,8 @@ x_87 = lean_nat_dec_lt(x_81, x_86); if (x_87 == 0) { lean_dec_ref(x_85); -x_30 = x_82; -x_31 = x_83; +x_30 = x_83; +x_31 = x_84; x_32 = lean_box(0); goto block_57; } @@ -32872,8 +33133,8 @@ if (x_88 == 0) if (x_87 == 0) { lean_dec_ref(x_85); -x_30 = x_82; -x_31 = x_83; +x_30 = x_83; +x_31 = x_84; x_32 = lean_box(0); goto block_57; } @@ -32886,7 +33147,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_3); lean_inc_ref(x_8); -x_90 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildDynlib_spec__1(x_85, x_21, x_89, x_82, x_8, x_3, x_10, x_11, x_12, x_83); +x_90 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildDynlib_spec__1(x_85, x_21, x_89, x_83, x_8, x_3, x_10, x_11, x_12, x_84); lean_dec_ref(x_85); x_58 = x_90; goto block_63; @@ -32901,7 +33162,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_3); lean_inc_ref(x_8); -x_92 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildDynlib_spec__1(x_85, x_21, x_91, x_82, x_8, x_3, x_10, x_11, x_12, x_83); +x_92 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recBuildDynlib_spec__1(x_85, x_21, x_91, x_83, x_8, x_3, x_10, x_11, x_12, x_84); lean_dec_ref(x_85); x_58 = x_92; goto block_63; @@ -32923,9 +33184,9 @@ x_98 = lean_array_get_size(x_29); x_99 = lean_nat_dec_lt(x_81, x_98); if (x_99 == 0) { -x_82 = x_95; -x_83 = x_96; -x_84 = lean_box(0); +x_82 = lean_box(0); +x_83 = x_95; +x_84 = x_96; x_85 = x_97; goto block_93; } @@ -32937,9 +33198,9 @@ if (x_100 == 0) { if (x_99 == 0) { -x_82 = x_95; -x_83 = x_96; -x_84 = lean_box(0); +x_82 = lean_box(0); +x_83 = x_95; +x_84 = x_96; x_85 = x_97; goto block_93; } @@ -32949,9 +33210,9 @@ size_t x_101; lean_object* x_102; x_101 = lean_usize_of_nat(x_98); lean_inc_ref(x_4); x_102 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__3(x_4, x_29, x_21, x_101, x_97); -x_82 = x_95; -x_83 = x_96; -x_84 = lean_box(0); +x_82 = lean_box(0); +x_83 = x_95; +x_84 = x_96; x_85 = x_102; goto block_93; } @@ -32962,9 +33223,9 @@ size_t x_103; lean_object* x_104; x_103 = lean_usize_of_nat(x_98); lean_inc_ref(x_4); x_104 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__3(x_4, x_29, x_21, x_103, x_97); -x_82 = x_95; -x_83 = x_96; -x_84 = lean_box(0); +x_82 = lean_box(0); +x_83 = x_95; +x_84 = x_96; x_85 = x_104; goto block_93; } @@ -34793,25 +35054,25 @@ x_60 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__priv x_61 = l_Lake_instOrdBuildType_ord(x_12, x_13); if (x_61 == 2) { -x_23 = x_52; -x_24 = x_54; -x_25 = lean_box(0); -x_26 = x_60; -x_27 = x_58; -x_28 = x_56; -x_29 = x_55; +x_23 = x_55; +x_24 = x_58; +x_25 = x_60; +x_26 = x_56; +x_27 = x_54; +x_28 = lean_box(0); +x_29 = x_52; x_30 = x_13; goto block_37; } else { -x_23 = x_52; -x_24 = x_54; -x_25 = lean_box(0); -x_26 = x_60; -x_27 = x_58; -x_28 = x_56; -x_29 = x_55; +x_23 = x_55; +x_24 = x_58; +x_25 = x_60; +x_26 = x_56; +x_27 = x_54; +x_28 = lean_box(0); +x_29 = x_52; x_30 = x_12; goto block_37; } @@ -34929,16 +35190,16 @@ x_33 = l_Lean_LeanOptions_append(x_31, x_32); x_34 = l_Lean_LeanOptions_appendArray(x_33, x_6); x_35 = lean_alloc_ctor(0, 7, 1); lean_ctor_set(x_35, 0, x_7); -lean_ctor_set(x_35, 1, x_29); -lean_ctor_set(x_35, 2, x_28); -lean_ctor_set(x_35, 3, x_23); -lean_ctor_set(x_35, 4, x_27); -lean_ctor_set(x_35, 5, x_26); +lean_ctor_set(x_35, 1, x_23); +lean_ctor_set(x_35, 2, x_26); +lean_ctor_set(x_35, 3, x_29); +lean_ctor_set(x_35, 4, x_24); +lean_ctor_set(x_35, 5, x_25); lean_ctor_set(x_35, 6, x_34); lean_ctor_set_uint8(x_35, sizeof(void*)*7, x_8); x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_24); +lean_ctor_set(x_36, 1, x_27); return x_36; } } @@ -35537,7 +35798,7 @@ x_46 = l___private_Lake_Build_Module_0__Lake_fetchImportInfo___redArg(x_45, x_12 lean_dec_ref(x_2); if (lean_obj_tag(x_46) == 0) { -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; uint8_t 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_117; uint8_t x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; uint8_t 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; uint8_t x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_180; lean_object* x_181; lean_object* x_182; x_47 = lean_ctor_get(x_46, 0); lean_inc(x_47); x_48 = lean_ctor_get(x_46, 1); @@ -35685,12 +35946,12 @@ x_69 = l_Array_append___redArg(x_63, x_67); lean_dec_ref(x_67); x_70 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__7___closed__0)); lean_inc_ref(x_56); -lean_inc(x_57); lean_inc(x_55); +lean_inc(x_57); lean_inc(x_52); -lean_inc_ref(x_53); +lean_inc_ref(x_54); lean_inc_ref(x_11); -x_71 = l_Lake_TargetArray_fetchIn___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__0(x_11, x_69, x_70, x_53, x_52, x_55, x_57, x_56, x_59); +x_71 = l_Lake_TargetArray_fetchIn___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__0(x_11, x_69, x_70, x_54, x_52, x_57, x_55, x_56, x_59); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; @@ -35704,12 +35965,12 @@ x_74 = l_Array_append___redArg(x_64, x_68); lean_dec_ref(x_68); x_75 = ((lean_object*)(l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__7___closed__1)); lean_inc_ref(x_56); -lean_inc(x_57); lean_inc(x_55); +lean_inc(x_57); lean_inc(x_52); -lean_inc_ref(x_53); +lean_inc_ref(x_54); lean_inc_ref(x_11); -x_76 = l_Lake_TargetArray_fetchIn___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__0(x_11, x_74, x_75, x_53, x_52, x_55, x_57, x_56, x_73); +x_76 = l_Lake_TargetArray_fetchIn___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__0(x_11, x_74, x_75, x_54, x_52, x_57, x_55, x_56, x_73); if (lean_obj_tag(x_76) == 0) { uint8_t x_77; @@ -35725,7 +35986,7 @@ x_81 = lean_box(x_27); x_82 = l___private_Lake_Build_Module_0__Lake_setupEditedModule___boxed__const__1; x_83 = lean_box(x_61); x_84 = lean_box(x_65); -x_85 = lean_box(x_51); +x_85 = lean_box(x_50); x_86 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_setupEditedModule___lam__4___boxed), 23, 15); lean_closure_set(x_86, 0, x_62); lean_closure_set(x_86, 1, x_66); @@ -35741,8 +36002,8 @@ lean_closure_set(x_86, 10, x_49); lean_closure_set(x_86, 11, x_78); lean_closure_set(x_86, 12, x_72); lean_closure_set(x_86, 13, x_80); -lean_closure_set(x_86, 14, x_50); -x_87 = lean_box(x_51); +lean_closure_set(x_86, 14, x_51); +x_87 = lean_box(x_50); x_88 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__5___boxed), 12, 4); lean_closure_set(x_88, 0, x_49); lean_closure_set(x_88, 1, x_47); @@ -35750,7 +36011,7 @@ lean_closure_set(x_88, 2, x_86); lean_closure_set(x_88, 3, x_87); x_89 = lean_unsigned_to_nat(0u); x_90 = l___private_Lake_Build_Module_0__Lake_Module_recParseImports___closed__2; -x_91 = l_Lake_Job_bindM___redArg(x_49, x_24, x_88, x_89, x_54, x_53, x_52, x_55, x_57, x_56, x_90); +x_91 = l_Lake_Job_bindM___redArg(x_49, x_24, x_88, x_89, x_53, x_54, x_52, x_57, x_55, x_56, x_90); lean_ctor_set(x_76, 0, x_91); return x_76; } @@ -35769,7 +36030,7 @@ x_96 = lean_box(x_27); x_97 = l___private_Lake_Build_Module_0__Lake_setupEditedModule___boxed__const__1; x_98 = lean_box(x_61); x_99 = lean_box(x_65); -x_100 = lean_box(x_51); +x_100 = lean_box(x_50); x_101 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_setupEditedModule___lam__4___boxed), 23, 15); lean_closure_set(x_101, 0, x_62); lean_closure_set(x_101, 1, x_66); @@ -35785,8 +36046,8 @@ lean_closure_set(x_101, 10, x_49); lean_closure_set(x_101, 11, x_92); lean_closure_set(x_101, 12, x_72); lean_closure_set(x_101, 13, x_95); -lean_closure_set(x_101, 14, x_50); -x_102 = lean_box(x_51); +lean_closure_set(x_101, 14, x_51); +x_102 = lean_box(x_50); x_103 = lean_alloc_closure((void*)(l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__5___boxed), 12, 4); lean_closure_set(x_103, 0, x_49); lean_closure_set(x_103, 1, x_47); @@ -35794,7 +36055,7 @@ lean_closure_set(x_103, 2, x_101); lean_closure_set(x_103, 3, x_102); x_104 = lean_unsigned_to_nat(0u); x_105 = l___private_Lake_Build_Module_0__Lake_Module_recParseImports___closed__2; -x_106 = l_Lake_Job_bindM___redArg(x_49, x_24, x_103, x_104, x_54, x_53, x_52, x_55, x_57, x_56, x_105); +x_106 = l_Lake_Job_bindM___redArg(x_49, x_24, x_103, x_104, x_53, x_54, x_52, x_57, x_55, x_56, x_105); x_107 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_93); @@ -35811,9 +36072,9 @@ lean_dec_ref(x_58); lean_dec(x_57); lean_dec_ref(x_56); lean_dec(x_55); -lean_dec_ref(x_53); +lean_dec_ref(x_54); lean_dec(x_52); -lean_dec_ref(x_50); +lean_dec_ref(x_51); lean_dec(x_47); lean_dec(x_31); lean_dec(x_24); @@ -35849,9 +36110,9 @@ lean_dec_ref(x_58); lean_dec(x_57); lean_dec_ref(x_56); lean_dec(x_55); -lean_dec_ref(x_53); +lean_dec_ref(x_54); lean_dec(x_52); -lean_dec_ref(x_50); +lean_dec_ref(x_51); lean_dec(x_47); lean_dec(x_31); lean_dec(x_24); @@ -35906,9 +36167,9 @@ uint8_t x_128; lean_dec_ref(x_124); lean_dec(x_123); lean_dec(x_122); -lean_dec_ref(x_120); +lean_dec_ref(x_121); lean_dec(x_119); -lean_dec_ref(x_117); +lean_dec_ref(x_118); lean_dec(x_47); lean_dec_ref(x_36); lean_dec(x_31); @@ -35938,13 +36199,13 @@ return x_131; block_170: { lean_object* x_142; -lean_inc_ref(x_139); -lean_inc(x_140); -lean_inc(x_138); -lean_inc(x_134); +lean_inc_ref(x_138); +lean_inc(x_136); +lean_inc(x_139); +lean_inc(x_133); lean_inc_ref(x_135); -x_142 = l___private_Lake_Build_Module_0__Lake_Module_fetchImportLibs(x_1, x_136, x_141, x_135, x_134, x_138, x_140, x_139, x_133); -lean_dec_ref(x_136); +x_142 = l___private_Lake_Build_Module_0__Lake_Module_fetchImportLibs(x_1, x_140, x_141, x_135, x_133, x_139, x_136, x_138, x_137); +lean_dec_ref(x_140); lean_dec_ref(x_1); if (lean_obj_tag(x_142) == 0) { @@ -35962,14 +36223,14 @@ if (x_141 == 0) { lean_object* x_148; x_148 = l___private_Lake_Build_Module_0__Lake_Module_fetchImportLibs___closed__0; -x_50 = x_146; -x_51 = x_147; -x_52 = x_134; -x_53 = x_135; -x_54 = x_147; -x_55 = x_138; -x_56 = x_139; -x_57 = x_140; +x_50 = x_147; +x_51 = x_146; +x_52 = x_133; +x_53 = x_147; +x_54 = x_135; +x_55 = x_136; +x_56 = x_138; +x_57 = x_139; x_58 = x_148; x_59 = x_144; x_60 = lean_box(0); @@ -35986,20 +36247,20 @@ if (x_152 == 0) { size_t x_153; lean_object* x_154; x_153 = l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__7___closed__4; -lean_inc_ref(x_139); -lean_inc(x_140); -lean_inc(x_138); -lean_inc(x_134); +lean_inc_ref(x_138); +lean_inc(x_136); +lean_inc(x_139); +lean_inc(x_133); lean_inc_ref(x_135); -x_154 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_153, x_29, x_150, x_135, x_134, x_138, x_140, x_139, x_144); -x_117 = x_146; -x_118 = x_147; -x_119 = x_134; -x_120 = x_135; -x_121 = x_147; -x_122 = x_138; -x_123 = x_140; -x_124 = x_139; +x_154 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_153, x_29, x_150, x_135, x_133, x_139, x_136, x_138, x_144); +x_117 = x_147; +x_118 = x_146; +x_119 = x_133; +x_120 = x_147; +x_121 = x_135; +x_122 = x_136; +x_123 = x_139; +x_124 = x_138; x_125 = x_154; goto block_132; } @@ -36013,20 +36274,20 @@ if (x_152 == 0) { size_t x_156; lean_object* x_157; x_156 = l___private_Lake_Build_Module_0__Lake_Module_recFetchSetup___lam__7___closed__4; -lean_inc_ref(x_139); -lean_inc(x_140); -lean_inc(x_138); -lean_inc(x_134); +lean_inc_ref(x_138); +lean_inc(x_136); +lean_inc(x_139); +lean_inc(x_133); lean_inc_ref(x_135); -x_157 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_156, x_29, x_150, x_135, x_134, x_138, x_140, x_139, x_144); -x_117 = x_146; -x_118 = x_147; -x_119 = x_134; -x_120 = x_135; -x_121 = x_147; -x_122 = x_138; -x_123 = x_140; -x_124 = x_139; +x_157 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_156, x_29, x_150, x_135, x_133, x_139, x_136, x_138, x_144); +x_117 = x_147; +x_118 = x_146; +x_119 = x_133; +x_120 = x_147; +x_121 = x_135; +x_122 = x_136; +x_123 = x_139; +x_124 = x_138; x_125 = x_157; goto block_132; } @@ -36037,20 +36298,20 @@ x_158 = lean_usize_of_nat(x_151); lean_inc_ref(x_11); x_159 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__3(x_11, x_18, x_29, x_158, x_150); x_160 = lean_array_size(x_159); -lean_inc_ref(x_139); -lean_inc(x_140); -lean_inc(x_138); -lean_inc(x_134); +lean_inc_ref(x_138); +lean_inc(x_136); +lean_inc(x_139); +lean_inc(x_133); lean_inc_ref(x_135); -x_161 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_160, x_29, x_159, x_135, x_134, x_138, x_140, x_139, x_144); -x_117 = x_146; -x_118 = x_147; -x_119 = x_134; -x_120 = x_135; -x_121 = x_147; -x_122 = x_138; -x_123 = x_140; -x_124 = x_139; +x_161 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_160, x_29, x_159, x_135, x_133, x_139, x_136, x_138, x_144); +x_117 = x_147; +x_118 = x_146; +x_119 = x_133; +x_120 = x_147; +x_121 = x_135; +x_122 = x_136; +x_123 = x_139; +x_124 = x_138; x_125 = x_161; goto block_132; } @@ -36062,20 +36323,20 @@ x_162 = lean_usize_of_nat(x_151); lean_inc_ref(x_11); x_163 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__3(x_11, x_18, x_29, x_162, x_150); x_164 = lean_array_size(x_163); -lean_inc_ref(x_139); -lean_inc(x_140); -lean_inc(x_138); -lean_inc(x_134); +lean_inc_ref(x_138); +lean_inc(x_136); +lean_inc(x_139); +lean_inc(x_133); lean_inc_ref(x_135); -x_165 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_164, x_29, x_163, x_135, x_134, x_138, x_140, x_139, x_144); -x_117 = x_146; -x_118 = x_147; -x_119 = x_134; -x_120 = x_135; -x_121 = x_147; -x_122 = x_138; -x_123 = x_140; -x_124 = x_139; +x_165 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lake_Build_Module_0__Lake_Module_recFetchSetup_spec__2(x_164, x_29, x_163, x_135, x_133, x_139, x_136, x_138, x_144); +x_117 = x_147; +x_118 = x_146; +x_119 = x_133; +x_120 = x_147; +x_121 = x_135; +x_122 = x_136; +x_123 = x_139; +x_124 = x_138; x_125 = x_165; goto block_132; } @@ -36085,11 +36346,11 @@ goto block_132; else { uint8_t x_166; -lean_dec(x_140); -lean_dec_ref(x_139); -lean_dec(x_138); +lean_dec(x_139); +lean_dec_ref(x_138); +lean_dec(x_136); lean_dec_ref(x_135); -lean_dec(x_134); +lean_dec(x_133); lean_dec(x_47); lean_dec_ref(x_36); lean_dec(x_31); @@ -36120,27 +36381,27 @@ block_179: { if (x_34 == 0) { -x_133 = x_177; -x_134 = x_173; +x_133 = x_173; +x_134 = lean_box(0); x_135 = x_172; -x_136 = x_171; -x_137 = lean_box(0); -x_138 = x_174; -x_139 = x_176; -x_140 = x_175; +x_136 = x_175; +x_137 = x_177; +x_138 = x_176; +x_139 = x_174; +x_140 = x_171; x_141 = x_38; goto block_170; } else { -x_133 = x_177; -x_134 = x_173; +x_133 = x_173; +x_134 = lean_box(0); x_135 = x_172; -x_136 = x_171; -x_137 = lean_box(0); -x_138 = x_174; -x_139 = x_176; -x_140 = x_175; +x_136 = x_175; +x_137 = x_177; +x_138 = x_176; +x_139 = x_174; +x_140 = x_171; x_141 = x_34; goto block_170; } diff --git a/stage0/stdlib/Lake/Build/Package.c b/stage0/stdlib/Lake/Build/Package.c index b5c29e32da..876526c098 100644 --- a/stage0/stdlib/Lake/Build/Package.c +++ b/stage0/stdlib/Lake/Build/Package.c @@ -5202,7 +5202,7 @@ lean_ctor_set(x_10, 0, x_23); x_31 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Package_0__Lake_Package_fetchBuildArchive_spec__0(x_5, x_3, x_30, x_22, x_29, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; uint8_t x_61; lean_object* x_62; lean_object* x_63; uint8_t x_83; uint8_t x_84; uint8_t x_85; +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_61; lean_object* x_62; lean_object* x_63; uint8_t x_83; uint8_t x_84; uint8_t x_85; x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); @@ -5271,7 +5271,7 @@ block_60: { uint8_t x_43; lean_object* x_44; uint8_t x_45; x_43 = 1; -x_44 = l_Lake_untar(x_3, x_41, x_43, x_39); +x_44 = l_Lake_untar(x_3, x_40, x_43, x_38); x_45 = l_Lake_JobAction_merge(x_37, x_35); if (lean_obj_tag(x_44) == 0) { @@ -5283,10 +5283,10 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_44, 1); x_48 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_40); -lean_ctor_set(x_48, 2, x_38); +lean_ctor_set(x_48, 1, x_42); +lean_ctor_set(x_48, 2, x_41); lean_ctor_set_uint8(x_48, sizeof(void*)*3, x_45); -lean_ctor_set_uint8(x_48, sizeof(void*)*3 + 1, x_42); +lean_ctor_set_uint8(x_48, sizeof(void*)*3 + 1, x_39); lean_ctor_set(x_44, 1, x_48); return x_44; } @@ -5300,10 +5300,10 @@ lean_inc(x_49); lean_dec(x_44); x_51 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_40); -lean_ctor_set(x_51, 2, x_38); +lean_ctor_set(x_51, 1, x_42); +lean_ctor_set(x_51, 2, x_41); lean_ctor_set_uint8(x_51, sizeof(void*)*3, x_45); -lean_ctor_set_uint8(x_51, sizeof(void*)*3 + 1, x_42); +lean_ctor_set_uint8(x_51, sizeof(void*)*3 + 1, x_39); x_52 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); @@ -5320,10 +5320,10 @@ lean_object* x_54; lean_object* x_55; x_54 = lean_ctor_get(x_44, 1); x_55 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_40); -lean_ctor_set(x_55, 2, x_38); +lean_ctor_set(x_55, 1, x_42); +lean_ctor_set(x_55, 2, x_41); lean_ctor_set_uint8(x_55, sizeof(void*)*3, x_45); -lean_ctor_set_uint8(x_55, sizeof(void*)*3 + 1, x_42); +lean_ctor_set_uint8(x_55, sizeof(void*)*3 + 1, x_39); lean_ctor_set(x_44, 1, x_55); return x_44; } @@ -5337,10 +5337,10 @@ lean_inc(x_56); lean_dec(x_44); x_58 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_40); -lean_ctor_set(x_58, 2, x_38); +lean_ctor_set(x_58, 1, x_42); +lean_ctor_set(x_58, 2, x_41); lean_ctor_set_uint8(x_58, sizeof(void*)*3, x_45); -lean_ctor_set_uint8(x_58, sizeof(void*)*3 + 1, x_42); +lean_ctor_set_uint8(x_58, sizeof(void*)*3 + 1, x_39); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_56); lean_ctor_set(x_59, 1, x_58); @@ -5377,11 +5377,11 @@ lean_inc(x_74); lean_dec_ref(x_62); x_36 = lean_box(0); x_37 = x_71; -x_38 = x_74; -x_39 = x_70; -x_40 = x_73; -x_41 = x_68; -x_42 = x_72; +x_38 = x_70; +x_39 = x_72; +x_40 = x_68; +x_41 = x_74; +x_42 = x_73; goto block_60; } else @@ -5401,11 +5401,11 @@ lean_inc(x_79); lean_dec_ref(x_62); x_36 = lean_box(0); x_37 = x_76; -x_38 = x_79; -x_39 = x_75; -x_40 = x_78; -x_41 = x_68; -x_42 = x_77; +x_38 = x_75; +x_39 = x_77; +x_40 = x_68; +x_41 = x_79; +x_42 = x_78; goto block_60; } else @@ -5509,7 +5509,7 @@ lean_ctor_set_uint8(x_113, sizeof(void*)*3 + 1, x_98); x_114 = l_Lake_SavedTrace_replayIfUpToDate_x27___at___00__private_Lake_Build_Package_0__Lake_Package_fetchBuildArchive_spec__0(x_5, x_3, x_112, x_104, x_111, x_6, x_7, x_8, x_9, x_113); if (lean_obj_tag(x_114) == 0) { -lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; uint8_t x_140; lean_object* x_141; lean_object* x_142; uint8_t x_162; uint8_t x_163; uint8_t x_164; +lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_140; lean_object* x_141; lean_object* x_142; uint8_t x_162; uint8_t x_163; uint8_t x_164; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); x_116 = lean_ctor_get(x_114, 1); @@ -5578,7 +5578,7 @@ block_139: { uint8_t x_126; lean_object* x_127; uint8_t x_128; x_126 = 1; -x_127 = l_Lake_untar(x_3, x_124, x_126, x_122); +x_127 = l_Lake_untar(x_3, x_123, x_126, x_121); x_128 = l_Lake_JobAction_merge(x_120, x_118); if (lean_obj_tag(x_127) == 0) { @@ -5597,10 +5597,10 @@ if (lean_is_exclusive(x_127)) { } x_132 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_132, 0, x_130); -lean_ctor_set(x_132, 1, x_123); -lean_ctor_set(x_132, 2, x_121); +lean_ctor_set(x_132, 1, x_125); +lean_ctor_set(x_132, 2, x_124); lean_ctor_set_uint8(x_132, sizeof(void*)*3, x_128); -lean_ctor_set_uint8(x_132, sizeof(void*)*3 + 1, x_125); +lean_ctor_set_uint8(x_132, sizeof(void*)*3 + 1, x_122); if (lean_is_scalar(x_131)) { x_133 = lean_alloc_ctor(0, 2, 0); } else { @@ -5627,10 +5627,10 @@ if (lean_is_exclusive(x_127)) { } x_137 = lean_alloc_ctor(0, 3, 2); lean_ctor_set(x_137, 0, x_135); -lean_ctor_set(x_137, 1, x_123); -lean_ctor_set(x_137, 2, x_121); +lean_ctor_set(x_137, 1, x_125); +lean_ctor_set(x_137, 2, x_124); lean_ctor_set_uint8(x_137, sizeof(void*)*3, x_128); -lean_ctor_set_uint8(x_137, sizeof(void*)*3 + 1, x_125); +lean_ctor_set_uint8(x_137, sizeof(void*)*3 + 1, x_122); if (lean_is_scalar(x_136)) { x_138 = lean_alloc_ctor(1, 2, 0); } else { @@ -5670,11 +5670,11 @@ lean_inc(x_153); lean_dec_ref(x_141); x_119 = lean_box(0); x_120 = x_150; -x_121 = x_153; -x_122 = x_149; -x_123 = x_152; -x_124 = x_147; -x_125 = x_151; +x_121 = x_149; +x_122 = x_151; +x_123 = x_147; +x_124 = x_153; +x_125 = x_152; goto block_139; } else @@ -5694,11 +5694,11 @@ lean_inc(x_158); lean_dec_ref(x_141); x_119 = lean_box(0); x_120 = x_155; -x_121 = x_158; -x_122 = x_154; -x_123 = x_157; -x_124 = x_147; -x_125 = x_156; +x_121 = x_154; +x_122 = x_156; +x_123 = x_147; +x_124 = x_158; +x_125 = x_157; goto block_139; } else diff --git a/stage0/stdlib/Lake/Build/Run.c b/stage0/stdlib/Lake/Build/Run.c index e6382e0105..03a0c0094e 100644 --- a/stage0/stdlib/Lake/Build/Run.c +++ b/stage0/stdlib/Lake/Build/Run.c @@ -249,7 +249,7 @@ static const lean_object* l___private_Lake_Build_Run_0__Lake_Workspace_saveOutpu lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* lean_st_ref_get(lean_object*); lean_object* l_Lake_CacheMap_writeFile(lean_object*, lean_object*, lean_object*); -uint8_t l_Lake_Workspace_isRootArtifactCacheEnabled(lean_object*); +uint8_t l_Lake_Workspace_isRootArtifactCacheWritable(lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Lake_Build_Run_0__Lake_Workspace_saveOutputs(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1590,7 +1590,7 @@ return x_14; LEAN_EXPORT lean_object* l___private_Lake_Build_Run_0__Lake_Monitor_reportJob(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_5; lean_object* x_6; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_24; lean_object* x_25; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_60; uint8_t x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_187; lean_object* x_188; uint8_t x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; uint8_t x_196; lean_object* x_197; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; uint8_t x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; lean_object* x_212; uint32_t x_213; uint8_t x_214; lean_object* x_215; lean_object* x_216; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; uint8_t x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; lean_object* x_247; lean_object* x_248; uint32_t x_249; uint8_t x_250; lean_object* x_251; lean_object* x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; uint8_t x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; lean_object* x_262; lean_object* x_263; uint32_t x_264; uint8_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_275; uint8_t x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; uint8_t x_282; lean_object* x_283; lean_object* x_284; uint8_t x_285; uint8_t x_286; uint32_t x_287; lean_object* x_291; lean_object* x_292; uint8_t x_293; uint8_t x_294; lean_object* x_295; lean_object* x_296; uint8_t x_297; lean_object* x_298; lean_object* x_299; uint8_t x_300; lean_object* x_301; uint8_t x_302; lean_object* x_308; lean_object* x_309; uint8_t x_310; lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; lean_object* x_317; uint8_t x_318; uint8_t x_319; lean_object* x_321; uint8_t x_322; uint8_t x_323; uint8_t x_324; lean_object* x_325; uint8_t x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; uint8_t x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_347; uint8_t x_348; uint8_t x_349; uint8_t x_350; lean_object* x_351; uint8_t x_352; lean_object* x_353; uint8_t x_354; lean_object* x_355; uint8_t x_356; uint8_t x_357; uint8_t x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; uint8_t x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; uint8_t x_375; uint8_t x_376; lean_object* x_381; uint8_t x_382; uint8_t x_383; lean_object* x_384; uint8_t x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; uint8_t x_389; lean_object* x_395; uint8_t x_396; lean_object* x_397; uint8_t x_398; lean_object* x_399; uint8_t x_400; lean_object* x_401; uint8_t x_402; lean_object* x_407; lean_object* x_419; lean_object* x_420; +lean_object* x_5; lean_object* x_6; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_24; lean_object* x_25; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; uint8_t x_39; uint8_t x_40; uint8_t x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; uint8_t x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; uint8_t x_191; lean_object* x_192; uint8_t x_193; uint8_t x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_200; lean_object* x_201; uint8_t x_202; uint32_t x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; uint8_t x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_213; uint8_t x_214; lean_object* x_215; lean_object* x_216; uint32_t x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; uint8_t x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; lean_object* x_249; uint8_t x_250; lean_object* x_251; uint32_t x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; uint8_t x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint8_t x_263; lean_object* x_264; uint8_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_275; lean_object* x_276; uint8_t x_277; lean_object* x_278; lean_object* x_279; uint8_t x_280; uint8_t x_281; lean_object* x_282; lean_object* x_283; uint8_t x_284; lean_object* x_285; lean_object* x_286; uint32_t x_287; lean_object* x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; uint8_t x_296; lean_object* x_297; uint8_t x_298; uint8_t x_299; lean_object* x_300; uint8_t x_301; lean_object* x_302; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; lean_object* x_313; uint8_t x_314; uint8_t x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; uint8_t x_319; lean_object* x_321; lean_object* x_322; uint8_t x_323; uint8_t x_324; uint8_t x_325; uint8_t x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; uint8_t x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_347; lean_object* x_348; uint8_t x_349; uint8_t x_350; uint8_t x_351; uint8_t x_352; lean_object* x_353; uint8_t x_354; lean_object* x_355; uint8_t x_356; uint8_t x_357; lean_object* x_367; lean_object* x_368; uint8_t x_369; uint8_t x_370; uint8_t x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; uint8_t x_375; uint8_t x_376; lean_object* x_381; lean_object* x_382; uint8_t x_383; uint8_t x_384; lean_object* x_385; uint8_t x_386; lean_object* x_387; uint8_t x_388; uint8_t x_389; lean_object* x_395; lean_object* x_396; uint8_t x_397; uint8_t x_398; lean_object* x_399; lean_object* x_400; uint8_t x_401; uint8_t x_402; lean_object* x_407; lean_object* x_419; lean_object* x_420; x_28 = lean_ctor_get(x_3, 0); lean_inc(x_28); x_29 = lean_ctor_get(x_3, 1); @@ -1684,15 +1684,15 @@ goto block_23; block_59: { uint8_t x_50; -x_50 = lean_nat_dec_lt(x_48, x_45); -lean_dec(x_48); +x_50 = lean_nat_dec_lt(x_45, x_43); +lean_dec(x_45); if (x_50 == 0) { -lean_dec(x_45); -lean_dec_ref(x_43); +lean_dec_ref(x_47); +lean_dec(x_43); lean_dec_ref(x_35); -x_15 = x_46; -x_16 = x_44; +x_15 = x_44; +x_16 = x_48; x_17 = lean_box(0); goto block_23; } @@ -1700,16 +1700,16 @@ else { lean_object* x_51; uint8_t x_52; x_51 = lean_box(0); -x_52 = lean_nat_dec_le(x_45, x_45); +x_52 = lean_nat_dec_le(x_43, x_43); if (x_52 == 0) { if (x_50 == 0) { -lean_dec(x_45); -lean_dec_ref(x_43); +lean_dec_ref(x_47); +lean_dec(x_43); lean_dec_ref(x_35); -x_15 = x_46; -x_16 = x_44; +x_15 = x_44; +x_16 = x_48; x_17 = lean_box(0); goto block_23; } @@ -1717,11 +1717,11 @@ else { size_t x_53; size_t x_54; lean_object* x_55; x_53 = 0; -x_54 = lean_usize_of_nat(x_45); -lean_dec(x_45); -x_55 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Monitor_reportJob_spec__0___redArg(x_35, x_49, x_40, x_43, x_53, x_54, x_51, x_44); -lean_dec_ref(x_43); -x_24 = x_46; +x_54 = lean_usize_of_nat(x_43); +lean_dec(x_43); +x_55 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Monitor_reportJob_spec__0___redArg(x_35, x_49, x_40, x_47, x_53, x_54, x_51, x_48); +lean_dec_ref(x_47); +x_24 = x_44; x_25 = x_55; goto block_27; } @@ -1730,11 +1730,11 @@ else { size_t x_56; size_t x_57; lean_object* x_58; x_56 = 0; -x_57 = lean_usize_of_nat(x_45); -lean_dec(x_45); -x_58 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Monitor_reportJob_spec__0___redArg(x_35, x_49, x_40, x_43, x_56, x_57, x_51, x_44); -lean_dec_ref(x_43); -x_24 = x_46; +x_57 = lean_usize_of_nat(x_43); +lean_dec(x_43); +x_58 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Monitor_reportJob_spec__0___redArg(x_35, x_49, x_40, x_47, x_56, x_57, x_51, x_48); +lean_dec_ref(x_47); +x_24 = x_44; x_25 = x_58; goto block_27; } @@ -1742,27 +1742,27 @@ goto block_27; } block_69: { -if (x_61 == 0) +if (x_62 == 0) { -lean_dec(x_65); +lean_dec_ref(x_65); lean_dec(x_63); -lean_dec_ref(x_60); +lean_dec(x_60); lean_dec_ref(x_35); -x_15 = x_64; -x_16 = x_62; +x_15 = x_61; +x_16 = x_66; x_17 = lean_box(0); goto block_23; } else { -if (x_66 == 0) +if (x_64 == 0) { x_43 = x_60; -x_44 = x_62; +x_44 = x_61; x_45 = x_63; -x_46 = x_64; -x_47 = lean_box(0); -x_48 = x_65; +x_46 = lean_box(0); +x_47 = x_65; +x_48 = x_66; x_49 = x_36; goto block_59; } @@ -1771,11 +1771,11 @@ else uint8_t x_68; x_68 = 0; x_43 = x_60; -x_44 = x_62; +x_44 = x_61; x_45 = x_63; -x_46 = x_64; -x_47 = lean_box(0); -x_48 = x_65; +x_46 = lean_box(0); +x_47 = x_65; +x_48 = x_66; x_49 = x_68; goto block_59; } @@ -1784,15 +1784,15 @@ goto block_59; block_186: { uint8_t x_80; -x_80 = !lean_is_exclusive(x_72); +x_80 = !lean_is_exclusive(x_73); if (x_80 == 0) { 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; -x_81 = lean_ctor_get(x_74, 1); -x_82 = lean_ctor_get(x_72, 3); +x_81 = lean_ctor_get(x_71, 1); +x_82 = lean_ctor_get(x_73, 3); x_83 = lean_ctor_get(x_81, 4); x_84 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_renderProgress___redArg___closed__1)); -lean_ctor_set(x_72, 3, x_84); +lean_ctor_set(x_73, 3, x_84); x_85 = lean_string_append(x_82, x_79); lean_dec_ref(x_79); x_86 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__0)); @@ -1807,10 +1807,10 @@ lean_dec_ref(x_87); x_60 = x_70; x_61 = x_71; x_62 = x_72; -x_63 = x_73; -x_64 = x_74; -x_65 = x_77; -x_66 = x_78; +x_63 = x_74; +x_64 = x_76; +x_65 = x_78; +x_66 = x_73; x_67 = lean_box(0); goto block_69; } @@ -1829,12 +1829,12 @@ x_94 = lean_unsigned_to_nat(4u); x_95 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__4)); x_96 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__7)); x_97 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__12)); -lean_inc(x_77); -x_98 = l_Lean_Name_num___override(x_97, x_77); +lean_inc(x_74); +x_98 = l_Lean_Name_num___override(x_97, x_74); x_99 = l_Lean_Name_str___override(x_98, x_96); x_100 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__15)); x_101 = l_Lean_Name_str___override(x_99, x_100); -x_102 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_101, x_76); +x_102 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_101, x_75); x_103 = lean_string_append(x_95, x_102); lean_dec_ref(x_102); x_104 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__19)); @@ -1848,8 +1848,8 @@ x_110 = l_String_quote(x_87); lean_ctor_set_tag(x_88, 3); lean_ctor_set(x_88, 0, x_110); x_111 = l_Std_Format_defWidth; -lean_inc_n(x_77, 2); -x_112 = l_Std_Format_pretty(x_88, x_111, x_77, x_77); +lean_inc_n(x_74, 2); +x_112 = l_Std_Format_pretty(x_88, x_111, x_74, x_74); x_113 = lean_string_append(x_109, x_112); lean_dec_ref(x_112); x_114 = l_mkPanicMessageWithDecl(x_91, x_92, x_93, x_94, x_113); @@ -1858,10 +1858,10 @@ x_115 = l_panic___at___00__private_Lake_Build_Run_0__Lake_Monitor_renderProgress x_60 = x_70; x_61 = x_71; x_62 = x_72; -x_63 = x_73; -x_64 = x_74; -x_65 = x_77; -x_66 = x_78; +x_63 = x_74; +x_64 = x_76; +x_65 = x_78; +x_66 = x_73; x_67 = lean_box(0); goto block_69; } @@ -1878,12 +1878,12 @@ x_120 = lean_unsigned_to_nat(4u); x_121 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__4)); x_122 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__7)); x_123 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__12)); -lean_inc(x_77); -x_124 = l_Lean_Name_num___override(x_123, x_77); +lean_inc(x_74); +x_124 = l_Lean_Name_num___override(x_123, x_74); x_125 = l_Lean_Name_str___override(x_124, x_122); x_126 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__15)); x_127 = l_Lean_Name_str___override(x_125, x_126); -x_128 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_127, x_76); +x_128 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_127, x_75); x_129 = lean_string_append(x_121, x_128); lean_dec_ref(x_128); x_130 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__19)); @@ -1897,8 +1897,8 @@ x_136 = l_String_quote(x_87); x_137 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_137, 0, x_136); x_138 = l_Std_Format_defWidth; -lean_inc_n(x_77, 2); -x_139 = l_Std_Format_pretty(x_137, x_138, x_77, x_77); +lean_inc_n(x_74, 2); +x_139 = l_Std_Format_pretty(x_137, x_138, x_74, x_74); x_140 = lean_string_append(x_135, x_139); lean_dec_ref(x_139); x_141 = l_mkPanicMessageWithDecl(x_117, x_118, x_119, x_120, x_140); @@ -1907,10 +1907,10 @@ x_142 = l_panic___at___00__private_Lake_Build_Run_0__Lake_Monitor_renderProgress x_60 = x_70; x_61 = x_71; x_62 = x_72; -x_63 = x_73; -x_64 = x_74; -x_65 = x_77; -x_66 = x_78; +x_63 = x_74; +x_64 = x_76; +x_65 = x_78; +x_66 = x_73; x_67 = lean_box(0); goto block_69; } @@ -1919,21 +1919,21 @@ goto block_69; else { lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_143 = lean_ctor_get(x_74, 1); -x_144 = lean_ctor_get(x_72, 0); -x_145 = lean_ctor_get(x_72, 1); -x_146 = lean_ctor_get_uint8(x_72, sizeof(void*)*6); -x_147 = lean_ctor_get(x_72, 2); -x_148 = lean_ctor_get(x_72, 3); -x_149 = lean_ctor_get(x_72, 4); -x_150 = lean_ctor_get(x_72, 5); +x_143 = lean_ctor_get(x_71, 1); +x_144 = lean_ctor_get(x_73, 0); +x_145 = lean_ctor_get(x_73, 1); +x_146 = lean_ctor_get_uint8(x_73, sizeof(void*)*6); +x_147 = lean_ctor_get(x_73, 2); +x_148 = lean_ctor_get(x_73, 3); +x_149 = lean_ctor_get(x_73, 4); +x_150 = lean_ctor_get(x_73, 5); lean_inc(x_150); lean_inc(x_149); lean_inc(x_148); lean_inc(x_147); lean_inc(x_145); lean_inc(x_144); -lean_dec(x_72); +lean_dec(x_73); x_151 = lean_ctor_get(x_143, 4); x_152 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_renderProgress___redArg___closed__1)); x_153 = lean_alloc_ctor(0, 6, 1); @@ -1957,11 +1957,11 @@ lean_dec_ref(x_157); lean_dec_ref(x_156); x_60 = x_70; x_61 = x_71; -x_62 = x_153; -x_63 = x_73; -x_64 = x_74; -x_65 = x_77; -x_66 = x_78; +x_62 = x_72; +x_63 = x_74; +x_64 = x_76; +x_65 = x_78; +x_66 = x_153; x_67 = lean_box(0); goto block_69; } @@ -1984,12 +1984,12 @@ x_163 = lean_unsigned_to_nat(4u); x_164 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__4)); x_165 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__7)); x_166 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__12)); -lean_inc(x_77); -x_167 = l_Lean_Name_num___override(x_166, x_77); +lean_inc(x_74); +x_167 = l_Lean_Name_num___override(x_166, x_74); x_168 = l_Lean_Name_str___override(x_167, x_165); x_169 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__15)); x_170 = l_Lean_Name_str___override(x_168, x_169); -x_171 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_170, x_76); +x_171 = l_Lean_Name_toStringWithToken___at___00Lean_Name_toString_spec__0(x_170, x_75); x_172 = lean_string_append(x_164, x_171); lean_dec_ref(x_171); x_173 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_print_x21___closed__19)); @@ -2008,8 +2008,8 @@ if (lean_is_scalar(x_159)) { } lean_ctor_set(x_180, 0, x_179); x_181 = l_Std_Format_defWidth; -lean_inc_n(x_77, 2); -x_182 = l_Std_Format_pretty(x_180, x_181, x_77, x_77); +lean_inc_n(x_74, 2); +x_182 = l_Std_Format_pretty(x_180, x_181, x_74, x_74); x_183 = lean_string_append(x_178, x_182); lean_dec_ref(x_182); x_184 = l_mkPanicMessageWithDecl(x_160, x_161, x_162, x_163, x_183); @@ -2017,11 +2017,11 @@ lean_dec_ref(x_183); x_185 = l_panic___at___00__private_Lake_Build_Run_0__Lake_Monitor_renderProgress_spec__0(x_184); x_60 = x_70; x_61 = x_71; -x_62 = x_153; -x_63 = x_73; -x_64 = x_74; -x_65 = x_77; -x_66 = x_78; +x_62 = x_72; +x_63 = x_74; +x_64 = x_76; +x_65 = x_78; +x_66 = x_153; x_67 = lean_box(0); goto block_69; } @@ -2030,17 +2030,17 @@ goto block_69; block_199: { lean_object* x_198; -x_198 = l_Lake_Ansi_chalk(x_197, x_193); -lean_dec_ref(x_193); +x_198 = l_Lake_Ansi_chalk(x_197, x_189); +lean_dec_ref(x_189); lean_dec_ref(x_197); x_70 = x_187; -x_71 = x_189; -x_72 = x_188; +x_71 = x_188; +x_72 = x_191; x_73 = x_190; -x_74 = x_191; -x_75 = lean_box(0); -x_76 = x_195; -x_77 = x_194; +x_74 = x_192; +x_75 = x_193; +x_76 = x_194; +x_77 = lean_box(0); x_78 = x_196; x_79 = x_198; goto block_186; @@ -2049,7 +2049,7 @@ block_238: { lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; x_217 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_renderProgress___redArg___closed__1)); -x_218 = lean_string_push(x_217, x_213); +x_218 = lean_string_push(x_217, x_203); x_219 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_renderProgress___redArg___closed__2)); x_220 = lean_string_append(x_218, x_219); x_221 = l_Nat_reprFast(x_28); @@ -2062,12 +2062,12 @@ x_226 = lean_string_append(x_224, x_225); lean_dec_ref(x_225); x_227 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__1)); x_228 = lean_string_append(x_226, x_227); -x_229 = lean_string_append(x_228, x_215); -lean_dec_ref(x_215); +x_229 = lean_string_append(x_228, x_209); +lean_dec_ref(x_209); x_230 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__2)); x_231 = lean_string_append(x_229, x_230); -x_232 = lean_string_append(x_231, x_204); -lean_dec_ref(x_204); +x_232 = lean_string_append(x_231, x_208); +lean_dec_ref(x_208); x_233 = lean_string_append(x_232, x_230); x_234 = lean_string_append(x_233, x_201); lean_dec_ref(x_201); @@ -2075,51 +2075,51 @@ x_235 = lean_string_append(x_234, x_216); lean_dec_ref(x_216); if (x_40 == 0) { -x_70 = x_208; +x_70 = x_204; x_71 = x_210; -x_72 = x_209; -x_73 = x_211; -x_74 = x_203; -x_75 = lean_box(0); -x_76 = x_214; -x_77 = x_205; -x_78 = x_206; +x_72 = x_206; +x_73 = x_205; +x_74 = x_211; +x_75 = x_207; +x_76 = x_212; +x_77 = lean_box(0); +x_78 = x_215; x_79 = x_235; goto block_186; } else { -if (x_210 == 0) +if (x_206 == 0) { lean_object* x_236; x_236 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__3)); -x_187 = x_208; -x_188 = x_209; -x_189 = x_210; -x_190 = x_211; -x_191 = x_203; -x_192 = lean_box(0); -x_193 = x_235; -x_194 = x_205; -x_195 = x_214; -x_196 = x_206; +x_187 = x_204; +x_188 = x_210; +x_189 = x_235; +x_190 = x_205; +x_191 = x_206; +x_192 = x_211; +x_193 = x_207; +x_194 = x_212; +x_195 = lean_box(0); +x_196 = x_215; x_197 = x_236; goto block_199; } else { lean_object* x_237; -x_237 = l_Lake_LogLevel_ansiColor(x_207); -x_187 = x_208; -x_188 = x_209; -x_189 = x_210; -x_190 = x_211; -x_191 = x_203; -x_192 = lean_box(0); -x_193 = x_235; -x_194 = x_205; -x_195 = x_214; -x_196 = x_206; +x_237 = l_Lake_LogLevel_ansiColor(x_214); +x_187 = x_204; +x_188 = x_210; +x_189 = x_235; +x_190 = x_205; +x_191 = x_206; +x_192 = x_211; +x_193 = x_207; +x_194 = x_212; +x_195 = lean_box(0); +x_196 = x_215; x_197 = x_237; goto block_199; } @@ -2138,8 +2138,8 @@ x_208 = x_244; x_209 = x_245; x_210 = x_246; x_211 = x_247; -x_212 = lean_box(0); -x_213 = x_249; +x_212 = x_248; +x_213 = lean_box(0); x_214 = x_250; x_215 = x_251; x_216 = x_252; @@ -2149,49 +2149,49 @@ block_274: { if (x_42 == 0) { -lean_dec(x_266); +lean_dec(x_260); x_239 = x_254; x_240 = x_255; x_241 = x_256; x_242 = x_257; x_243 = x_258; x_244 = x_259; -x_245 = x_260; +x_245 = x_267; x_246 = x_261; x_247 = x_262; -x_248 = lean_box(0); -x_249 = x_264; +x_248 = x_263; +x_249 = lean_box(0); x_250 = x_265; -x_251 = x_267; +x_251 = x_266; goto block_253; } else { uint8_t x_268; -x_268 = lean_nat_dec_lt(x_256, x_266); +x_268 = lean_nat_dec_lt(x_262, x_260); if (x_268 == 0) { -lean_dec(x_266); +lean_dec(x_260); x_239 = x_254; x_240 = x_255; x_241 = x_256; x_242 = x_257; x_243 = x_258; x_244 = x_259; -x_245 = x_260; +x_245 = x_267; x_246 = x_261; x_247 = x_262; -x_248 = lean_box(0); -x_249 = x_264; +x_248 = x_263; +x_249 = lean_box(0); x_250 = x_265; -x_251 = x_267; +x_251 = x_266; goto block_253; } else { lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; x_269 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__4)); -x_270 = l___private_Lake_Build_Run_0__Lake_Monitor_reportJob_formatTime(x_266); +x_270 = l___private_Lake_Build_Run_0__Lake_Monitor_reportJob_formatTime(x_260); x_271 = lean_string_append(x_269, x_270); lean_dec_ref(x_270); x_272 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__5)); @@ -2202,13 +2202,13 @@ x_205 = x_256; x_206 = x_257; x_207 = x_258; x_208 = x_259; -x_209 = x_260; +x_209 = x_267; x_210 = x_261; x_211 = x_262; -x_212 = lean_box(0); -x_213 = x_264; +x_212 = x_263; +x_213 = lean_box(0); x_214 = x_265; -x_215 = x_267; +x_215 = x_266; x_216 = x_273; goto block_238; } @@ -2220,19 +2220,19 @@ if (x_202 == 0) { lean_object* x_288; x_288 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_renderProgress___redArg___closed__1)); -x_254 = x_279; -x_255 = x_280; -x_256 = x_283; -x_257 = x_286; -x_258 = x_285; -x_259 = x_275; -x_260 = x_277; +x_254 = x_287; +x_255 = x_275; +x_256 = x_278; +x_257 = x_277; +x_258 = x_280; +x_259 = x_282; +x_260 = x_285; x_261 = x_276; -x_262 = x_278; -x_263 = lean_box(0); -x_264 = x_287; -x_265 = x_282; -x_266 = x_284; +x_262 = x_279; +x_263 = x_281; +x_264 = lean_box(0); +x_265 = x_284; +x_266 = x_286; x_267 = x_288; goto block_274; } @@ -2240,39 +2240,39 @@ else { lean_object* x_289; x_289 = ((lean_object*)(l___private_Lake_Build_Run_0__Lake_Monitor_reportJob___closed__6)); -x_254 = x_279; -x_255 = x_280; -x_256 = x_283; -x_257 = x_286; -x_258 = x_285; -x_259 = x_275; -x_260 = x_277; +x_254 = x_287; +x_255 = x_275; +x_256 = x_278; +x_257 = x_277; +x_258 = x_280; +x_259 = x_282; +x_260 = x_285; x_261 = x_276; -x_262 = x_278; -x_263 = lean_box(0); -x_264 = x_287; -x_265 = x_282; -x_266 = x_284; +x_262 = x_279; +x_263 = x_281; +x_264 = lean_box(0); +x_265 = x_284; +x_266 = x_286; x_267 = x_289; goto block_274; } } block_307: { -if (x_293 == 0) +if (x_294 == 0) { if (x_41 == 0) { -lean_dec(x_301); -lean_dec(x_299); -lean_dec_ref(x_296); +lean_dec_ref(x_302); +lean_dec(x_300); lean_dec(x_295); -lean_dec_ref(x_291); +lean_dec_ref(x_292); +lean_dec(x_291); lean_dec_ref(x_201); lean_dec_ref(x_35); lean_dec(x_29); lean_dec(x_28); -x_5 = x_292; +x_5 = x_293; x_6 = lean_box(0); goto block_9; } @@ -2280,54 +2280,54 @@ else { if (x_40 == 0) { -if (x_297 == 0) +if (x_299 == 0) { -lean_dec(x_301); -lean_dec(x_299); -lean_dec_ref(x_296); +lean_dec_ref(x_302); +lean_dec(x_300); lean_dec(x_295); -lean_dec_ref(x_291); +lean_dec_ref(x_292); +lean_dec(x_291); lean_dec_ref(x_201); lean_dec_ref(x_35); lean_dec(x_29); lean_dec(x_28); -x_5 = x_292; +x_5 = x_293; x_6 = lean_box(0); goto block_9; } else { lean_object* x_303; uint32_t x_304; -x_303 = l_Lake_JobAction_verb(x_300, x_294); +x_303 = l_Lake_JobAction_verb(x_296, x_301); x_304 = 10004; x_275 = x_291; -x_276 = x_293; -x_277 = x_292; -x_278 = x_295; -x_279 = x_296; -x_280 = x_303; -x_281 = lean_box(0); -x_282 = x_297; -x_283 = x_299; -x_284 = x_301; -x_285 = x_302; -x_286 = x_300; +x_276 = x_292; +x_277 = x_294; +x_278 = x_293; +x_279 = x_295; +x_280 = x_299; +x_281 = x_296; +x_282 = x_303; +x_283 = lean_box(0); +x_284 = x_298; +x_285 = x_300; +x_286 = x_302; x_287 = x_304; goto block_290; } } else { -lean_dec(x_301); -lean_dec(x_299); -lean_dec_ref(x_296); +lean_dec_ref(x_302); +lean_dec(x_300); lean_dec(x_295); -lean_dec_ref(x_291); +lean_dec_ref(x_292); +lean_dec(x_291); lean_dec_ref(x_201); lean_dec_ref(x_35); lean_dec(x_29); lean_dec(x_28); -x_5 = x_292; +x_5 = x_293; x_6 = lean_box(0); goto block_9; } @@ -2336,20 +2336,20 @@ goto block_9; else { lean_object* x_305; uint32_t x_306; -x_305 = l_Lake_JobAction_verb(x_300, x_294); -x_306 = l_Lake_LogLevel_icon(x_302); +x_305 = l_Lake_JobAction_verb(x_296, x_301); +x_306 = l_Lake_LogLevel_icon(x_298); x_275 = x_291; -x_276 = x_293; -x_277 = x_292; -x_278 = x_295; -x_279 = x_296; -x_280 = x_305; -x_281 = lean_box(0); -x_282 = x_293; -x_283 = x_299; -x_284 = x_301; -x_285 = x_302; -x_286 = x_300; +x_276 = x_292; +x_277 = x_294; +x_278 = x_293; +x_279 = x_295; +x_280 = x_294; +x_281 = x_296; +x_282 = x_305; +x_283 = lean_box(0); +x_284 = x_298; +x_285 = x_300; +x_286 = x_302; x_287 = x_306; goto block_290; } @@ -2360,12 +2360,12 @@ if (x_202 == 0) { x_291 = x_308; x_292 = x_309; -x_293 = x_319; -x_294 = x_310; +x_293 = x_310; +x_294 = x_319; x_295 = x_311; x_296 = x_312; -x_297 = x_313; -x_298 = lean_box(0); +x_297 = lean_box(0); +x_298 = x_314; x_299 = x_315; x_300 = x_316; x_301 = x_317; @@ -2376,16 +2376,16 @@ else { if (x_39 == 0) { -lean_dec(x_317); -lean_dec(x_315); -lean_dec_ref(x_312); +lean_dec_ref(x_318); +lean_dec(x_316); lean_dec(x_311); -lean_dec_ref(x_308); +lean_dec_ref(x_309); +lean_dec(x_308); lean_dec_ref(x_201); lean_dec_ref(x_35); lean_dec(x_29); lean_dec(x_28); -x_5 = x_309; +x_5 = x_310; x_6 = lean_box(0); goto block_9; } @@ -2393,12 +2393,12 @@ else { x_291 = x_308; x_292 = x_309; -x_293 = x_319; -x_294 = x_310; +x_293 = x_310; +x_294 = x_319; x_295 = x_311; x_296 = x_312; -x_297 = x_313; -x_298 = lean_box(0); +x_297 = lean_box(0); +x_298 = x_314; x_299 = x_315; x_300 = x_316; x_301 = x_317; @@ -2409,37 +2409,37 @@ goto block_307; } block_346: { -if (x_329 == 0) +if (x_323 == 0) { -if (x_322 == 0) +if (x_330 == 0) { x_308 = x_321; -x_309 = x_332; -x_310 = x_323; -x_311 = x_325; -x_312 = x_331; -x_313 = x_326; -x_314 = lean_box(0); -x_315 = x_327; -x_316 = x_329; -x_317 = x_328; -x_318 = x_330; -x_319 = x_322; +x_309 = x_331; +x_310 = x_332; +x_311 = x_322; +x_312 = x_323; +x_313 = lean_box(0); +x_314 = x_325; +x_315 = x_326; +x_316 = x_327; +x_317 = x_329; +x_318 = x_328; +x_319 = x_330; goto block_320; } else { x_308 = x_321; -x_309 = x_332; -x_310 = x_323; -x_311 = x_325; -x_312 = x_331; -x_313 = x_326; -x_314 = lean_box(0); -x_315 = x_327; -x_316 = x_329; -x_317 = x_328; -x_318 = x_330; +x_309 = x_331; +x_310 = x_332; +x_311 = x_322; +x_312 = x_323; +x_313 = lean_box(0); +x_314 = x_325; +x_315 = x_326; +x_316 = x_327; +x_317 = x_329; +x_318 = x_328; x_319 = x_324; goto block_320; } @@ -2458,17 +2458,17 @@ lean_inc_ref(x_201); x_336 = lean_array_push(x_335, x_201); lean_ctor_set(x_332, 2, x_336); x_308 = x_321; -x_309 = x_332; -x_310 = x_323; -x_311 = x_325; -x_312 = x_331; -x_313 = x_326; -x_314 = lean_box(0); -x_315 = x_327; -x_316 = x_329; -x_317 = x_328; -x_318 = x_330; -x_319 = x_329; +x_309 = x_331; +x_310 = x_332; +x_311 = x_322; +x_312 = x_323; +x_313 = lean_box(0); +x_314 = x_325; +x_315 = x_326; +x_316 = x_327; +x_317 = x_329; +x_318 = x_328; +x_319 = x_323; goto block_320; } else @@ -2499,47 +2499,47 @@ lean_ctor_set(x_345, 4, x_342); lean_ctor_set(x_345, 5, x_343); lean_ctor_set_uint8(x_345, sizeof(void*)*6, x_339); x_308 = x_321; -x_309 = x_345; -x_310 = x_323; -x_311 = x_325; -x_312 = x_331; -x_313 = x_326; -x_314 = lean_box(0); -x_315 = x_327; -x_316 = x_329; -x_317 = x_328; -x_318 = x_330; -x_319 = x_329; +x_309 = x_331; +x_310 = x_345; +x_311 = x_322; +x_312 = x_323; +x_313 = lean_box(0); +x_314 = x_325; +x_315 = x_326; +x_316 = x_327; +x_317 = x_329; +x_318 = x_328; +x_319 = x_323; goto block_320; } } else { x_308 = x_321; -x_309 = x_332; -x_310 = x_323; -x_311 = x_325; -x_312 = x_331; -x_313 = x_326; -x_314 = lean_box(0); -x_315 = x_327; -x_316 = x_329; -x_317 = x_328; -x_318 = x_330; -x_319 = x_329; +x_309 = x_331; +x_310 = x_332; +x_311 = x_322; +x_312 = x_323; +x_313 = lean_box(0); +x_314 = x_325; +x_315 = x_326; +x_316 = x_327; +x_317 = x_329; +x_318 = x_328; +x_319 = x_323; goto block_320; } } } block_366: { -if (x_352 == 0) +if (x_349 == 0) { x_321 = x_347; x_322 = x_348; -x_323 = x_349; -x_324 = x_350; -x_325 = x_351; +x_323 = x_350; +x_324 = x_351; +x_325 = x_352; x_326 = x_357; x_327 = x_353; x_328 = x_355; @@ -2577,12 +2577,12 @@ x_364 = lean_ctor_get(x_3, 0); lean_dec(x_364); lean_inc(x_29); lean_inc(x_28); -lean_ctor_set_uint8(x_3, sizeof(void*)*6, x_352); +lean_ctor_set_uint8(x_3, sizeof(void*)*6, x_349); x_321 = x_347; x_322 = x_348; -x_323 = x_349; -x_324 = x_350; -x_325 = x_351; +x_323 = x_350; +x_324 = x_351; +x_325 = x_352; x_326 = x_357; x_327 = x_353; x_328 = x_355; @@ -2606,12 +2606,12 @@ lean_ctor_set(x_365, 2, x_31); lean_ctor_set(x_365, 3, x_32); lean_ctor_set(x_365, 4, x_33); lean_ctor_set(x_365, 5, x_34); -lean_ctor_set_uint8(x_365, sizeof(void*)*6, x_352); +lean_ctor_set_uint8(x_365, sizeof(void*)*6, x_349); x_321 = x_347; x_322 = x_348; -x_323 = x_349; -x_324 = x_350; -x_325 = x_351; +x_323 = x_350; +x_324 = x_351; +x_325 = x_352; x_326 = x_357; x_327 = x_353; x_328 = x_355; @@ -2627,9 +2627,9 @@ else { x_321 = x_347; x_322 = x_348; -x_323 = x_349; -x_324 = x_350; -x_325 = x_351; +x_323 = x_350; +x_324 = x_351; +x_325 = x_352; x_326 = x_357; x_327 = x_353; x_328 = x_355; @@ -2645,21 +2645,21 @@ goto block_346; block_380: { uint8_t x_377; -x_377 = l_Lake_instOrdJobAction_ord(x_38, x_369); +x_377 = l_Lake_instOrdJobAction_ord(x_38, x_374); if (x_377 == 2) { uint8_t x_378; x_378 = 0; -x_347 = x_368; -x_348 = x_367; -x_349 = x_369; -x_350 = x_376; -x_351 = x_370; +x_347 = x_367; +x_348 = x_368; +x_349 = x_370; +x_350 = x_369; +x_351 = x_376; x_352 = x_371; x_353 = x_372; -x_354 = x_375; -x_355 = x_374; -x_356 = x_373; +x_354 = x_374; +x_355 = x_373; +x_356 = x_375; x_357 = x_378; goto block_366; } @@ -2667,16 +2667,16 @@ else { uint8_t x_379; x_379 = 1; -x_347 = x_368; -x_348 = x_367; -x_349 = x_369; -x_350 = x_376; -x_351 = x_370; +x_347 = x_367; +x_348 = x_368; +x_349 = x_370; +x_350 = x_369; +x_351 = x_376; x_352 = x_371; x_353 = x_372; -x_354 = x_375; -x_355 = x_374; -x_356 = x_373; +x_354 = x_374; +x_355 = x_373; +x_356 = x_375; x_357 = x_379; goto block_366; } @@ -2684,21 +2684,21 @@ goto block_366; block_394: { uint8_t x_390; uint8_t x_391; -x_390 = lean_strict_and(x_382, x_389); -x_391 = l_Lake_instOrdLogLevel_ord(x_36, x_388); +x_390 = lean_strict_and(x_388, x_389); +x_391 = l_Lake_instOrdLogLevel_ord(x_36, x_384); if (x_391 == 2) { uint8_t x_392; x_392 = 0; -x_367 = x_382; -x_368 = x_381; -x_369 = x_383; -x_370 = x_384; -x_371 = x_385; -x_372 = x_386; -x_373 = x_388; -x_374 = x_387; -x_375 = x_390; +x_367 = x_381; +x_368 = x_382; +x_369 = x_390; +x_370 = x_383; +x_371 = x_384; +x_372 = x_385; +x_373 = x_387; +x_374 = x_386; +x_375 = x_388; x_376 = x_392; goto block_380; } @@ -2706,15 +2706,15 @@ else { uint8_t x_393; x_393 = 1; -x_367 = x_382; -x_368 = x_381; -x_369 = x_383; -x_370 = x_384; -x_371 = x_385; -x_372 = x_386; -x_373 = x_388; -x_374 = x_387; -x_375 = x_390; +x_367 = x_381; +x_368 = x_382; +x_369 = x_390; +x_370 = x_383; +x_371 = x_384; +x_372 = x_385; +x_373 = x_387; +x_374 = x_386; +x_375 = x_388; x_376 = x_393; goto block_380; } @@ -2722,19 +2722,19 @@ goto block_380; block_406: { uint8_t x_403; -x_403 = l_Lake_instOrdLogLevel_ord(x_37, x_400); +x_403 = l_Lake_instOrdLogLevel_ord(x_37, x_398); if (x_403 == 2) { uint8_t x_404; x_404 = 0; x_381 = x_395; -x_382 = x_402; -x_383 = x_396; -x_384 = x_397; -x_385 = x_398; -x_386 = x_399; -x_387 = x_401; -x_388 = x_400; +x_382 = x_396; +x_383 = x_397; +x_384 = x_398; +x_385 = x_399; +x_386 = x_401; +x_387 = x_400; +x_388 = x_402; x_389 = x_404; goto block_394; } @@ -2743,13 +2743,13 @@ else uint8_t x_405; x_405 = 1; x_381 = x_395; -x_382 = x_402; -x_383 = x_396; -x_384 = x_397; -x_385 = x_398; -x_386 = x_399; -x_387 = x_401; -x_388 = x_400; +x_382 = x_396; +x_383 = x_397; +x_384 = x_398; +x_385 = x_399; +x_386 = x_401; +x_387 = x_400; +x_388 = x_402; x_389 = x_405; goto block_394; } @@ -2772,13 +2772,13 @@ if (x_415 == 0) { uint8_t x_416; x_416 = 1; -x_395 = x_408; -x_396 = x_409; -x_397 = x_413; -x_398 = x_410; -x_399 = x_414; -x_400 = x_412; -x_401 = x_411; +x_395 = x_413; +x_396 = x_414; +x_397 = x_410; +x_398 = x_412; +x_399 = x_411; +x_400 = x_408; +x_401 = x_409; x_402 = x_416; goto block_406; } @@ -2786,13 +2786,13 @@ else { uint8_t x_417; x_417 = 0; -x_395 = x_408; -x_396 = x_409; -x_397 = x_413; -x_398 = x_410; -x_399 = x_414; -x_400 = x_412; -x_401 = x_411; +x_395 = x_413; +x_396 = x_414; +x_397 = x_410; +x_398 = x_412; +x_399 = x_411; +x_400 = x_408; +x_401 = x_409; x_402 = x_417; goto block_406; } @@ -4124,7 +4124,7 @@ lean_inc_ref(x_1); x_10 = lean_alloc_closure((void*)(l___private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___lam__0___boxed), 4, 1); lean_closure_set(x_10, 0, x_1); x_11 = l___private_Lake_Build_Run_0__Lake_print_x21___closed__0; -x_121 = l_Lake_Workspace_isRootArtifactCacheEnabled(x_2); +x_121 = l_Lake_Workspace_isRootArtifactCacheWritable(x_2); if (x_121 == 0) { lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; lean_object* x_129; @@ -4204,7 +4204,7 @@ block_44: if (x_5 == 0) { lean_object* x_31; -lean_dec_ref(x_29); +lean_dec_ref(x_28); lean_dec_ref(x_10); x_31 = lean_box(0); return x_31; @@ -4212,12 +4212,12 @@ return x_31; else { lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_32 = lean_array_get_size(x_29); +x_32 = lean_array_get_size(x_28); x_33 = lean_box(0); -x_34 = lean_nat_dec_lt(x_28, x_32); +x_34 = lean_nat_dec_lt(x_29, x_32); if (x_34 == 0) { -lean_dec_ref(x_29); +lean_dec_ref(x_28); lean_dec_ref(x_10); return x_33; } @@ -4229,7 +4229,7 @@ if (x_35 == 0) { if (x_34 == 0) { -lean_dec_ref(x_29); +lean_dec_ref(x_28); lean_dec_ref(x_10); return x_33; } @@ -4238,7 +4238,7 @@ else size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; x_36 = 0; x_37 = lean_usize_of_nat(x_32); -x_38 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold(lean_box(0), lean_box(0), lean_box(0), x_11, x_10, x_29, x_36, x_37, x_33); +x_38 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold(lean_box(0), lean_box(0), lean_box(0), x_11, x_10, x_28, x_36, x_37, x_33); x_39 = lean_apply_1(x_38, lean_box(0)); return x_39; } @@ -4248,7 +4248,7 @@ else size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; x_40 = 0; x_41 = lean_usize_of_nat(x_32); -x_42 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold(lean_box(0), lean_box(0), lean_box(0), x_11, x_10, x_29, x_40, x_41, x_33); +x_42 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold(lean_box(0), lean_box(0), lean_box(0), x_11, x_10, x_28, x_40, x_41, x_33); x_43 = lean_apply_1(x_42, lean_box(0)); return x_43; } @@ -4368,8 +4368,8 @@ x_83 = lean_apply_2(x_81, x_82, lean_box(0)); if (lean_obj_tag(x_83) == 0) { lean_dec_ref(x_83); -x_28 = x_50; -x_29 = x_80; +x_28 = x_80; +x_29 = x_50; x_30 = lean_box(0); goto block_44; } @@ -4396,8 +4396,8 @@ x_97 = l_mkPanicMessageWithDecl(x_86, x_87, x_88, x_89, x_96); lean_dec_ref(x_96); x_98 = l_panic___redArg(x_85, x_97); x_99 = lean_apply_1(x_98, lean_box(0)); -x_28 = x_50; -x_29 = x_80; +x_28 = x_80; +x_29 = x_50; x_30 = lean_box(0); goto block_44; } @@ -5496,7 +5496,7 @@ LEAN_EXPORT lean_object* l___private_Lake_Build_Run_0__Lake_Workspace_saveOutput _start: { lean_object* x_9; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_41; uint8_t x_111; -x_111 = l_Lake_Workspace_isRootArtifactCacheEnabled(x_4); +x_111 = l_Lake_Workspace_isRootArtifactCacheWritable(x_4); if (x_111 == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; lean_object* x_119; @@ -5530,12 +5530,12 @@ return x_10; block_25: { lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_array_get_size(x_12); +x_15 = lean_array_get_size(x_13); x_16 = lean_box(0); -x_17 = lean_nat_dec_lt(x_13, x_15); +x_17 = lean_nat_dec_lt(x_12, x_15); if (x_17 == 0) { -lean_dec_ref(x_12); +lean_dec_ref(x_13); lean_dec_ref(x_1); return x_16; } @@ -5547,7 +5547,7 @@ if (x_18 == 0) { if (x_17 == 0) { -lean_dec_ref(x_12); +lean_dec_ref(x_13); lean_dec_ref(x_1); return x_16; } @@ -5556,8 +5556,8 @@ else size_t x_19; size_t x_20; lean_object* x_21; x_19 = 0; x_20 = lean_usize_of_nat(x_15); -x_21 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_12, x_19, x_20, x_16); -lean_dec_ref(x_12); +x_21 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_13, x_19, x_20, x_16); +lean_dec_ref(x_13); return x_21; } } @@ -5566,8 +5566,8 @@ else size_t x_22; size_t x_23; lean_object* x_24; x_22 = 0; x_23 = lean_usize_of_nat(x_15); -x_24 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_12, x_22, x_23, x_16); -lean_dec_ref(x_12); +x_24 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_13, x_22, x_23, x_16); +lean_dec_ref(x_13); return x_24; } } @@ -5577,7 +5577,7 @@ block_40: if (x_7 == 0) { lean_object* x_29; -lean_dec_ref(x_26); +lean_dec_ref(x_27); lean_dec_ref(x_1); x_29 = lean_box(0); return x_29; @@ -5585,12 +5585,12 @@ return x_29; else { lean_object* x_30; lean_object* x_31; uint8_t x_32; -x_30 = lean_array_get_size(x_26); +x_30 = lean_array_get_size(x_27); x_31 = lean_box(0); -x_32 = lean_nat_dec_lt(x_27, x_30); +x_32 = lean_nat_dec_lt(x_26, x_30); if (x_32 == 0) { -lean_dec_ref(x_26); +lean_dec_ref(x_27); lean_dec_ref(x_1); return x_31; } @@ -5602,7 +5602,7 @@ if (x_33 == 0) { if (x_32 == 0) { -lean_dec_ref(x_26); +lean_dec_ref(x_27); lean_dec_ref(x_1); return x_31; } @@ -5611,8 +5611,8 @@ else size_t x_34; size_t x_35; lean_object* x_36; x_34 = 0; x_35 = lean_usize_of_nat(x_30); -x_36 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_26, x_34, x_35, x_31); -lean_dec_ref(x_26); +x_36 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_27, x_34, x_35, x_31); +lean_dec_ref(x_27); return x_36; } } @@ -5621,8 +5621,8 @@ else size_t x_37; size_t x_38; lean_object* x_39; x_37 = 0; x_38 = lean_usize_of_nat(x_30); -x_39 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_26, x_37, x_38, x_31); -lean_dec_ref(x_26); +x_39 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lake_Build_Run_0__Lake_Workspace_saveOutputs___at___00__private_Lake_Build_Run_0__Lake_Workspace_finalizeBuild_spec__0_spec__0(x_1, x_2, x_3, x_27, x_37, x_38, x_31); +lean_dec_ref(x_27); return x_39; } } @@ -5677,8 +5677,8 @@ x_54 = lean_apply_2(x_52, x_53, lean_box(0)); if (lean_obj_tag(x_54) == 0) { lean_dec_ref(x_54); -x_12 = x_49; -x_13 = x_46; +x_12 = x_46; +x_13 = x_49; x_14 = lean_box(0); goto block_25; } @@ -5709,8 +5709,8 @@ x_71 = lean_string_append(x_69, x_70); x_72 = l_mkPanicMessageWithDecl(x_56, x_57, x_58, x_59, x_71); lean_dec_ref(x_71); x_73 = l_panic___at___00__private_Lake_Build_Run_0__Lake_Monitor_renderProgress_spec__0(x_72); -x_12 = x_49; -x_13 = x_46; +x_12 = x_46; +x_13 = x_49; x_14 = lean_box(0); goto block_25; } @@ -5739,8 +5739,8 @@ x_77 = lean_apply_2(x_75, x_76, lean_box(0)); if (lean_obj_tag(x_77) == 0) { lean_dec_ref(x_77); -x_26 = x_74; -x_27 = x_46; +x_26 = x_46; +x_27 = x_74; x_28 = lean_box(0); goto block_40; } @@ -5765,8 +5765,8 @@ x_89 = lean_string_append(x_87, x_88); x_90 = l_mkPanicMessageWithDecl(x_79, x_80, x_81, x_82, x_89); lean_dec_ref(x_89); x_91 = l_panic___at___00__private_Lake_Build_Run_0__Lake_Monitor_renderProgress_spec__0(x_90); -x_26 = x_74; -x_27 = x_46; +x_26 = x_46; +x_27 = x_74; x_28 = lean_box(0); goto block_40; } diff --git a/stage0/stdlib/Lake/Build/Trace.c b/stage0/stdlib/Lake/Build/Trace.c index 83f90fcb74..11f480c69f 100644 --- a/stage0/stdlib/Lake/Build/Trace.c +++ b/stage0/stdlib/Lake/Build/Trace.c @@ -181,6 +181,10 @@ LEAN_EXPORT lean_object* l_Lake_Hash_toString___boxed(lean_object*); static const lean_closure_object l_Lake_Hash_instToString___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lake_Hash_toString___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l_Lake_Hash_instToString___closed__0 = (const lean_object*)&l_Lake_Hash_instToString___closed__0_value; LEAN_EXPORT const lean_object* l_Lake_Hash_instToString = (const lean_object*)&l_Lake_Hash_instToString___closed__0_value; +LEAN_EXPORT uint64_t l_Lake_Hash_ofHashable___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Hash_ofHashable___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT uint64_t l_Lake_Hash_ofHashable(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Hash_ofHashable___boxed(lean_object*, lean_object*, lean_object*); uint64_t lean_string_hash(lean_object*); LEAN_EXPORT uint64_t l_Lake_Hash_ofString(lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_ofString___boxed(lean_object*); @@ -190,6 +194,8 @@ LEAN_EXPORT lean_object* l_Lake_Hash_ofText___boxed(lean_object*); uint64_t lean_byte_array_hash(lean_object*); LEAN_EXPORT uint64_t l_Lake_Hash_ofByteArray(lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_ofByteArray___boxed(lean_object*); +static uint64_t l_Lake_Hash_ofBool___closed__0; +static uint64_t l_Lake_Hash_ofBool___closed__1; LEAN_EXPORT uint64_t l_Lake_Hash_ofBool(uint8_t); LEAN_EXPORT lean_object* l_Lake_Hash_ofBool___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lake_Hash_toJson(uint64_t); @@ -226,12 +232,8 @@ LEAN_EXPORT uint64_t l_Lake_pureHash(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_pureHash___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_computeHash___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_computeHash(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l_Lake_instComputeHashBoolId___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lake_Hash_ofBool___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lake_instComputeHashBoolId___closed__0 = (const lean_object*)&l_Lake_instComputeHashBoolId___closed__0_value; -LEAN_EXPORT const lean_object* l_Lake_instComputeHashBoolId = (const lean_object*)&l_Lake_instComputeHashBoolId___closed__0_value; -static const lean_closure_object l_Lake_instComputeHashStringId___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lake_Hash_ofString___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lake_instComputeHashStringId___closed__0 = (const lean_object*)&l_Lake_instComputeHashStringId___closed__0_value; -LEAN_EXPORT const lean_object* l_Lake_instComputeHashStringId = (const lean_object*)&l_Lake_instComputeHashStringId___closed__0_value; +LEAN_EXPORT lean_object* l_Lake_instComputeHashIdOfHashable___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lake_instComputeHashIdOfHashable(lean_object*, lean_object*); lean_object* l_IO_FS_readBinFile(lean_object*); LEAN_EXPORT lean_object* l_Lake_computeBinFileHash(lean_object*); LEAN_EXPORT lean_object* l_Lake_computeBinFileHash___boxed(lean_object*, lean_object*); @@ -1395,6 +1397,48 @@ x_3 = l_Lake_Hash_toString(x_2); return x_3; } } +LEAN_EXPORT uint64_t l_Lake_Hash_ofHashable___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; lean_object* x_4; uint64_t x_5; uint64_t x_6; +x_3 = 1723; +x_4 = lean_apply_1(x_1, x_2); +x_5 = lean_unbox_uint64(x_4); +lean_dec(x_4); +x_6 = lean_uint64_mix_hash(x_3, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lake_Hash_ofHashable___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; lean_object* x_4; +x_3 = l_Lake_Hash_ofHashable___redArg(x_1, x_2); +x_4 = lean_box_uint64(x_3); +return x_4; +} +} +LEAN_EXPORT uint64_t l_Lake_Hash_ofHashable(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint64_t x_4; lean_object* x_5; uint64_t x_6; uint64_t x_7; +x_4 = 1723; +x_5 = lean_apply_1(x_2, x_3); +x_6 = lean_unbox_uint64(x_5); +lean_dec(x_5); +x_7 = lean_uint64_mix_hash(x_4, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lake_Hash_ofHashable___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint64_t x_4; lean_object* x_5; +x_4 = l_Lake_Hash_ofHashable(x_1, x_2, x_3); +x_5 = lean_box_uint64(x_4); +return x_5; +} +} LEAN_EXPORT uint64_t l_Lake_Hash_ofString(lean_object* x_1) { _start: { @@ -1440,9 +1484,11 @@ return x_3; LEAN_EXPORT uint64_t l_Lake_Hash_ofByteArray(lean_object* x_1) { _start: { -uint64_t x_2; -x_2 = lean_byte_array_hash(x_1); -return x_2; +uint64_t x_2; uint64_t x_3; uint64_t x_4; +x_2 = 1723; +x_3 = lean_byte_array_hash(x_1); +x_4 = lean_uint64_mix_hash(x_2, x_3); +return x_4; } } LEAN_EXPORT lean_object* l_Lake_Hash_ofByteArray___boxed(lean_object* x_1) { @@ -1455,19 +1501,39 @@ x_3 = lean_box_uint64(x_2); return x_3; } } +static uint64_t _init_l_Lake_Hash_ofBool___closed__0() { +_start: +{ +uint64_t x_1; uint64_t x_2; uint64_t x_3; +x_1 = 13; +x_2 = 1723; +x_3 = lean_uint64_mix_hash(x_2, x_1); +return x_3; +} +} +static uint64_t _init_l_Lake_Hash_ofBool___closed__1() { +_start: +{ +uint64_t x_1; uint64_t x_2; uint64_t x_3; +x_1 = 11; +x_2 = 1723; +x_3 = lean_uint64_mix_hash(x_2, x_1); +return x_3; +} +} LEAN_EXPORT uint64_t l_Lake_Hash_ofBool(uint8_t x_1) { _start: { if (x_1 == 0) { uint64_t x_2; -x_2 = 13; +x_2 = l_Lake_Hash_ofBool___closed__0; return x_2; } else { uint64_t x_3; -x_3 = 11; +x_3 = l_Lake_Hash_ofBool___closed__1; return x_3; } } @@ -1728,6 +1794,26 @@ x_8 = lean_apply_2(x_5, lean_box(0), x_7); return x_8; } } +LEAN_EXPORT lean_object* l_Lake_instComputeHashIdOfHashable___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lake_Hash_ofHashable___boxed), 3, 2); +lean_closure_set(x_2, 0, lean_box(0)); +lean_closure_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lake_instComputeHashIdOfHashable(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lake_Hash_ofHashable___boxed), 3, 2); +lean_closure_set(x_3, 0, lean_box(0)); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} LEAN_EXPORT lean_object* l_Lake_computeBinFileHash(lean_object* x_1) { _start: { @@ -1739,45 +1825,49 @@ uint8_t x_4; x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { -lean_object* x_5; uint64_t x_6; lean_object* x_7; +lean_object* x_5; uint64_t x_6; uint64_t x_7; uint64_t x_8; lean_object* x_9; x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_byte_array_hash(x_5); +x_6 = 1723; +x_7 = lean_byte_array_hash(x_5); lean_dec(x_5); -x_7 = lean_box_uint64(x_6); -lean_ctor_set(x_3, 0, x_7); +x_8 = lean_uint64_mix_hash(x_6, x_7); +x_9 = lean_box_uint64(x_8); +lean_ctor_set(x_3, 0, x_9); return x_3; } else { -lean_object* x_8; uint64_t x_9; lean_object* x_10; lean_object* x_11; -x_8 = lean_ctor_get(x_3, 0); -lean_inc(x_8); +lean_object* x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_3, 0); +lean_inc(x_10); lean_dec(x_3); -x_9 = lean_byte_array_hash(x_8); -lean_dec(x_8); -x_10 = lean_box_uint64(x_9); -x_11 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; +x_11 = 1723; +x_12 = lean_byte_array_hash(x_10); +lean_dec(x_10); +x_13 = lean_uint64_mix_hash(x_11, x_12); +x_14 = lean_box_uint64(x_13); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; } } else { -uint8_t x_12; -x_12 = !lean_is_exclusive(x_3); -if (x_12 == 0) +uint8_t x_16; +x_16 = !lean_is_exclusive(x_3); +if (x_16 == 0) { return x_3; } else { -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_3, 0); -lean_inc(x_13); +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_3, 0); +lean_inc(x_17); lean_dec(x_3); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_13); -return x_14; +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; } } } @@ -3356,6 +3446,8 @@ l_Lake_Hash_ofJsonNumber_x3f___closed__2 = _init_l_Lake_Hash_ofJsonNumber_x3f___ lean_mark_persistent(l_Lake_Hash_ofJsonNumber_x3f___closed__2); l_Lake_Hash_ofJsonNumber_x3f___closed__5 = _init_l_Lake_Hash_ofJsonNumber_x3f___closed__5(); lean_mark_persistent(l_Lake_Hash_ofJsonNumber_x3f___closed__5); +l_Lake_Hash_ofBool___closed__0 = _init_l_Lake_Hash_ofBool___closed__0(); +l_Lake_Hash_ofBool___closed__1 = _init_l_Lake_Hash_ofBool___closed__1(); l_Lake_computeArrayHash___redArg___boxed__const__1 = _init_l_Lake_computeArrayHash___redArg___boxed__const__1(); lean_mark_persistent(l_Lake_computeArrayHash___redArg___boxed__const__1); l_Lake_computeArrayHash___boxed__const__1 = _init_l_Lake_computeArrayHash___boxed__const__1(); diff --git a/stage0/stdlib/Lake/Config/Monad.c b/stage0/stdlib/Lake/Config/Monad.c index efb514347c..2ca75c4325 100644 --- a/stage0/stdlib/Lake/Config/Monad.c +++ b/stage0/stdlib/Lake/Config/Monad.c @@ -195,9 +195,14 @@ lean_object* l_Lake_Cache_getArtifact_x3f___boxed(lean_object*, lean_object*, le LEAN_EXPORT lean_object* l_Lake_getArtifact_x3f___redArg___lam__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_getArtifact_x3f___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_getArtifact_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lake_Workspace_enableArtifactCache(lean_object*); -LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheReadable___redArg___lam__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable___redArg___lam__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheWritable___redArg___lam__0(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_getLakeEnv___redArg(lean_object*); @@ -1481,7 +1486,7 @@ x_11 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_10, x_9); return x_11; } } -LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheReadable___redArg___lam__0(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -1489,30 +1494,168 @@ x_3 = lean_ctor_get(x_1, 6); x_4 = lean_ctor_get(x_3, 25); if (lean_obj_tag(x_4) == 0) { -uint8_t x_5; -x_5 = l_Lake_Workspace_enableArtifactCache(x_2); -return x_5; +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_5, 6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_ctor_get(x_7, 6); +x_9 = lean_ctor_get(x_8, 25); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = 1; +return x_10; } else { -lean_object* x_6; uint8_t x_7; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_unbox(x_6); -return x_7; +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_unbox(x_11); +return x_12; +} +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_6, 0); +x_14 = lean_unbox(x_13); +return x_14; +} +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_4, 0); +x_16 = lean_unbox(x_15); +return x_16; } } } -LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0(x_1, x_2); +x_3 = l_Lake_Package_isArtifactCacheReadable___redArg___lam__0(x_1, x_2); lean_dec_ref(x_2); lean_dec_ref(x_1); x_4 = lean_box(x_3); return x_4; } } +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec_ref(x_1); +x_5 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheReadable___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_5, 0, x_3); +x_6 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheReadable(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_2, 0); +lean_inc(x_5); +lean_dec_ref(x_2); +x_6 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheReadable___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_6, 0, x_4); +x_7 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_6, x_3); +return x_7; +} +} +LEAN_EXPORT uint8_t l_Lake_Package_isArtifactCacheWritable___redArg___lam__0(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_ctor_get(x_1, 6); +x_4 = lean_ctor_get(x_3, 25); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_5, 6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_ctor_get(x_7, 6); +x_9 = lean_ctor_get(x_8, 25); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = 0; +return x_10; +} +else +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_unbox(x_11); +return x_12; +} +} +else +{ +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_6, 0); +x_14 = lean_unbox(x_13); +return x_14; +} +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_4, 0); +x_16 = lean_unbox(x_15); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lake_Package_isArtifactCacheWritable___redArg___lam__0(x_1, x_2); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec_ref(x_1); +x_5 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_5, 0, x_3); +x_6 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheWritable(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_2, 0); +lean_inc(x_5); +lean_dec_ref(x_2); +x_6 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_6, 0, x_4); +x_7 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_6, x_3); +return x_7; +} +} LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1520,7 +1663,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); lean_dec_ref(x_1); -x_5 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheEnabled___redArg___lam__0___boxed), 2, 1); +x_5 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_5, 0, x_3); x_6 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_5, x_2); return x_6; @@ -1529,9 +1672,14 @@ return x_6; LEAN_EXPORT lean_object* l_Lake_Package_isArtifactCacheEnabled(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_5; -x_5 = l_Lake_Package_isArtifactCacheEnabled___redArg(x_2, x_3, x_4); -return x_5; +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_2, 0); +lean_inc(x_5); +lean_dec_ref(x_2); +x_6 = lean_alloc_closure((void*)(l_Lake_Package_isArtifactCacheWritable___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_6, 0, x_4); +x_7 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_6, x_3); +return x_7; } } LEAN_EXPORT lean_object* l_Lake_getLakeEnv___redArg(lean_object* x_1) { diff --git a/stage0/stdlib/Lake/Config/Workspace.c b/stage0/stdlib/Lake/Config/Workspace.c index 9809666361..202fd9a3e7 100644 --- a/stage0/stdlib/Lake/Config/Workspace.c +++ b/stage0/stdlib/Lake/Config/Workspace.c @@ -62,8 +62,12 @@ LEAN_EXPORT lean_object* l_Lake_Workspace_relLakeDir(lean_object*); LEAN_EXPORT lean_object* l_Lake_Workspace_relLakeDir___boxed(lean_object*); lean_object* l_Lake_joinRelative(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_Workspace_lakeDir(lean_object*); +LEAN_EXPORT lean_object* l_Lake_Workspace_enableArtifactCache_x3f(lean_object*); +LEAN_EXPORT lean_object* l_Lake_Workspace_enableArtifactCache_x3f___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lake_Workspace_enableArtifactCache(lean_object*); LEAN_EXPORT lean_object* l_Lake_Workspace_enableArtifactCache___boxed(lean_object*); +LEAN_EXPORT uint8_t l_Lake_Workspace_isRootArtifactCacheWritable(lean_object*); +LEAN_EXPORT lean_object* l_Lake_Workspace_isRootArtifactCacheWritable___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lake_Workspace_isRootArtifactCacheEnabled(lean_object*); LEAN_EXPORT lean_object* l_Lake_Workspace_isRootArtifactCacheEnabled___boxed(lean_object*); lean_object* l_System_FilePath_normalize(lean_object*); @@ -267,8 +271,16 @@ static const lean_string_object l_Lake_Workspace_augmentedEnvVars___closed__6_va static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__6 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__6_value; static const lean_string_object l_Lake_Workspace_augmentedEnvVars___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "false"}; static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__7 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__7_value; -static const lean_string_object l_Lake_Workspace_augmentedEnvVars___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "true"}; +static const lean_ctor_object l_Lake_Workspace_augmentedEnvVars___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__7_value)}}; static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__8 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__8_value; +static const lean_string_object l_Lake_Workspace_augmentedEnvVars___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "true"}; +static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__9 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__9_value; +static const lean_ctor_object l_Lake_Workspace_augmentedEnvVars___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__9_value)}}; +static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__10 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__10_value; +static const lean_string_object l_Lake_Workspace_augmentedEnvVars___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 1, .m_capacity = 1, .m_length = 0, .m_data = ""}; +static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__11 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__11_value; +static const lean_ctor_object l_Lake_Workspace_augmentedEnvVars___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__11_value)}}; +static const lean_object* l_Lake_Workspace_augmentedEnvVars___closed__12 = (const lean_object*)&l_Lake_Workspace_augmentedEnvVars___closed__12_value; lean_object* l_Lake_Env_baseVars(lean_object*); lean_object* l_System_SearchPath_toString(lean_object*); extern lean_object* l_Lake_sharedLibPathEnvVar; @@ -624,6 +636,37 @@ x_5 = l_Lake_joinRelative(x_3, x_4); return x_5; } } +LEAN_EXPORT lean_object* l_Lake_Workspace_enableArtifactCache_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_ctor_get(x_1, 1); +x_3 = lean_ctor_get(x_2, 6); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_4, 6); +x_6 = lean_ctor_get(x_5, 25); +lean_inc(x_6); +return x_6; +} +else +{ +lean_inc_ref(x_3); +return x_3; +} +} +} +LEAN_EXPORT lean_object* l_Lake_Workspace_enableArtifactCache_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lake_Workspace_enableArtifactCache_x3f(x_1); +lean_dec_ref(x_1); +return x_2; +} +} LEAN_EXPORT uint8_t l_Lake_Workspace_enableArtifactCache(lean_object* x_1) { _start: { @@ -669,18 +712,18 @@ x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT uint8_t l_Lake_Workspace_isRootArtifactCacheEnabled(lean_object* x_1) { +LEAN_EXPORT uint8_t l_Lake_Workspace_isRootArtifactCacheWritable(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = lean_ctor_get(x_1, 0); +lean_object* x_2; lean_object* x_3; +x_2 = lean_ctor_get(x_1, 1); x_3 = lean_ctor_get(x_2, 6); -x_4 = lean_ctor_get(x_3, 25); -if (lean_obj_tag(x_4) == 0) +if (lean_obj_tag(x_3) == 0) { -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_1, 1); -x_6 = lean_ctor_get(x_5, 6); +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_4, 6); +x_6 = lean_ctor_get(x_5, 25); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; @@ -698,12 +741,30 @@ return x_9; else { lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_4, 0); +x_10 = lean_ctor_get(x_3, 0); x_11 = lean_unbox(x_10); return x_11; } } } +LEAN_EXPORT lean_object* l_Lake_Workspace_isRootArtifactCacheWritable___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lake_Workspace_isRootArtifactCacheWritable(x_1); +lean_dec_ref(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lake_Workspace_isRootArtifactCacheEnabled(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Lake_Workspace_isRootArtifactCacheWritable(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lake_Workspace_isRootArtifactCacheEnabled___boxed(lean_object* x_1) { _start: { @@ -4284,89 +4345,102 @@ return x_2; LEAN_EXPORT lean_object* l_Lake_Workspace_augmentedEnvVars(lean_object* x_1) { _start: { -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; lean_object* x_36; lean_object* x_37; uint8_t x_57; -x_2 = lean_ctor_get(x_1, 0); -x_3 = lean_ctor_get(x_1, 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; lean_object* x_14; lean_object* x_37; lean_object* x_38; uint8_t x_57; +x_2 = lean_ctor_get(x_1, 1); +x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_3); -x_5 = l_Lake_Env_baseVars(x_3); -x_6 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__0)); +x_5 = lean_ctor_get(x_2, 6); +lean_inc_ref(x_2); +x_6 = l_Lake_Env_baseVars(x_2); +x_7 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__0)); lean_inc_ref(x_4); -x_7 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_7, 0, x_4); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_6); -lean_ctor_set(x_8, 1, x_7); -x_36 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__3)); -x_57 = l_Lake_Workspace_enableArtifactCache(x_1); -if (x_57 == 0) +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_4); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_7); +lean_ctor_set(x_9, 1, x_8); +x_37 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__3)); +if (lean_obj_tag(x_5) == 0) { -lean_object* x_58; -x_58 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__7)); -x_37 = x_58; -goto block_56; +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_3, 6); +x_62 = lean_ctor_get(x_61, 25); +if (lean_obj_tag(x_62) == 1) +{ +lean_object* x_63; uint8_t x_64; +x_63 = lean_ctor_get(x_62, 0); +x_64 = lean_unbox(x_63); +x_57 = x_64; +goto block_60; } else { -lean_object* x_59; -x_59 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__8)); -x_37 = x_59; +lean_object* x_65; +x_65 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__12)); +x_38 = x_65; goto block_56; } -block_35: +} +else { -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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set(x_14, 1, x_13); -x_15 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__1)); -x_16 = l_Lake_Workspace_augmentedPath(x_1); -x_17 = l_System_SearchPath_toString(x_16); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_17); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_15); -lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lake_Workspace_augmentedEnvVars___closed__2; -x_21 = lean_array_push(x_20, x_8); +lean_object* x_66; uint8_t x_67; +x_66 = lean_ctor_get(x_5, 0); +x_67 = lean_unbox(x_66); +x_57 = x_67; +goto block_60; +} +block_36: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; uint8_t x_29; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__1)); +x_17 = l_Lake_Workspace_augmentedPath(x_1); +x_18 = l_System_SearchPath_toString(x_17); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_16); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lake_Workspace_augmentedEnvVars___closed__2; x_22 = lean_array_push(x_21, x_9); -x_23 = lean_array_push(x_22, x_11); -x_24 = lean_array_push(x_23, x_10); -x_25 = lean_array_push(x_24, x_14); -x_26 = lean_array_push(x_25, x_19); -x_27 = l_Array_append___redArg(x_5, x_26); -lean_dec_ref(x_26); -x_28 = l_System_Platform_isWindows; -if (x_28 == 0) +x_23 = lean_array_push(x_22, x_10); +x_24 = lean_array_push(x_23, x_11); +x_25 = lean_array_push(x_24, x_12); +x_26 = lean_array_push(x_25, x_15); +x_27 = lean_array_push(x_26, x_20); +x_28 = l_Array_append___redArg(x_6, x_27); +lean_dec_ref(x_27); +x_29 = l_System_Platform_isWindows; +if (x_29 == 0) { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_29 = l_Lake_sharedLibPathEnvVar; -x_30 = l_Lake_Workspace_augmentedSharedLibPath(x_1); -x_31 = l_System_SearchPath_toString(x_30); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_29); -lean_ctor_set(x_33, 1, x_32); -x_34 = lean_array_push(x_27, x_33); -return x_34; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_30 = l_Lake_sharedLibPathEnvVar; +x_31 = l_Lake_Workspace_augmentedSharedLibPath(x_1); +x_32 = l_System_SearchPath_toString(x_31); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_30); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_array_push(x_28, x_34); +return x_35; } else { lean_dec_ref(x_1); -return x_27; +return x_28; } } block_56: { -lean_object* x_38; uint8_t x_39; 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_38 = lean_ctor_get(x_2, 6); -x_39 = lean_ctor_get_uint8(x_38, sizeof(void*)*26); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_37); +lean_object* x_39; uint8_t 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_39 = lean_ctor_get(x_3, 6); +x_40 = lean_ctor_get_uint8(x_39, sizeof(void*)*26); x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_36); -lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_41, 0, x_37); +lean_ctor_set(x_41, 1, x_38); x_42 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__4)); x_43 = l_Lake_Workspace_augmentedLeanPath(x_1); x_44 = l_System_SearchPath_toString(x_43); @@ -4384,29 +4458,46 @@ x_51 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_51, 0, x_47); lean_ctor_set(x_51, 1, x_50); x_52 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__6)); -if (x_39 == 0) +if (x_40 == 0) { lean_object* x_53; lean_object* x_54; -x_53 = l_Lake_Env_leanGithash(x_3); +x_53 = l_Lake_Env_leanGithash(x_2); x_54 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_54, 0, x_53); -x_9 = x_41; -x_10 = x_51; +x_10 = x_41; x_11 = x_46; -x_12 = x_52; -x_13 = x_54; -goto block_35; +x_12 = x_51; +x_13 = x_52; +x_14 = x_54; +goto block_36; } else { lean_object* x_55; x_55 = lean_box(0); -x_9 = x_41; -x_10 = x_51; +x_10 = x_41; x_11 = x_46; -x_12 = x_52; -x_13 = x_55; -goto block_35; +x_12 = x_51; +x_13 = x_52; +x_14 = x_55; +goto block_36; +} +} +block_60: +{ +if (x_57 == 0) +{ +lean_object* x_58; +x_58 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__8)); +x_38 = x_58; +goto block_56; +} +else +{ +lean_object* x_59; +x_59 = ((lean_object*)(l_Lake_Workspace_augmentedEnvVars___closed__10)); +x_38 = x_59; +goto block_56; } } } diff --git a/stage0/stdlib/Lean/Compiler/CSimpAttr.c b/stage0/stdlib/Lean/Compiler/CSimpAttr.c index b3e4b77cc9..b0a9482658 100644 --- a/stage0/stdlib/Lean/Compiler/CSimpAttr.c +++ b/stage0/stdlib/Lean/Compiler/CSimpAttr.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.CSimpAttr -// Imports: public import Lean.ScopedEnvExtension public import Lean.Util.Recognizers +// Imports: public import Lean.ScopedEnvExtension public import Lean.Util.Recognizers import Lean.ExtraModUses #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -30,95 +30,95 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_instInhabitedState; LEAN_EXPORT lean_object* l_Lean_SMap_switch___at___00Lean_Compiler_CSimp_State_switch_spec__0___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_switch___at___00Lean_Compiler_CSimp_State_switch_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_State_switch(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2____boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2____boxed(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -uint64_t l_Lean_Name_hash___override(lean_object*); -uint64_t lean_uint64_shift_right(uint64_t, uint64_t); -uint64_t lean_uint64_xor(uint64_t, uint64_t); -size_t lean_uint64_to_usize(uint64_t); -size_t lean_usize_of_nat(lean_object*); -size_t lean_usize_sub(size_t, size_t); -size_t lean_usize_land(size_t, size_t); -lean_object* lean_array_uget(lean_object*, size_t); -lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(lean_object*, lean_object*, lean_object*); -lean_object* lean_nat_mul(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(lean_object*); -uint8_t lean_name_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*); -lean_object* lean_nat_div(lean_object*, lean_object*); -uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); -static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0; -static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0; +size_t lean_usize_sub(size_t, size_t); +static size_t l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; +static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; +size_t lean_usize_land(size_t, size_t); lean_object* lean_usize_to_nat(size_t); +lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); +uint64_t l_Lean_Name_hash___override(lean_object*); +size_t lean_uint64_to_usize(uint64_t); size_t lean_usize_mul(size_t, size_t); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(lean_object*, lean_object*); -static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2____boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_State_switch, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Compiler"}; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "CSimp"}; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*); +uint64_t lean_uint64_shift_right(uint64_t, uint64_t); +uint64_t lean_uint64_xor(uint64_t, uint64_t); +size_t lean_usize_of_nat(lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_mul(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(lean_object*); +lean_object* lean_nat_div(lean_object*, lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(lean_object*, lean_object*); +static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2____boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_State_switch, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_closure_object l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Compiler"}; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "CSimp"}; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static const lean_string_object l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_0),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(68, 195, 72, 11, 109, 136, 143, 118)}}; -static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_1),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(69, 146, 29, 165, 13, 135, 199, 34)}}; -static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value_aux_2),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(15, 0, 181, 243, 91, 78, 195, 231)}}; -static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value; -static lean_object* l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_; +static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_0),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(68, 195, 72, 11, 109, 136, 143, 118)}}; +static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_1),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(69, 146, 29, 165, 13, 135, 199, 34)}}; +static const lean_ctor_object l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value_aux_2),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__6_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(15, 0, 181, 243, 91, 78, 195, 231)}}; +static const lean_object* l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value; +static lean_object* l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_; lean_object* l_Lean_registerSimpleScopedEnvExtension___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2____boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2____boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_ext; static const lean_ctor_object l___private_Std_Data_DHashMap_Internal_AssocList_Basic_0__Std_DHashMap_Internal_AssocList_forInStep_go___at___00__private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_isConstantReplacement_x3f_spec__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l___private_Std_Data_DHashMap_Internal_AssocList_Basic_0__Std_DHashMap_Internal_AssocList_forInStep_go___at___00__private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_isConstantReplacement_x3f_spec__3___closed__0 = (const lean_object*)&l___private_Std_Data_DHashMap_Internal_AssocList_Basic_0__Std_DHashMap_Internal_AssocList_forInStep_go___at___00__private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_isConstantReplacement_x3f_spec__3___closed__0_value; @@ -277,9 +277,9 @@ static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_C lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 214, 75, 80, 34, 198, 193, 153)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__1 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__1_value; -static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__1_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(90, 18, 126, 130, 18, 214, 172, 143)}}; +static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__1_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(90, 18, 126, 130, 18, 214, 172, 143)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2_value; -static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(72, 245, 227, 28, 172, 102, 215, 20)}}; +static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__2_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(72, 245, 227, 28, 172, 102, 215, 20)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__3 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__3_value; static const lean_string_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "CSimpAttr"}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__4 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__4_value; @@ -288,11 +288,11 @@ static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_C lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 2}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__5_value),((lean_object*)(((size_t)(0) << 1) | 1)),LEAN_SCALAR_PTR_LITERAL(70, 245, 250, 105, 48, 70, 45, 165)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__6 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__6_value; -static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__6_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(79, 212, 192, 31, 243, 145, 95, 171)}}; +static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__6_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__3_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(79, 212, 192, 31, 243, 145, 95, 171)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7_value; -static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(129, 96, 120, 91, 76, 218, 26, 122)}}; +static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__7_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__4_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(129, 96, 120, 91, 76, 218, 26, 122)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8_value; -static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(68, 148, 192, 209, 179, 49, 208, 93)}}; +static const lean_ctor_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__8_value),((lean_object*)&l_Lean_Compiler_CSimp_initFn___closed__5_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(68, 148, 192, 209, 179, 49, 208, 93)}}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__9 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__9_value; static const lean_string_object l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "initFn"}; static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__10 = (const lean_object*)&l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___closed__10_value; @@ -320,40 +320,133 @@ static const lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_C lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___regBuiltin___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn_docString__1(); LEAN_EXPORT lean_object* l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___regBuiltin___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn_docString__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg___boxed(lean_object*, lean_object*); -uint8_t l_Lean_Expr_isConst(lean_object*); -lean_object* l_Lean_Expr_constName_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*); +uint8_t l_Lean_instBEqExtraModUse_beq(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*); +uint64_t l_Lean_instHashableExtraModUse_hash(lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg___boxed(lean_object*, lean_object*); +double lean_float_of_nat(lean_object*); +static double l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0; +static const lean_string_object l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 1, .m_capacity = 1, .m_length = 0, .m_data = ""}; +static const lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1 = (const lean_object*)&l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1_value; +static lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2; +lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "trace"}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__0 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__0_value; +static const lean_ctor_object l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__0_value),LEAN_SCALAR_PTR_LITERAL(212, 145, 141, 177, 67, 149, 127, 197)}}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__1 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__1_value; +lean_object* l_Lean_Name_append(lean_object*, lean_object*); +uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instBEqExtraModUse_beq___boxed(lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_instBEqExtraModUse_beq___boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__0 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__0_value; +lean_object* l_Lean_instHashableExtraModUse_hash___boxed(lean_object*); +static const lean_closure_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_instHashableExtraModUse_hash___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__1 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__1_value; +lean_object* l_Lean_PersistentHashMap_empty(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "extraModUses"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__3 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__3_value; +static const lean_ctor_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__3_value),LEAN_SCALAR_PTR_LITERAL(27, 95, 70, 98, 97, 66, 56, 109)}}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__4 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__4_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = " extra mod use "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__5 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__5_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = " of "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__7 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__7_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "recording "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__10 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__10_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = " "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__12 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__12_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "regular"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__14 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__14_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "meta"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__15 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__15_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "private"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__16 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__16_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "public"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__17 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__17_value; +extern lean_object* l___private_Lean_ExtraModUses_0__Lean_extraModUses; +lean_object* l_Lean_PersistentEnvExtension_addEntry___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SimplePersistentEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedEffectiveImport_default; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_beq___boxed(lean_object*, lean_object*); +static const lean_closure_object l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Name_beq___boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__0 = (const lean_object*)&l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__0_value; +lean_object* l_Lean_Name_hash___override___boxed(lean_object*); +static const lean_closure_object l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Name_hash___override___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__1 = (const lean_object*)&l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__1_value; +lean_object* l_Std_HashMap_instInhabited(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2; +static lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3; +extern lean_object* l_Lean_indirectModUseExt; +uint8_t l_Lean_isMarkedMeta(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_constLevels_x21(lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___lam__0(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___lam__0___boxed(lean_object*, lean_object*); -lean_object* l_Lean_ScopedEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_replace_expr(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_SMap_contains___at___00Lean_Compiler_hasCSimpAttribute_spec__0_spec__1_spec__2_spec__3___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_SMap_contains___at___00Lean_Compiler_hasCSimpAttribute_spec__0_spec__1_spec__2_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_SMap_contains___at___00Lean_Compiler_hasCSimpAttribute_spec__0_spec__1_spec__2___redArg(lean_object*, size_t, lean_object*); @@ -536,7 +629,7 @@ return x_11; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(uint8_t x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -545,386 +638,16 @@ lean_ctor_set(x_3, 0, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); -x_4 = l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(x_3, x_2); +x_4 = l_Lean_Compiler_CSimp_initFn___lam__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(x_3, x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; size_t x_18; lean_object* x_19; lean_object* x_20; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 2); -x_6 = lean_array_get_size(x_1); -x_7 = l_Lean_Name_hash___override(x_4); -x_8 = 32; -x_9 = lean_uint64_shift_right(x_7, x_8); -x_10 = lean_uint64_xor(x_7, x_9); -x_11 = 16; -x_12 = lean_uint64_shift_right(x_10, x_11); -x_13 = lean_uint64_xor(x_10, x_12); -x_14 = lean_uint64_to_usize(x_13); -x_15 = lean_usize_of_nat(x_6); -x_16 = 1; -x_17 = lean_usize_sub(x_15, x_16); -x_18 = lean_usize_land(x_14, x_17); -x_19 = lean_array_uget(x_1, x_18); -lean_ctor_set(x_2, 2, x_19); -x_20 = lean_array_uset(x_1, x_18, x_2); -x_1 = x_20; -x_2 = x_5; -goto _start; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint64_t x_26; uint64_t x_27; uint64_t x_28; uint64_t x_29; uint64_t x_30; uint64_t x_31; uint64_t x_32; size_t x_33; size_t x_34; size_t x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_22 = lean_ctor_get(x_2, 0); -x_23 = lean_ctor_get(x_2, 1); -x_24 = lean_ctor_get(x_2, 2); -lean_inc(x_24); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_2); -x_25 = lean_array_get_size(x_1); -x_26 = l_Lean_Name_hash___override(x_22); -x_27 = 32; -x_28 = lean_uint64_shift_right(x_26, x_27); -x_29 = lean_uint64_xor(x_26, x_28); -x_30 = 16; -x_31 = lean_uint64_shift_right(x_29, x_30); -x_32 = lean_uint64_xor(x_29, x_31); -x_33 = lean_uint64_to_usize(x_32); -x_34 = lean_usize_of_nat(x_25); -x_35 = 1; -x_36 = lean_usize_sub(x_34, x_35); -x_37 = lean_usize_land(x_33, x_36); -x_38 = lean_array_uget(x_1, x_37); -x_39 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_39, 0, x_22); -lean_ctor_set(x_39, 1, x_23); -lean_ctor_set(x_39, 2, x_38); -x_40 = lean_array_uset(x_1, x_37, x_39); -x_1 = x_40; -x_2 = x_24; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = lean_array_get_size(x_2); -x_5 = lean_nat_dec_lt(x_1, x_4); -if (x_5 == 0) -{ -lean_dec_ref(x_2); -lean_dec(x_1); -return x_3; -} -else -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_array_fget(x_2, x_1); -x_7 = lean_box(0); -x_8 = lean_array_fset(x_2, x_1, x_7); -x_9 = l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(x_3, x_6); -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_add(x_1, x_10); -lean_dec(x_1); -x_1 = x_11; -x_2 = x_8; -x_3 = x_9; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(lean_object* x_1) { -_start: -{ -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; -x_2 = lean_array_get_size(x_1); -x_3 = lean_unsigned_to_nat(2u); -x_4 = lean_nat_mul(x_2, x_3); -x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_box(0); -x_7 = lean_mk_array(x_4, x_6); -x_8 = l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(x_5, x_1, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -else -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_ctor_get(x_3, 1); -x_7 = lean_ctor_get(x_3, 2); -x_8 = lean_name_eq(x_5, x_1); -if (x_8 == 0) -{ -lean_object* x_9; -x_9 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_1, x_2, x_7); -lean_ctor_set(x_3, 2, x_9); -return x_3; -} -else -{ -lean_dec(x_6); -lean_dec(x_5); -lean_ctor_set(x_3, 1, x_2); -lean_ctor_set(x_3, 0, x_1); -return x_3; -} -} -else -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = lean_ctor_get(x_3, 0); -x_11 = lean_ctor_get(x_3, 1); -x_12 = lean_ctor_get(x_3, 2); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_dec(x_3); -x_13 = lean_name_eq(x_10, x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_1, x_2, x_12); -x_15 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_15, 0, x_10); -lean_ctor_set(x_15, 1, x_11); -lean_ctor_set(x_15, 2, x_14); -return x_15; -} -else -{ -lean_object* x_16; -lean_dec(x_11); -lean_dec(x_10); -x_16 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_2); -lean_ctor_set(x_16, 2, x_12); -return x_16; -} -} -} -} -} -LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = 0; -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 2); -x_6 = lean_name_eq(x_4, x_1); -if (x_6 == 0) -{ -x_2 = x_5; -goto _start; -} -else -{ -return x_6; -} -} -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; uint64_t x_14; size_t x_15; size_t x_16; size_t x_17; size_t x_18; size_t x_19; lean_object* x_20; uint8_t x_21; -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_ctor_get(x_1, 1); -x_7 = lean_array_get_size(x_6); -x_8 = l_Lean_Name_hash___override(x_2); -x_9 = 32; -x_10 = lean_uint64_shift_right(x_8, x_9); -x_11 = lean_uint64_xor(x_8, x_10); -x_12 = 16; -x_13 = lean_uint64_shift_right(x_11, x_12); -x_14 = lean_uint64_xor(x_11, x_13); -x_15 = lean_uint64_to_usize(x_14); -x_16 = lean_usize_of_nat(x_7); -x_17 = 1; -x_18 = lean_usize_sub(x_16, x_17); -x_19 = lean_usize_land(x_15, x_18); -x_20 = lean_array_uget(x_6, x_19); -x_21 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_20); -if (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; lean_object* x_30; uint8_t x_31; -x_22 = lean_unsigned_to_nat(1u); -x_23 = lean_nat_add(x_5, x_22); -lean_dec(x_5); -x_24 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_24, 0, x_2); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set(x_24, 2, x_20); -x_25 = lean_array_uset(x_6, x_19, x_24); -x_26 = lean_unsigned_to_nat(4u); -x_27 = lean_nat_mul(x_23, x_26); -x_28 = lean_unsigned_to_nat(3u); -x_29 = lean_nat_div(x_27, x_28); -lean_dec(x_27); -x_30 = lean_array_get_size(x_25); -x_31 = lean_nat_dec_le(x_29, x_30); -lean_dec(x_29); -if (x_31 == 0) -{ -lean_object* x_32; -x_32 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_25); -lean_ctor_set(x_1, 1, x_32); -lean_ctor_set(x_1, 0, x_23); -return x_1; -} -else -{ -lean_ctor_set(x_1, 1, x_25); -lean_ctor_set(x_1, 0, x_23); -return x_1; -} -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = lean_box(0); -x_34 = lean_array_uset(x_6, x_19, x_33); -x_35 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_20); -x_36 = lean_array_uset(x_34, x_19, x_35); -lean_ctor_set(x_1, 1, x_36); -return x_1; -} -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; uint64_t x_46; size_t x_47; size_t x_48; size_t x_49; size_t x_50; size_t x_51; lean_object* x_52; uint8_t x_53; -x_37 = lean_ctor_get(x_1, 0); -x_38 = lean_ctor_get(x_1, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_1); -x_39 = lean_array_get_size(x_38); -x_40 = l_Lean_Name_hash___override(x_2); -x_41 = 32; -x_42 = lean_uint64_shift_right(x_40, x_41); -x_43 = lean_uint64_xor(x_40, x_42); -x_44 = 16; -x_45 = lean_uint64_shift_right(x_43, x_44); -x_46 = lean_uint64_xor(x_43, x_45); -x_47 = lean_uint64_to_usize(x_46); -x_48 = lean_usize_of_nat(x_39); -x_49 = 1; -x_50 = lean_usize_sub(x_48, x_49); -x_51 = lean_usize_land(x_47, x_50); -x_52 = lean_array_uget(x_38, x_51); -x_53 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_52); -if (x_53 == 0) -{ -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; uint8_t x_63; -x_54 = lean_unsigned_to_nat(1u); -x_55 = lean_nat_add(x_37, x_54); -lean_dec(x_37); -x_56 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_56, 0, x_2); -lean_ctor_set(x_56, 1, x_3); -lean_ctor_set(x_56, 2, x_52); -x_57 = lean_array_uset(x_38, x_51, x_56); -x_58 = lean_unsigned_to_nat(4u); -x_59 = lean_nat_mul(x_55, x_58); -x_60 = lean_unsigned_to_nat(3u); -x_61 = lean_nat_div(x_59, x_60); -lean_dec(x_59); -x_62 = lean_array_get_size(x_57); -x_63 = lean_nat_dec_le(x_61, x_62); -lean_dec(x_61); -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; -x_64 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_57); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_55); -lean_ctor_set(x_65, 1, x_64); -return x_65; -} -else -{ -lean_object* x_66; -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_55); -lean_ctor_set(x_66, 1, x_57); -return x_66; -} -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_67 = lean_box(0); -x_68 = lean_array_uset(x_38, x_51, x_67); -x_69 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_52); -x_70 = lean_array_uset(x_68, x_51, x_69); -x_71 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_71, 0, x_37); -lean_ctor_set(x_71, 1, x_70); -return x_71; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -1026,16 +749,16 @@ return x_34; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(x_1, x_4, x_2, x_3); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(x_1, x_4, x_2, x_3); return x_5; } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0() { _start: { size_t x_1; size_t x_2; size_t x_3; @@ -1045,17 +768,17 @@ x_3 = lean_usize_shift_left(x_2, x_1); return x_3; } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1() { _start: { size_t x_1; size_t x_2; size_t x_3; x_1 = 1; -x_2 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0; +x_2 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0; x_3 = lean_usize_sub(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2() { +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2() { _start: { lean_object* x_1; @@ -1063,7 +786,7 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1072,7 +795,7 @@ lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_6 = lean_ctor_get(x_1, 0); x_7 = 5; x_8 = 1; -x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; x_10 = lean_usize_land(x_2, x_9); x_11 = lean_usize_to_nat(x_10); x_12 = lean_array_get_size(x_6); @@ -1170,7 +893,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; x_35 = lean_ctor_get(x_15, 0); x_36 = lean_usize_shift_right(x_2, x_7); x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_35, x_36, x_37, x_4, x_5); +x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_35, x_36, x_37, x_4, x_5); lean_ctor_set(x_15, 0, x_38); x_18 = x_15; goto block_21; @@ -1183,7 +906,7 @@ lean_inc(x_39); lean_dec(x_15); x_40 = lean_usize_shift_right(x_2, x_7); x_41 = lean_usize_add(x_3, x_8); -x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_39, x_40, x_41, x_4, x_5); +x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_39, x_40, x_41, x_4, x_5); x_43 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_43, 0, x_42); x_18 = x_43; @@ -1222,7 +945,7 @@ x_45 = !lean_is_exclusive(x_1); if (x_45 == 0) { lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; -x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_1, x_4, x_5); +x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_1, x_4, x_5); x_54 = 7; x_55 = lean_usize_dec_le(x_54, x_3); if (x_55 == 0) @@ -1251,8 +974,8 @@ x_49 = lean_ctor_get(x_46, 1); lean_inc_ref(x_49); lean_dec_ref(x_46); x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; -x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_3, x_48, x_49, x_50, x_51); +x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; +x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_3, x_48, x_49, x_50, x_51); lean_dec_ref(x_49); lean_dec_ref(x_48); return x_52; @@ -1274,7 +997,7 @@ lean_dec(x_1); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_61, x_4, x_5); +x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_61, x_4, x_5); x_70 = 7; x_71 = lean_usize_dec_le(x_70, x_3); if (x_71 == 0) @@ -1303,8 +1026,8 @@ x_65 = lean_ctor_get(x_62, 1); lean_inc_ref(x_65); lean_dec_ref(x_62); x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; -x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_3, x_64, x_65, x_66, x_67); +x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2; +x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_3, x_64, x_65, x_66, x_67); lean_dec_ref(x_65); lean_dec_ref(x_64); return x_68; @@ -1318,7 +1041,7 @@ return x_62; } } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -1346,26 +1069,26 @@ x_18 = lean_nat_add(x_4, x_13); lean_dec(x_4); lean_inc(x_9); lean_inc(x_8); -x_19 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_5, x_17, x_1, x_8, x_9); +x_19 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_5, x_17, x_1, x_8, x_9); x_4 = x_18; x_5 = x_19; goto _start; } } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; lean_object* x_7; x_6 = lean_unbox_usize(x_1); lean_dec(x_1); -x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_6, x_2, x_3, x_4, x_5); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -1373,22 +1096,392 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_1, x_6, x_7, x_4, x_5); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; x_4 = l_Lean_Name_hash___override(x_2); x_5 = lean_uint64_to_usize(x_4); x_6 = 1; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_1, x_5, x_6, x_2, x_3); +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_1, x_5, x_6, x_2, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_3); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_ctor_get(x_3, 0); +x_6 = lean_ctor_get(x_3, 1); +x_7 = lean_ctor_get(x_3, 2); +x_8 = lean_name_eq(x_5, x_1); +if (x_8 == 0) +{ +lean_object* x_9; +x_9 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_1, x_2, x_7); +lean_ctor_set(x_3, 2, x_9); +return x_3; +} +else +{ +lean_dec(x_6); +lean_dec(x_5); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 0, x_1); +return x_3; +} +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_3, 0); +x_11 = lean_ctor_get(x_3, 1); +x_12 = lean_ctor_get(x_3, 2); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_dec(x_3); +x_13 = lean_name_eq(x_10, x_1); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_1, x_2, x_12); +x_15 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_15, 0, x_10); +lean_ctor_set(x_15, 1, x_11); +lean_ctor_set(x_15, 2, x_14); +return x_15; +} +else +{ +lean_object* x_16; +lean_dec(x_11); +lean_dec(x_10); +x_16 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_16, 0, x_1); +lean_ctor_set(x_16, 1, x_2); +lean_ctor_set(x_16, 2, x_12); +return x_16; +} +} +} +} +} +LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_name_eq(x_4, x_1); +if (x_6 == 0) +{ +x_2 = x_5; +goto _start; +} +else +{ +return x_6; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_2); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; size_t x_18; lean_object* x_19; lean_object* x_20; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 2); +x_6 = lean_array_get_size(x_1); +x_7 = l_Lean_Name_hash___override(x_4); +x_8 = 32; +x_9 = lean_uint64_shift_right(x_7, x_8); +x_10 = lean_uint64_xor(x_7, x_9); +x_11 = 16; +x_12 = lean_uint64_shift_right(x_10, x_11); +x_13 = lean_uint64_xor(x_10, x_12); +x_14 = lean_uint64_to_usize(x_13); +x_15 = lean_usize_of_nat(x_6); +x_16 = 1; +x_17 = lean_usize_sub(x_15, x_16); +x_18 = lean_usize_land(x_14, x_17); +x_19 = lean_array_uget(x_1, x_18); +lean_ctor_set(x_2, 2, x_19); +x_20 = lean_array_uset(x_1, x_18, x_2); +x_1 = x_20; +x_2 = x_5; +goto _start; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint64_t x_26; uint64_t x_27; uint64_t x_28; uint64_t x_29; uint64_t x_30; uint64_t x_31; uint64_t x_32; size_t x_33; size_t x_34; size_t x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_22 = lean_ctor_get(x_2, 0); +x_23 = lean_ctor_get(x_2, 1); +x_24 = lean_ctor_get(x_2, 2); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_2); +x_25 = lean_array_get_size(x_1); +x_26 = l_Lean_Name_hash___override(x_22); +x_27 = 32; +x_28 = lean_uint64_shift_right(x_26, x_27); +x_29 = lean_uint64_xor(x_26, x_28); +x_30 = 16; +x_31 = lean_uint64_shift_right(x_29, x_30); +x_32 = lean_uint64_xor(x_29, x_31); +x_33 = lean_uint64_to_usize(x_32); +x_34 = lean_usize_of_nat(x_25); +x_35 = 1; +x_36 = lean_usize_sub(x_34, x_35); +x_37 = lean_usize_land(x_33, x_36); +x_38 = lean_array_uget(x_1, x_37); +x_39 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_39, 0, x_22); +lean_ctor_set(x_39, 1, x_23); +lean_ctor_set(x_39, 2, x_38); +x_40 = lean_array_uset(x_1, x_37, x_39); +x_1 = x_40; +x_2 = x_24; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_2); +x_5 = lean_nat_dec_lt(x_1, x_4); +if (x_5 == 0) +{ +lean_dec_ref(x_2); +lean_dec(x_1); +return x_3; +} +else +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_fget(x_2, x_1); +x_7 = lean_box(0); +x_8 = lean_array_fset(x_2, x_1, x_7); +x_9 = l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_1, x_10); +lean_dec(x_1); +x_1 = x_11; +x_2 = x_8; +x_3 = x_9; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(lean_object* x_1) { +_start: +{ +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; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(2u); +x_4 = lean_nat_mul(x_2, x_3); +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_box(0); +x_7 = lean_mk_array(x_4, x_6); +x_8 = l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(x_5, x_1, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; uint64_t x_12; uint64_t x_13; uint64_t x_14; size_t x_15; size_t x_16; size_t x_17; size_t x_18; size_t x_19; lean_object* x_20; uint8_t x_21; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_array_get_size(x_6); +x_8 = l_Lean_Name_hash___override(x_2); +x_9 = 32; +x_10 = lean_uint64_shift_right(x_8, x_9); +x_11 = lean_uint64_xor(x_8, x_10); +x_12 = 16; +x_13 = lean_uint64_shift_right(x_11, x_12); +x_14 = lean_uint64_xor(x_11, x_13); +x_15 = lean_uint64_to_usize(x_14); +x_16 = lean_usize_of_nat(x_7); +x_17 = 1; +x_18 = lean_usize_sub(x_16, x_17); +x_19 = lean_usize_land(x_15, x_18); +x_20 = lean_array_uget(x_6, x_19); +x_21 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_20); +if (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; lean_object* x_30; uint8_t x_31; +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_5, x_22); +lean_dec(x_5); +x_24 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_24, 0, x_2); +lean_ctor_set(x_24, 1, x_3); +lean_ctor_set(x_24, 2, x_20); +x_25 = lean_array_uset(x_6, x_19, x_24); +x_26 = lean_unsigned_to_nat(4u); +x_27 = lean_nat_mul(x_23, x_26); +x_28 = lean_unsigned_to_nat(3u); +x_29 = lean_nat_div(x_27, x_28); +lean_dec(x_27); +x_30 = lean_array_get_size(x_25); +x_31 = lean_nat_dec_le(x_29, x_30); +lean_dec(x_29); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_25); +lean_ctor_set(x_1, 1, x_32); +lean_ctor_set(x_1, 0, x_23); +return x_1; +} +else +{ +lean_ctor_set(x_1, 1, x_25); +lean_ctor_set(x_1, 0, x_23); +return x_1; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_box(0); +x_34 = lean_array_uset(x_6, x_19, x_33); +x_35 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_20); +x_36 = lean_array_uset(x_34, x_19, x_35); +lean_ctor_set(x_1, 1, x_36); +return x_1; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; uint64_t x_40; uint64_t x_41; uint64_t x_42; uint64_t x_43; uint64_t x_44; uint64_t x_45; uint64_t x_46; size_t x_47; size_t x_48; size_t x_49; size_t x_50; size_t x_51; lean_object* x_52; uint8_t x_53; +x_37 = lean_ctor_get(x_1, 0); +x_38 = lean_ctor_get(x_1, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_1); +x_39 = lean_array_get_size(x_38); +x_40 = l_Lean_Name_hash___override(x_2); +x_41 = 32; +x_42 = lean_uint64_shift_right(x_40, x_41); +x_43 = lean_uint64_xor(x_40, x_42); +x_44 = 16; +x_45 = lean_uint64_shift_right(x_43, x_44); +x_46 = lean_uint64_xor(x_43, x_45); +x_47 = lean_uint64_to_usize(x_46); +x_48 = lean_usize_of_nat(x_39); +x_49 = 1; +x_50 = lean_usize_sub(x_48, x_49); +x_51 = lean_usize_land(x_47, x_50); +x_52 = lean_array_uget(x_38, x_51); +x_53 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_52); +if (x_53 == 0) +{ +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; uint8_t x_63; +x_54 = lean_unsigned_to_nat(1u); +x_55 = lean_nat_add(x_37, x_54); +lean_dec(x_37); +x_56 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_56, 0, x_2); +lean_ctor_set(x_56, 1, x_3); +lean_ctor_set(x_56, 2, x_52); +x_57 = lean_array_uset(x_38, x_51, x_56); +x_58 = lean_unsigned_to_nat(4u); +x_59 = lean_nat_mul(x_55, x_58); +x_60 = lean_unsigned_to_nat(3u); +x_61 = lean_nat_div(x_59, x_60); +lean_dec(x_59); +x_62 = lean_array_get_size(x_57); +x_63 = lean_nat_dec_le(x_61, x_62); +lean_dec(x_61); +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; +x_64 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_57); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_55); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +else +{ +lean_object* x_66; +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_55); +lean_ctor_set(x_66, 1, x_57); +return x_66; +} +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_67 = lean_box(0); +x_68 = lean_array_uset(x_38, x_51, x_67); +x_69 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_52); +x_70 = lean_array_uset(x_68, x_51, x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_37); +lean_ctor_set(x_71, 1, x_70); +return x_71; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -1401,7 +1494,7 @@ if (x_5 == 0) { lean_object* x_6; lean_object* x_7; x_6 = lean_ctor_get(x_1, 1); -x_7 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0___redArg(x_6, x_2, x_3); +x_7 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0___redArg(x_6, x_2, x_3); lean_ctor_set(x_1, 1, x_7); return x_1; } @@ -1413,7 +1506,7 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0___redArg(x_9, x_2, x_3); +x_10 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0___redArg(x_9, x_2, x_3); x_11 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_11, 0, x_8); lean_ctor_set(x_11, 1, x_10); @@ -1429,7 +1522,7 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_1, 0); -x_14 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1___redArg(x_13, x_2, x_3); +x_14 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1___redArg(x_13, x_2, x_3); lean_ctor_set(x_1, 0, x_14); return x_1; } @@ -1441,7 +1534,7 @@ x_16 = lean_ctor_get(x_1, 1); lean_inc(x_16); lean_inc(x_15); lean_dec(x_1); -x_17 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1___redArg(x_15, x_2, x_3); +x_17 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1___redArg(x_15, x_2, x_3); x_18 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); @@ -1451,64 +1544,58 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn___lam__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; x_3 = !lean_is_exclusive(x_1); if (x_3 == 0) { -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_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; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_2, 0); lean_inc(x_6); -x_7 = lean_ctor_get(x_2, 1); +x_7 = lean_ctor_get(x_2, 2); lean_inc(x_7); -x_8 = lean_ctor_get(x_2, 2); -lean_inc(x_8); -lean_dec_ref(x_2); -x_9 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(x_4, x_6, x_7); -x_10 = lean_box(0); -x_11 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(x_5, x_8, x_10); -lean_ctor_set(x_1, 1, x_11); -lean_ctor_set(x_1, 0, x_9); +x_8 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(x_4, x_6, x_2); +x_9 = lean_box(0); +x_10 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(x_5, x_7, x_9); +lean_ctor_set(x_1, 1, x_10); +lean_ctor_set(x_1, 0, x_8); return x_1; } else { -lean_object* x_12; lean_object* x_13; 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; -x_12 = lean_ctor_get(x_1, 0); -x_13 = lean_ctor_get(x_1, 1); -lean_inc(x_13); +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); lean_inc(x_12); +lean_inc(x_11); lean_dec(x_1); -x_14 = lean_ctor_get(x_2, 0); +x_13 = lean_ctor_get(x_2, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_2, 2); lean_inc(x_14); -x_15 = lean_ctor_get(x_2, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_2, 2); -lean_inc(x_16); -lean_dec_ref(x_2); -x_17 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(x_12, x_14, x_15); -x_18 = lean_box(0); -x_19 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(x_13, x_16, x_18); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_17); -lean_ctor_set(x_20, 1, x_19); -return x_20; +x_15 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(x_11, x_13, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(x_12, x_14, x_16); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_17); +return x_18; } } } -static lean_object* _init_l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_() { +static lean_object* _init_l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_() { _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 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_)); -x_2 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_)); +x_1 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__0_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_)); +x_2 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__1_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_)); x_3 = l_Lean_Compiler_CSimp_instInhabitedState_default___closed__5; -x_4 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_)); -x_5 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_)); +x_4 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__2_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_)); +x_5 = ((lean_object*)(l_Lean_Compiler_CSimp_initFn___closed__7_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_)); x_6 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); @@ -1518,56 +1605,56 @@ lean_ctor_set(x_6, 4, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_() { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_() { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_; +x_2 = l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_; x_3 = l_Lean_registerSimpleScopedEnvExtension___redArg(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2____boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2____boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(); +x_2 = l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0___redArg(x_2, x_3, x_4); +x_5 = l_Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1___redArg(x_2, x_3, x_4); +x_5 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__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) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -1575,94 +1662,94 @@ x_7 = lean_unbox_usize(x_3); lean_dec(x_3); x_8 = lean_unbox_usize(x_4); lean_dec(x_4); -x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1(x_1, x_2, x_7, x_8, x_5, x_6); +x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1(x_1, x_2, x_7, x_8, x_5, x_6); return x_9; } } -LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_3); +x_4 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3(x_1, x_2, x_3); +x_4 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_2); +x_3 = l_Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4___redArg(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_4); +x_5 = l_Std_DHashMap_Internal_AssocList_replace___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__5___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_4, x_6, x_7); +x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_4, x_6, x_7); return x_8; } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___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_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3___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) { _start: { size_t x_8; lean_object* x_9; x_8 = lean_unbox_usize(x_2); lean_dec(x_2); -x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__3(x_1, x_8, x_3, x_4, x_5, x_6, x_7); lean_dec_ref(x_4); lean_dec_ref(x_3); return x_9; } } -LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(x_2, x_3, x_4); +x_5 = l___private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(x_2, x_3, x_4, x_5); +x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1_spec__2_spec__4___redArg(x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(x_2, x_3); +x_4 = l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__4_spec__7_spec__9___redArg(x_2, x_3); return x_4; } } @@ -3646,7 +3733,1424 @@ x_2 = l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___regBui return x_2; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_st_ref_take(x_1); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_6, 0); +x_9 = lean_ctor_get(x_6, 5); +lean_dec(x_9); +x_10 = l_Lean_Environment_setExporting(x_8, x_2); +lean_ctor_set(x_6, 5, x_3); +lean_ctor_set(x_6, 0, x_10); +x_11 = lean_st_ref_set(x_1, x_6); +x_12 = lean_box(0); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +else +{ +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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_14 = lean_ctor_get(x_6, 0); +x_15 = lean_ctor_get(x_6, 1); +x_16 = lean_ctor_get(x_6, 2); +x_17 = lean_ctor_get(x_6, 3); +x_18 = lean_ctor_get(x_6, 4); +x_19 = lean_ctor_get(x_6, 6); +x_20 = lean_ctor_get(x_6, 7); +x_21 = lean_ctor_get(x_6, 8); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_6); +x_22 = l_Lean_Environment_setExporting(x_14, x_2); +x_23 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_15); +lean_ctor_set(x_23, 2, x_16); +lean_ctor_set(x_23, 3, x_17); +lean_ctor_set(x_23, 4, x_18); +lean_ctor_set(x_23, 5, x_3); +lean_ctor_set(x_23, 6, x_19); +lean_ctor_set(x_23, 7, x_20); +lean_ctor_set(x_23, 8, x_21); +x_24 = lean_st_ref_set(x_1, x_23); +x_25 = lean_box(0); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_1, x_6, x_3, x_4); +lean_dec(x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_st_ref_get(x_4); +x_7 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_7); +lean_dec(x_6); +x_8 = lean_ctor_get_uint8(x_7, sizeof(void*)*8); +lean_dec_ref(x_7); +x_9 = lean_st_ref_take(x_4); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 5); +lean_dec(x_12); +x_13 = l_Lean_Environment_setExporting(x_11, x_2); +x_14 = l_Lean_ScopedEnvExtension_add___at___00Lean_Compiler_CSimp_add_spec__0___redArg___closed__2; +lean_ctor_set(x_9, 5, x_14); +lean_ctor_set(x_9, 0, x_13); +x_15 = lean_st_ref_set(x_4, x_9); +lean_inc(x_4); +x_16 = lean_apply_3(x_1, x_3, x_4, lean_box(0)); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_ctor_set_tag(x_16, 1); +x_19 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_4, x_8, x_14, x_16); +lean_dec_ref(x_16); +lean_dec(x_4); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_19, 0); +lean_dec(x_21); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +else +{ +lean_object* x_22; +lean_dec(x_19); +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_18); +return x_22; +} +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_23 = lean_ctor_get(x_16, 0); +lean_inc(x_23); +lean_dec(x_16); +lean_inc(x_23); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_23); +x_25 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_4, x_8, x_14, x_24); +lean_dec_ref(x_24); +lean_dec(x_4); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + x_26 = x_25; +} else { + lean_dec_ref(x_25); + x_26 = lean_box(0); +} +if (lean_is_scalar(x_26)) { + x_27 = lean_alloc_ctor(0, 1, 0); +} else { + x_27 = x_26; +} +lean_ctor_set(x_27, 0, x_23); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_28 = lean_ctor_get(x_16, 0); +lean_inc(x_28); +lean_dec_ref(x_16); +x_29 = lean_box(0); +x_30 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_4, x_8, x_14, x_29); +lean_dec(x_4); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; +x_32 = lean_ctor_get(x_30, 0); +lean_dec(x_32); +lean_ctor_set_tag(x_30, 1); +lean_ctor_set(x_30, 0, x_28); +return x_30; +} +else +{ +lean_object* x_33; +lean_dec(x_30); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_28); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; +x_34 = lean_ctor_get(x_9, 0); +x_35 = lean_ctor_get(x_9, 1); +x_36 = lean_ctor_get(x_9, 2); +x_37 = lean_ctor_get(x_9, 3); +x_38 = lean_ctor_get(x_9, 4); +x_39 = lean_ctor_get(x_9, 6); +x_40 = lean_ctor_get(x_9, 7); +x_41 = lean_ctor_get(x_9, 8); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_9); +x_42 = l_Lean_Environment_setExporting(x_34, x_2); +x_43 = l_Lean_ScopedEnvExtension_add___at___00Lean_Compiler_CSimp_add_spec__0___redArg___closed__2; +x_44 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_35); +lean_ctor_set(x_44, 2, x_36); +lean_ctor_set(x_44, 3, x_37); +lean_ctor_set(x_44, 4, x_38); +lean_ctor_set(x_44, 5, x_43); +lean_ctor_set(x_44, 6, x_39); +lean_ctor_set(x_44, 7, x_40); +lean_ctor_set(x_44, 8, x_41); +x_45 = lean_st_ref_set(x_4, x_44); +lean_inc(x_4); +x_46 = lean_apply_3(x_1, x_3, x_4, lean_box(0)); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +if (lean_is_exclusive(x_46)) { + lean_ctor_release(x_46, 0); + x_48 = x_46; +} else { + lean_dec_ref(x_46); + x_48 = lean_box(0); +} +lean_inc(x_47); +if (lean_is_scalar(x_48)) { + x_49 = lean_alloc_ctor(1, 1, 0); +} else { + x_49 = x_48; + lean_ctor_set_tag(x_49, 1); +} +lean_ctor_set(x_49, 0, x_47); +x_50 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_4, x_8, x_43, x_49); +lean_dec_ref(x_49); +lean_dec(x_4); +if (lean_is_exclusive(x_50)) { + lean_ctor_release(x_50, 0); + x_51 = x_50; +} else { + lean_dec_ref(x_50); + x_51 = lean_box(0); +} +if (lean_is_scalar(x_51)) { + x_52 = lean_alloc_ctor(0, 1, 0); +} else { + x_52 = x_51; +} +lean_ctor_set(x_52, 0, x_47); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_53 = lean_ctor_get(x_46, 0); +lean_inc(x_53); +lean_dec_ref(x_46); +x_54 = lean_box(0); +x_55 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___lam__0(x_4, x_8, x_43, x_54); +lean_dec(x_4); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + x_56 = x_55; +} else { + lean_dec_ref(x_55); + x_56 = lean_box(0); +} +if (lean_is_scalar(x_56)) { + x_57 = lean_alloc_ctor(1, 1, 0); +} else { + x_57 = x_56; + lean_ctor_set_tag(x_57, 1); +} +lean_ctor_set(x_57, 0, x_53); +return x_57; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg(x_1, x_6, x_3, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (x_2 == 0) +{ +lean_object* x_6; +x_6 = lean_apply_3(x_1, x_3, x_4, lean_box(0)); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +x_7 = 0; +x_8 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg(x_1, x_7, x_3, x_4); +return x_8; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(x_1, x_6, x_3, x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_4 = lean_ctor_get(x_2, 0); +x_5 = lean_ctor_get(x_2, 1); +x_6 = lean_ctor_get(x_2, 2); +x_7 = lean_name_eq(x_4, x_1); +if (x_7 == 0) +{ +x_2 = x_6; +goto _start; +} +else +{ +lean_object* x_9; +lean_inc(x_5); +x_9 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_9, 0, x_5); +return x_9; +} +} +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint64_t x_5; uint64_t x_6; uint64_t x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; size_t x_12; size_t x_13; size_t x_14; size_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; +x_3 = lean_ctor_get(x_1, 1); +x_4 = lean_array_get_size(x_3); +x_5 = l_Lean_Name_hash___override(x_2); +x_6 = 32; +x_7 = lean_uint64_shift_right(x_5, x_6); +x_8 = lean_uint64_xor(x_5, x_7); +x_9 = 16; +x_10 = lean_uint64_shift_right(x_8, x_9); +x_11 = lean_uint64_xor(x_8, x_10); +x_12 = lean_uint64_to_usize(x_11); +x_13 = lean_usize_of_nat(x_4); +x_14 = 1; +x_15 = lean_usize_sub(x_13, x_14); +x_16 = lean_usize_land(x_12, x_15); +x_17 = lean_array_uget(x_3, x_16); +x_18 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg(x_2, x_17); +lean_dec(x_17); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_2, x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_fget_borrowed(x_1, x_2); +x_7 = l_Lean_instBEqExtraModUse_beq(x_3, x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_add(x_2, x_8); +lean_dec(x_2); +x_2 = x_9; +goto _start; +} +else +{ +lean_dec(x_2); +return x_7; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg(x_1, x_2, x_3); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; size_t x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_4); +lean_dec_ref(x_1); +x_5 = lean_box(2); +x_6 = 5; +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +x_8 = lean_usize_land(x_2, x_7); +x_9 = lean_usize_to_nat(x_8); +x_10 = lean_array_get(x_5, x_4, x_9); +lean_dec(x_9); +lean_dec_ref(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +x_12 = l_Lean_instBEqExtraModUse_beq(x_3, x_11); +lean_dec(x_11); +return x_12; +} +case 1: +{ +lean_object* x_13; size_t x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec_ref(x_10); +x_14 = lean_usize_shift_right(x_2, x_6); +x_1 = x_13; +x_2 = x_14; +goto _start; +} +default: +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +} +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_17); +lean_dec_ref(x_1); +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg(x_17, x_18, x_3); +lean_dec_ref(x_17); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg(x_1, x_4, x_3); +lean_dec_ref(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; size_t x_4; uint8_t x_5; +x_3 = l_Lean_instHashableExtraModUse_hash(x_2); +x_4 = lean_uint64_to_usize(x_3); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg(x_1, x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg(x_1, x_2); +lean_dec_ref(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +static double _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0() { +_start: +{ +lean_object* x_1; double x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_float_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_3, 5); +x_7 = l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00__private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_isConstantReplacement_x3f_spec__0_spec__0_spec__1_spec__6_spec__10_spec__14_spec__16(x_2, x_3, x_4); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_st_ref_take(x_4); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_10, 4); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; double x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_14 = lean_ctor_get(x_12, 0); +x_15 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0; +x_16 = 0; +x_17 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1)); +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_15); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_15); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_16); +x_19 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2; +x_20 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_9); +lean_ctor_set(x_20, 2, x_19); +lean_inc(x_6); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_6); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_Lean_PersistentArray_push___redArg(x_14, x_21); +lean_ctor_set(x_12, 0, x_22); +x_23 = lean_st_ref_set(x_4, x_10); +x_24 = lean_box(0); +lean_ctor_set(x_7, 0, x_24); +return x_7; +} +else +{ +uint64_t x_25; lean_object* x_26; double x_27; uint8_t x_28; 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; +x_25 = lean_ctor_get_uint64(x_12, sizeof(void*)*1); +x_26 = lean_ctor_get(x_12, 0); +lean_inc(x_26); +lean_dec(x_12); +x_27 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0; +x_28 = 0; +x_29 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1)); +x_30 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_30, 0, x_1); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set_float(x_30, sizeof(void*)*2, x_27); +lean_ctor_set_float(x_30, sizeof(void*)*2 + 8, x_27); +lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 16, x_28); +x_31 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2; +x_32 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_9); +lean_ctor_set(x_32, 2, x_31); +lean_inc(x_6); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_6); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_PersistentArray_push___redArg(x_26, x_33); +x_35 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set_uint64(x_35, sizeof(void*)*1, x_25); +lean_ctor_set(x_10, 4, x_35); +x_36 = lean_st_ref_set(x_4, x_10); +x_37 = lean_box(0); +lean_ctor_set(x_7, 0, x_37); +return x_7; +} +} +else +{ +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; lean_object* x_45; lean_object* x_46; uint64_t x_47; lean_object* x_48; lean_object* x_49; double x_50; uint8_t 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; +x_38 = lean_ctor_get(x_10, 4); +x_39 = lean_ctor_get(x_10, 0); +x_40 = lean_ctor_get(x_10, 1); +x_41 = lean_ctor_get(x_10, 2); +x_42 = lean_ctor_get(x_10, 3); +x_43 = lean_ctor_get(x_10, 5); +x_44 = lean_ctor_get(x_10, 6); +x_45 = lean_ctor_get(x_10, 7); +x_46 = lean_ctor_get(x_10, 8); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_38); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_10); +x_47 = lean_ctor_get_uint64(x_38, sizeof(void*)*1); +x_48 = lean_ctor_get(x_38, 0); +lean_inc_ref(x_48); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + x_49 = x_38; +} else { + lean_dec_ref(x_38); + x_49 = lean_box(0); +} +x_50 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0; +x_51 = 0; +x_52 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1)); +x_53 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set_float(x_53, sizeof(void*)*2, x_50); +lean_ctor_set_float(x_53, sizeof(void*)*2 + 8, x_50); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 16, x_51); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2; +x_55 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_9); +lean_ctor_set(x_55, 2, x_54); +lean_inc(x_6); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_6); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Lean_PersistentArray_push___redArg(x_48, x_56); +if (lean_is_scalar(x_49)) { + x_58 = lean_alloc_ctor(0, 1, 8); +} else { + x_58 = x_49; +} +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set_uint64(x_58, sizeof(void*)*1, x_47); +x_59 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_59, 0, x_39); +lean_ctor_set(x_59, 1, x_40); +lean_ctor_set(x_59, 2, x_41); +lean_ctor_set(x_59, 3, x_42); +lean_ctor_set(x_59, 4, x_58); +lean_ctor_set(x_59, 5, x_43); +lean_ctor_set(x_59, 6, x_44); +lean_ctor_set(x_59, 7, x_45); +lean_ctor_set(x_59, 8, x_46); +x_60 = lean_st_ref_set(x_4, x_59); +x_61 = lean_box(0); +lean_ctor_set(x_7, 0, x_61); +return x_7; +} +} +else +{ +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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint64_t x_74; lean_object* x_75; lean_object* x_76; double x_77; uint8_t 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; +x_62 = lean_ctor_get(x_7, 0); +lean_inc(x_62); +lean_dec(x_7); +x_63 = lean_st_ref_take(x_4); +x_64 = lean_ctor_get(x_63, 4); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_63, 0); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +x_67 = lean_ctor_get(x_63, 2); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_63, 3); +lean_inc_ref(x_68); +x_69 = lean_ctor_get(x_63, 5); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_63, 6); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_63, 7); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_63, 8); +lean_inc_ref(x_72); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + lean_ctor_release(x_63, 2); + lean_ctor_release(x_63, 3); + lean_ctor_release(x_63, 4); + lean_ctor_release(x_63, 5); + lean_ctor_release(x_63, 6); + lean_ctor_release(x_63, 7); + lean_ctor_release(x_63, 8); + x_73 = x_63; +} else { + lean_dec_ref(x_63); + x_73 = lean_box(0); +} +x_74 = lean_ctor_get_uint64(x_64, sizeof(void*)*1); +x_75 = lean_ctor_get(x_64, 0); +lean_inc_ref(x_75); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + x_76 = x_64; +} else { + lean_dec_ref(x_64); + x_76 = lean_box(0); +} +x_77 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0; +x_78 = 0; +x_79 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1)); +x_80 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_80, 0, x_1); +lean_ctor_set(x_80, 1, x_79); +lean_ctor_set_float(x_80, sizeof(void*)*2, x_77); +lean_ctor_set_float(x_80, sizeof(void*)*2 + 8, x_77); +lean_ctor_set_uint8(x_80, sizeof(void*)*2 + 16, x_78); +x_81 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2; +x_82 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_62); +lean_ctor_set(x_82, 2, x_81); +lean_inc(x_6); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_6); +lean_ctor_set(x_83, 1, x_82); +x_84 = l_Lean_PersistentArray_push___redArg(x_75, x_83); +if (lean_is_scalar(x_76)) { + x_85 = lean_alloc_ctor(0, 1, 8); +} else { + x_85 = x_76; +} +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set_uint64(x_85, sizeof(void*)*1, x_74); +if (lean_is_scalar(x_73)) { + x_86 = lean_alloc_ctor(0, 9, 0); +} else { + x_86 = x_73; +} +lean_ctor_set(x_86, 0, x_65); +lean_ctor_set(x_86, 1, x_66); +lean_ctor_set(x_86, 2, x_67); +lean_ctor_set(x_86, 3, x_68); +lean_ctor_set(x_86, 4, x_85); +lean_ctor_set(x_86, 5, x_69); +lean_ctor_set(x_86, 6, x_70); +lean_ctor_set(x_86, 7, x_71); +lean_ctor_set(x_86, 8, x_72); +x_87 = lean_st_ref_set(x_4, x_86); +x_88 = lean_box(0); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_88); +return x_89; +} +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_ctor_get(x_2, 2); +x_5 = lean_ctor_get_uint8(x_4, sizeof(void*)*1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_1); +x_6 = lean_box(x_5); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_2, 13); +x_9 = ((lean_object*)(l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___closed__1)); +x_10 = l_Lean_Name_append(x_9, x_1); +x_11 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(x_8, x_4, x_10); +lean_dec(x_10); +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg(x_1, x_2); +lean_dec_ref(x_2); +return x_4; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__1)); +x_2 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__0)); +x_3 = l_Lean_PersistentHashMap_empty(lean_box(0), lean_box(0), x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__5)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__7)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__1)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__10)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__12)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_46; uint8_t x_47; +x_7 = lean_st_ref_get(x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec(x_7); +x_9 = lean_ctor_get_uint8(x_8, sizeof(void*)*8); +lean_dec_ref(x_8); +x_10 = lean_st_ref_get(x_5); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); +lean_dec(x_10); +x_12 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2; +lean_inc(x_1); +x_13 = lean_alloc_ctor(0, 1, 2); +lean_ctor_set(x_13, 0, x_1); +lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_9); +lean_ctor_set_uint8(x_13, sizeof(void*)*1 + 1, x_2); +x_14 = l___private_Lean_ExtraModUses_0__Lean_extraModUses; +x_15 = lean_box(1); +x_16 = lean_box(0); +x_46 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_12, x_14, x_11, x_15, x_16); +x_47 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg(x_46, x_13); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_56; lean_object* x_57; uint8_t x_70; +x_48 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__4)); +x_49 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg(x_48, x_4); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_70 = lean_unbox(x_50); +lean_dec(x_50); +if (x_70 == 0) +{ +lean_dec(x_3); +lean_dec(x_1); +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_object* x_71; lean_object* x_72; +x_71 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11; +if (x_9 == 0) +{ +lean_object* x_80; +x_80 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__16)); +x_72 = x_80; +goto block_79; +} +else +{ +lean_object* x_81; +x_81 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__17)); +x_72 = x_81; +goto block_79; +} +block_79: +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_73 = l_Lean_stringToMessageData(x_72); +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_73); +x_75 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13; +x_76 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +if (x_2 == 0) +{ +lean_object* x_77; +x_77 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__14)); +x_56 = x_76; +x_57 = x_77; +goto block_69; +} +else +{ +lean_object* x_78; +x_78 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__15)); +x_56 = x_76; +x_57 = x_78; +goto block_69; +} +} +} +block_55: +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8(x_48, x_53, x_4, x_5); +if (lean_obj_tag(x_54) == 0) +{ +lean_dec_ref(x_54); +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_dec_ref(x_13); +return x_54; +} +} +block_69: +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_58 = l_Lean_stringToMessageData(x_57); +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_58); +x_60 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6; +x_61 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_MessageData_ofName(x_1); +x_63 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_Name_isAnonymous(x_3); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8; +x_66 = l_Lean_MessageData_ofName(x_3); +x_67 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_51 = x_63; +x_52 = x_67; +goto block_55; +} +else +{ +lean_object* x_68; +lean_dec(x_3); +x_68 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9; +x_51 = x_63; +x_52 = x_68; +goto block_55; +} +} +} +else +{ +lean_object* x_82; lean_object* x_83; +lean_dec_ref(x_13); +lean_dec(x_3); +lean_dec(x_1); +x_82 = lean_box(0); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +block_45: +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_st_ref_take(x_17); +x_20 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_20); +x_21 = !lean_is_exclusive(x_19); +if (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_19, 0); +x_23 = lean_ctor_get(x_19, 5); +lean_dec(x_23); +x_24 = lean_ctor_get(x_20, 2); +lean_inc(x_24); +lean_dec_ref(x_20); +x_25 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_22, x_13, x_24, x_16); +lean_dec(x_24); +x_26 = l_Lean_ScopedEnvExtension_add___at___00Lean_Compiler_CSimp_add_spec__0___redArg___closed__2; +lean_ctor_set(x_19, 5, x_26); +lean_ctor_set(x_19, 0, x_25); +x_27 = lean_st_ref_set(x_17, x_19); +x_28 = lean_box(0); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +else +{ +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +x_32 = lean_ctor_get(x_19, 2); +x_33 = lean_ctor_get(x_19, 3); +x_34 = lean_ctor_get(x_19, 4); +x_35 = lean_ctor_get(x_19, 6); +x_36 = lean_ctor_get(x_19, 7); +x_37 = lean_ctor_get(x_19, 8); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +x_38 = lean_ctor_get(x_20, 2); +lean_inc(x_38); +lean_dec_ref(x_20); +x_39 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_30, x_13, x_38, x_16); +lean_dec(x_38); +x_40 = l_Lean_ScopedEnvExtension_add___at___00Lean_Compiler_CSimp_add_spec__0___redArg___closed__2; +x_41 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_31); +lean_ctor_set(x_41, 2, x_32); +lean_ctor_set(x_41, 3, x_33); +lean_ctor_set(x_41, 4, x_34); +lean_ctor_set(x_41, 5, x_40); +lean_ctor_set(x_41, 6, x_35); +lean_ctor_set(x_41, 7, x_36); +lean_ctor_set(x_41, 8, x_37); +x_42 = lean_st_ref_set(x_17, x_41); +x_43 = lean_box(0); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +return x_44; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3(x_1, x_7, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_5, x_4); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_12 = l_Lean_Environment_header(x_1); +x_13 = lean_ctor_get(x_12, 3); +lean_inc_ref(x_13); +lean_dec_ref(x_12); +x_14 = l_Lean_instInhabitedEffectiveImport_default; +x_15 = lean_array_uget(x_3, x_5); +x_16 = lean_array_get(x_14, x_13, x_15); +lean_dec(x_15); +lean_dec_ref(x_13); +x_17 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_17); +lean_dec(x_16); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = 0; +lean_inc(x_2); +x_20 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3(x_18, x_19, x_2, x_7, x_8); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; size_t x_22; size_t x_23; +lean_dec_ref(x_20); +x_21 = lean_box(0); +x_22 = 1; +x_23 = lean_usize_add(x_5, x_22); +x_5 = x_23; +x_6 = x_21; +goto _start; +} +else +{ +lean_dec(x_2); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4___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) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_11 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4(x_1, x_2, x_3, x_10, x_11, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +return x_12; +} +} +static lean_object* _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__1)); +x_2 = ((lean_object*)(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__0)); +x_3 = l_Std_HashMap_instInhabited(lean_box(0), lean_box(0), x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_21; +x_6 = lean_st_ref_get(x_4); +x_10 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_10); +lean_dec(x_6); +x_21 = l_Lean_Environment_getModuleIdxFor_x3f(x_10, x_1); +if (lean_obj_tag(x_21) == 0) +{ +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = l_Lean_Environment_header(x_10); +x_24 = lean_ctor_get(x_23, 3); +lean_inc_ref(x_24); +lean_dec_ref(x_23); +x_25 = lean_array_get_size(x_24); +x_26 = lean_nat_dec_lt(x_22, x_25); +if (x_26 == 0) +{ +lean_dec_ref(x_24); +lean_dec(x_22); +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_27 = lean_st_ref_get(x_4); +x_28 = lean_ctor_get(x_27, 0); +lean_inc_ref(x_28); +lean_dec(x_27); +x_29 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2; +x_30 = lean_array_fget(x_24, x_22); +lean_dec(x_22); +lean_dec_ref(x_24); +if (x_2 == 0) +{ +lean_dec_ref(x_28); +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_43; +lean_inc(x_1); +x_43 = l_Lean_isMarkedMeta(x_28, x_1); +if (x_43 == 0) +{ +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_44; +x_44 = 0; +x_31 = x_44; +goto block_42; +} +} +block_42: +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_32); +lean_dec(x_30); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +lean_inc(x_1); +x_34 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3(x_33, x_31, x_1, x_3, x_4); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_dec_ref(x_34); +x_35 = l_Lean_indirectModUseExt; +x_36 = lean_box(1); +x_37 = lean_box(0); +lean_inc_ref(x_10); +x_38 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_29, x_35, x_10, x_36, x_37); +x_39 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(x_38, x_1); +lean_dec(x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; +x_40 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3; +x_11 = lean_box(0); +x_12 = x_40; +goto block_20; +} +else +{ +lean_object* x_41; +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec_ref(x_39); +x_11 = lean_box(0); +x_12 = x_41; +goto block_20; +} +} +else +{ +lean_dec_ref(x_10); +lean_dec(x_1); +return x_34; +} +} +} +} +block_9: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_box(0); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +block_20: +{ +lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_box(0); +x_14 = lean_array_size(x_12); +x_15 = 0; +x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__4(x_10, x_1, x_12, x_14, x_15, x_13, x_3, x_4); +lean_dec_ref(x_12); +lean_dec_ref(x_10); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_13); +return x_16; +} +else +{ +lean_object* x_19; +lean_dec(x_16); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_13); +return x_19; +} +} +else +{ +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1(x_1, x_6, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -3686,18 +5190,18 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg(x_1, x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3710,7 +5214,7 @@ lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; lean_obj x_5 = lean_ctor_get(x_1, 0); x_6 = lean_box(2); x_7 = 5; -x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; x_9 = lean_usize_land(x_2, x_8); x_10 = lean_usize_to_nat(x_9); x_11 = lean_array_get(x_6, x_5, x_10); @@ -3771,7 +5275,7 @@ lean_inc(x_20); lean_dec(x_1); x_21 = lean_box(2); x_22 = 5; -x_23 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +x_23 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; x_24 = lean_usize_land(x_2, x_23); x_25 = lean_usize_to_nat(x_24); x_26 = lean_array_get(x_21, x_20, x_25); @@ -3832,120 +5336,44 @@ x_37 = lean_ctor_get(x_1, 1); lean_inc_ref(x_37); lean_dec_ref(x_1); x_38 = lean_unsigned_to_nat(0u); -x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg(x_36, x_37, x_38, x_3); +x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg(x_36, x_37, x_38, x_3); lean_dec_ref(x_37); lean_dec_ref(x_36); return x_39; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_3); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { _start: { uint64_t x_3; size_t x_4; lean_object* x_5; x_3 = l_Lean_Name_hash___override(x_2); x_4 = lean_uint64_to_usize(x_3); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_2); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg(x_1, x_2); +x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_3; -x_3 = lean_box(0); -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 1); -x_6 = lean_ctor_get(x_2, 2); -x_7 = lean_name_eq(x_4, x_1); -if (x_7 == 0) -{ -x_2 = x_6; -goto _start; -} -else -{ -lean_object* x_9; -lean_inc(x_5); -x_9 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_9, 0, x_5); -return x_9; -} -} -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint64_t x_5; uint64_t x_6; uint64_t x_7; uint64_t x_8; uint64_t x_9; uint64_t x_10; uint64_t x_11; size_t x_12; size_t x_13; size_t x_14; size_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; -x_3 = lean_ctor_get(x_1, 1); -x_4 = lean_array_get_size(x_3); -x_5 = l_Lean_Name_hash___override(x_2); -x_6 = 32; -x_7 = lean_uint64_shift_right(x_5, x_6); -x_8 = lean_uint64_xor(x_5, x_7); -x_9 = 16; -x_10 = lean_uint64_shift_right(x_8, x_9); -x_11 = lean_uint64_xor(x_8, x_10); -x_12 = lean_uint64_to_usize(x_11); -x_13 = lean_usize_of_nat(x_4); -x_14 = 1; -x_15 = lean_usize_sub(x_13, x_14); -x_16 = lean_usize_land(x_12, x_15); -x_17 = lean_array_uget(x_3, x_16); -x_18 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg(x_2, x_17); -lean_dec(x_17); -return x_18; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(x_1, x_2); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -3958,11 +5386,11 @@ lean_inc_ref(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc_ref(x_5); lean_dec_ref(x_1); -x_6 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg(x_5, x_2); +x_6 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(x_4, x_2); +x_7 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(x_4, x_2); lean_dec_ref(x_4); return x_7; } @@ -3978,69 +5406,498 @@ lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_1, 0); lean_inc_ref(x_8); lean_dec_ref(x_1); -x_9 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(x_8, x_2); +x_9 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(x_8, x_2); lean_dec_ref(x_8); return x_9; } } } -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___lam__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -uint8_t x_3; -x_3 = l_Lean_Expr_isConst(x_2); -if (x_3 == 0) +if (lean_obj_tag(x_2) == 4) +{ +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; lean_object* x_14; +x_6 = lean_ctor_get(x_2, 0); +x_7 = l_Lean_Compiler_CSimp_ext; +x_8 = lean_ctor_get(x_7, 1); +lean_inc_ref(x_8); +x_9 = lean_ctor_get(x_8, 0); +lean_inc_ref(x_9); +lean_dec_ref(x_8); +x_10 = lean_ctor_get(x_9, 2); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = l_Lean_Compiler_CSimp_instInhabitedState_default; +x_12 = l_Lean_ScopedEnvExtension_getState___redArg(x_11, x_7, x_1, x_10); +lean_dec(x_10); +x_13 = lean_ctor_get(x_12, 0); +lean_inc_ref(x_13); +lean_dec(x_12); +x_14 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg(x_13, x_6); +if (lean_obj_tag(x_14) == 1) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 2); +lean_inc(x_18); +lean_dec(x_16); +x_19 = 0; +x_20 = lean_box(x_19); +x_21 = lean_alloc_closure((void*)(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___boxed), 5, 2); +lean_closure_set(x_21, 0, x_18); +lean_closure_set(x_21, 1, x_20); +x_22 = 1; +x_23 = l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(x_21, x_22, x_3, x_4); +if (lean_obj_tag(x_23) == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_23, 0); +lean_dec(x_25); +x_26 = l_Lean_Expr_constLevels_x21(x_2); +x_27 = l_Lean_mkConst(x_17, x_26); +lean_ctor_set(x_14, 0, x_27); +lean_ctor_set(x_23, 0, x_14); +return x_23; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_23); +x_28 = l_Lean_Expr_constLevels_x21(x_2); +x_29 = l_Lean_mkConst(x_17, x_28); +lean_ctor_set(x_14, 0, x_29); +x_30 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_30, 0, x_14); +return x_30; +} +} +else +{ +uint8_t x_31; +lean_dec(x_17); +lean_free_object(x_14); +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) +{ +return x_23; +} +else +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_23, 0); +lean_inc(x_32); +lean_dec(x_23); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +x_34 = lean_ctor_get(x_14, 0); +lean_inc(x_34); +lean_dec(x_14); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 2); +lean_inc(x_36); +lean_dec(x_34); +x_37 = 0; +x_38 = lean_box(x_37); +x_39 = lean_alloc_closure((void*)(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___boxed), 5, 2); +lean_closure_set(x_39, 0, x_36); +lean_closure_set(x_39, 1, x_38); +x_40 = 1; +x_41 = l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(x_39, x_40, x_3, x_4); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + x_42 = x_41; +} else { + lean_dec_ref(x_41); + x_42 = lean_box(0); +} +x_43 = l_Lean_Expr_constLevels_x21(x_2); +x_44 = l_Lean_mkConst(x_35, x_43); +x_45 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_45, 0, x_44); +if (lean_is_scalar(x_42)) { + x_46 = lean_alloc_ctor(0, 1, 0); +} else { + x_46 = x_42; +} +lean_ctor_set(x_46, 0, x_45); +return x_46; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_dec(x_35); +x_47 = lean_ctor_get(x_41, 0); +lean_inc(x_47); +if (lean_is_exclusive(x_41)) { + lean_ctor_release(x_41, 0); + x_48 = x_41; +} else { + lean_dec_ref(x_41); + x_48 = lean_box(0); +} +if (lean_is_scalar(x_48)) { + x_49 = lean_alloc_ctor(1, 1, 0); +} else { + x_49 = x_48; +} +lean_ctor_set(x_49, 0, x_47); +return x_49; +} +} +} +else +{ +lean_object* x_50; lean_object* x_51; +lean_dec(x_14); +lean_dec(x_4); +lean_dec_ref(x_3); +x_50 = lean_box(0); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +return x_51; +} +} +else +{ +lean_object* x_52; lean_object* x_53; +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_52 = lean_box(0); +x_53 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_53, 0, x_52); +return x_53; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Compiler_CSimp_replaceConstant_x3f(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: { lean_object* x_4; -lean_dec_ref(x_1); -x_4 = lean_box(0); +x_4 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___redArg(x_2, x_3); return x_4; } -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_5); -lean_dec_ref(x_1); -x_6 = l_Lean_Expr_constName_x21(x_2); -x_7 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg(x_5, x_6); -lean_dec(x_6); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_box(0); -return x_8; } -else +LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: { -uint8_t x_9; -x_9 = !lean_is_exclusive(x_7); -if (x_9 == 0) +lean_object* x_4; +x_4 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +_start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_ctor_get(x_7, 0); -x_11 = l_Lean_Expr_constLevels_x21(x_2); -x_12 = l_Lean_mkConst(x_10, x_11); -lean_ctor_set(x_7, 0, x_12); +lean_object* x_7; +x_7 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___redArg(x_2, x_3, x_4, x_5); return x_7; } +} +LEAN_EXPORT lean_object* l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +x_8 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2_spec__6(x_1, x_2, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2___redArg(x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +x_8 = l_Lean_withoutExporting___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__2(x_1, x_2, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___redArg(x_1, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__7(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; lean_object* x_6; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1(x_1, x_2, x_5, x_4); +lean_dec(x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__1_spec__3(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6(x_1, x_2, x_3); +lean_dec_ref(x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___redArg(x_2, x_3, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__0_spec__0_spec__1_spec__5(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; uint8_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10(x_1, x_2, x_5, x_4); +lean_dec_ref(x_4); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___redArg(x_2, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__6_spec__10_spec__13(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_8 = lean_box(x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Compiler_CSimp_replaceConstant_x3f(x_1, x_2, x_3, x_4); +if (lean_obj_tag(x_6) == 0) +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_6, 0); +if (lean_obj_tag(x_8) == 0) +{ +lean_ctor_set(x_6, 0, x_2); +return x_6; +} else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_ctor_get(x_7, 0); -lean_inc(x_13); -lean_dec(x_7); -x_14 = l_Lean_Expr_constLevels_x21(x_2); -x_15 = l_Lean_mkConst(x_13, x_14); +lean_object* x_9; +lean_dec_ref(x_2); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +lean_dec_ref(x_8); +lean_ctor_set(x_6, 0, x_9); +return x_6; +} +} +else +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +lean_dec(x_6); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_2); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +lean_dec_ref(x_2); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec_ref(x_10); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +} +else +{ +uint8_t x_14; +lean_dec_ref(x_2); +x_14 = !lean_is_exclusive(x_6); +if (x_14 == 0) +{ +return x_6; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_6, 0); +lean_inc(x_15); +lean_dec(x_6); x_16 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_16, 0, x_15); return x_16; @@ -4048,156 +5905,14 @@ return x_16; } } } -} -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___lam__0___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstant___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_3; -x_3 = l_Lean_Compiler_CSimp_replaceConstants___lam__0(x_1, x_2); -lean_dec_ref(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants(lean_object* x_1, lean_object* x_2) { -_start: -{ -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; -x_3 = l_Lean_Compiler_CSimp_ext; -x_4 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_4); -x_5 = lean_ctor_get(x_4, 0); -lean_inc_ref(x_5); -lean_dec_ref(x_4); -x_6 = lean_ctor_get(x_5, 2); -lean_inc(x_6); -lean_dec_ref(x_5); -x_7 = l_Lean_Compiler_CSimp_instInhabitedState_default; -x_8 = l_Lean_ScopedEnvExtension_getState___redArg(x_7, x_3, x_1, x_6); -lean_dec(x_6); -x_9 = lean_alloc_closure((void*)(l_Lean_Compiler_CSimp_replaceConstants___lam__0___boxed), 2, 1); -lean_closure_set(x_9, 0, x_8); -x_10 = lean_replace_expr(x_9, x_2); -lean_dec_ref(x_9); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_replaceConstants___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Compiler_CSimp_replaceConstants(x_1, x_2); -lean_dec_ref(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___redArg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0(x_1, x_2, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___redArg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0(x_1, x_2, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___redArg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; lean_object* x_6; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1(x_1, x_2, x_5, x_4); -lean_dec(x_4); +lean_object* x_6; +x_6 = l_Lean_Compiler_CSimp_replaceConstant(x_1, x_2, x_3, x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___redArg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__1_spec__3(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec(x_2); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__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) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2___redArg(x_2, x_3, x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__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) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_SMap_find_x3f___at___00Lean_Compiler_CSimp_replaceConstants_spec__0_spec__0_spec__1_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_7; -} -} LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_SMap_contains___at___00Lean_Compiler_hasCSimpAttribute_spec__0_spec__1_spec__2_spec__3___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -4253,7 +5968,7 @@ lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = lean_box(2); x_6 = 5; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1; x_8 = lean_usize_land(x_2, x_7); x_9 = lean_usize_to_nat(x_8); x_10 = lean_array_get(x_5, x_4, x_9); @@ -4353,7 +6068,7 @@ x_14 = 1; x_15 = lean_usize_sub(x_13, x_14); x_16 = lean_usize_land(x_12, x_15); x_17 = lean_array_uget(x_3, x_16); -x_18 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_17); +x_18 = l_Std_DHashMap_Internal_AssocList_contains___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__1_spec__3___redArg(x_2, x_17); lean_dec(x_17); return x_18; } @@ -4548,6 +6263,7 @@ return x_8; } lean_object* initialize_Lean_ScopedEnvExtension(uint8_t builtin); lean_object* initialize_Lean_Util_Recognizers(uint8_t builtin); +lean_object* initialize_Lean_ExtraModUses(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Compiler_CSimpAttr(uint8_t builtin) { lean_object * res; @@ -4559,6 +6275,9 @@ lean_dec_ref(res); res = initialize_Lean_Util_Recognizers(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_ExtraModUses(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Compiler_CSimp_instInhabitedState_default___closed__0 = _init_l_Lean_Compiler_CSimp_instInhabitedState_default___closed__0(); lean_mark_persistent(l_Lean_Compiler_CSimp_instInhabitedState_default___closed__0); l_Lean_Compiler_CSimp_instInhabitedState_default___closed__1 = _init_l_Lean_Compiler_CSimp_instInhabitedState_default___closed__1(); @@ -4575,13 +6294,13 @@ l_Lean_Compiler_CSimp_instInhabitedState_default = _init_l_Lean_Compiler_CSimp_i lean_mark_persistent(l_Lean_Compiler_CSimp_instInhabitedState_default); l_Lean_Compiler_CSimp_instInhabitedState = _init_l_Lean_Compiler_CSimp_instInhabitedState(); lean_mark_persistent(l_Lean_Compiler_CSimp_instInhabitedState); -l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0(); -l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1(); -l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2); -l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_ = _init_l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(); -lean_mark_persistent(l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_); -if (builtin) {res = l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_3462955706____hygCtx___hyg_2_(); +l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__0(); +l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__1(); +l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_SMap_insert___at___00Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2__spec__0_spec__0_spec__1___redArg___closed__2); +l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_ = _init_l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(); +lean_mark_persistent(l_Lean_Compiler_CSimp_initFn___closed__8_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_); +if (builtin) {res = l_Lean_Compiler_CSimp_initFn_00___x40_Lean_Compiler_CSimpAttr_309491121____hygCtx___hyg_2_(); if (lean_io_result_is_error(res)) return res; l_Lean_Compiler_CSimp_ext = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Compiler_CSimp_ext); @@ -4640,7 +6359,26 @@ lean_dec_ref(res); }if (builtin) {res = l___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn___regBuiltin___private_Lean_Compiler_CSimpAttr_0__Lean_Compiler_CSimp_initFn_docString__1(); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}return lean_io_result_mk_ok(lean_box(0)); +}l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0 = _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__0(); +l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2 = _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2(); +lean_mark_persistent(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3_spec__8___closed__2); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__2); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__6); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__8); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__9); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__11); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1_spec__3___closed__13); +l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2 = _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2(); +lean_mark_persistent(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__2); +l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3 = _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3(); +lean_mark_persistent(l_Lean_recordExtraModUseFromDecl___at___00Lean_Compiler_CSimp_replaceConstant_x3f_spec__1___closed__3); +return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus } diff --git a/stage0/stdlib/Lean/Compiler/IR.c b/stage0/stdlib/Lean/Compiler/IR.c index 445830c8c9..803b6bc158 100644 --- a/stage0/stdlib/Lean/Compiler/IR.c +++ b/stage0/stdlib/Lean/Compiler/IR.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.IR -// Imports: public import Lean.Compiler.IR.AddExtern public import Lean.Compiler.IR.Basic public import Lean.Compiler.IR.Format public import Lean.Compiler.IR.CompilerM public import Lean.Compiler.IR.PushProj public import Lean.Compiler.IR.SimpCase public import Lean.Compiler.IR.NormIds public import Lean.Compiler.IR.Checker public import Lean.Compiler.IR.Borrow public import Lean.Compiler.IR.Boxing public import Lean.Compiler.IR.RC public import Lean.Compiler.IR.ExpandResetReuse public import Lean.Compiler.IR.UnboxResult public import Lean.Compiler.IR.EmitC public import Lean.Compiler.IR.Sorry public import Lean.Compiler.IR.ToIR public import Lean.Compiler.IR.ToIRType public import Lean.Compiler.IR.Meta public import Lean.Compiler.IR.Toposort public import Lean.Compiler.IR.SimpleGroundExpr public import Lean.Compiler.IR.LLVMBindings public import Lean.Compiler.IR.EmitLLVM +// Imports: public import Lean.Compiler.IR.AddExtern public import Lean.Compiler.IR.Basic public import Lean.Compiler.IR.Format public import Lean.Compiler.IR.CompilerM public import Lean.Compiler.IR.PushProj public import Lean.Compiler.IR.NormIds public import Lean.Compiler.IR.Checker public import Lean.Compiler.IR.Borrow public import Lean.Compiler.IR.Boxing public import Lean.Compiler.IR.RC public import Lean.Compiler.IR.ExpandResetReuse public import Lean.Compiler.IR.UnboxResult public import Lean.Compiler.IR.EmitC public import Lean.Compiler.IR.Sorry public import Lean.Compiler.IR.ToIR public import Lean.Compiler.IR.ToIRType public import Lean.Compiler.IR.Meta public import Lean.Compiler.IR.Toposort public import Lean.Compiler.IR.SimpleGroundExpr public import Lean.Compiler.IR.LLVMBindings public import Lean.Compiler.IR.EmitLLVM #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,23 +14,17 @@ extern "C" { #endif lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_IR_compile_spec__4(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_IR_compile_spec__4___boxed(lean_object*, lean_object*); -uint8_t lean_usize_dec_lt(size_t, size_t); -lean_object* lean_array_uget(lean_object*, size_t); -lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_IR_Decl_simpCase(lean_object*); -size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_IR_compile_spec__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_IR_compile_spec__2___boxed(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); +lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_IR_Decl_detectSimpleGround(lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_IR_compile_spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_IR_compile_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_IR_Decl_expandResetReuse(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_IR_Decl_normalizeIds(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_pushProj(lean_object*); @@ -54,31 +48,26 @@ static const lean_object* l_Lean_IR_compile___closed__6 = (const lean_object*)&l static const lean_ctor_object l_Lean_IR_compile___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__6_value),LEAN_SCALAR_PTR_LITERAL(72, 5, 38, 228, 229, 249, 19, 211)}}; static const lean_object* l_Lean_IR_compile___closed__7 = (const lean_object*)&l_Lean_IR_compile___closed__7_value; static lean_object* l_Lean_IR_compile___closed__8; -static const lean_string_object l_Lean_IR_compile___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "simp_case"}; +static const lean_string_object l_Lean_IR_compile___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "borrow"}; static const lean_object* l_Lean_IR_compile___closed__9 = (const lean_object*)&l_Lean_IR_compile___closed__9_value; -static const lean_ctor_object l_Lean_IR_compile___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__9_value),LEAN_SCALAR_PTR_LITERAL(51, 161, 3, 18, 2, 242, 35, 48)}}; +static const lean_ctor_object l_Lean_IR_compile___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__9_value),LEAN_SCALAR_PTR_LITERAL(6, 238, 236, 65, 232, 33, 155, 173)}}; static const lean_object* l_Lean_IR_compile___closed__10 = (const lean_object*)&l_Lean_IR_compile___closed__10_value; static lean_object* l_Lean_IR_compile___closed__11; -static const lean_string_object l_Lean_IR_compile___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "borrow"}; +static const lean_string_object l_Lean_IR_compile___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "boxing"}; static const lean_object* l_Lean_IR_compile___closed__12 = (const lean_object*)&l_Lean_IR_compile___closed__12_value; -static const lean_ctor_object l_Lean_IR_compile___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__12_value),LEAN_SCALAR_PTR_LITERAL(6, 238, 236, 65, 232, 33, 155, 173)}}; +static const lean_ctor_object l_Lean_IR_compile___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__12_value),LEAN_SCALAR_PTR_LITERAL(242, 243, 151, 118, 211, 212, 37, 126)}}; static const lean_object* l_Lean_IR_compile___closed__13 = (const lean_object*)&l_Lean_IR_compile___closed__13_value; static lean_object* l_Lean_IR_compile___closed__14; -static const lean_string_object l_Lean_IR_compile___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "boxing"}; +static const lean_string_object l_Lean_IR_compile___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "rc"}; static const lean_object* l_Lean_IR_compile___closed__15 = (const lean_object*)&l_Lean_IR_compile___closed__15_value; -static const lean_ctor_object l_Lean_IR_compile___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__15_value),LEAN_SCALAR_PTR_LITERAL(242, 243, 151, 118, 211, 212, 37, 126)}}; +static const lean_ctor_object l_Lean_IR_compile___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__15_value),LEAN_SCALAR_PTR_LITERAL(47, 196, 226, 82, 255, 49, 236, 119)}}; static const lean_object* l_Lean_IR_compile___closed__16 = (const lean_object*)&l_Lean_IR_compile___closed__16_value; static lean_object* l_Lean_IR_compile___closed__17; -static const lean_string_object l_Lean_IR_compile___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "rc"}; +static const lean_string_object l_Lean_IR_compile___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "expand_reset_reuse"}; static const lean_object* l_Lean_IR_compile___closed__18 = (const lean_object*)&l_Lean_IR_compile___closed__18_value; -static const lean_ctor_object l_Lean_IR_compile___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__18_value),LEAN_SCALAR_PTR_LITERAL(47, 196, 226, 82, 255, 49, 236, 119)}}; +static const lean_ctor_object l_Lean_IR_compile___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__18_value),LEAN_SCALAR_PTR_LITERAL(60, 21, 194, 70, 67, 90, 93, 241)}}; static const lean_object* l_Lean_IR_compile___closed__19 = (const lean_object*)&l_Lean_IR_compile___closed__19_value; static lean_object* l_Lean_IR_compile___closed__20; -static const lean_string_object l_Lean_IR_compile___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "expand_reset_reuse"}; -static const lean_object* l_Lean_IR_compile___closed__21 = (const lean_object*)&l_Lean_IR_compile___closed__21_value; -static const lean_ctor_object l_Lean_IR_compile___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_IR_compile___closed__21_value),LEAN_SCALAR_PTR_LITERAL(60, 21, 194, 70, 67, 90, 93, 241)}}; -static const lean_object* l_Lean_IR_compile___closed__22 = (const lean_object*)&l_Lean_IR_compile___closed__22_value; -static lean_object* l_Lean_IR_compile___closed__23; lean_object* l_Lean_IR_addDecls(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_inferMeta(lean_object*, lean_object*, lean_object*); size_t lean_array_size(lean_object*); @@ -166,7 +155,7 @@ static const lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_initFn___close lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_640659120____hygCtx___hyg_2_(); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_640659120____hygCtx___hyg_2____boxed(lean_object*); -LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_IR_compile_spec__4(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Lean_Option_get___at___00Lean_IR_compile_spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -203,54 +192,17 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_IR_compile_spec__4___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00Lean_IR_compile_spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Option_get___at___00Lean_IR_compile_spec__4(x_1, x_2); +x_3 = l_Lean_Option_get___at___00Lean_IR_compile_spec__2(x_1, x_2); lean_dec_ref(x_2); lean_dec_ref(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = l_Lean_IR_Decl_simpCase(x_5); -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_7, x_2, x_8); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2(x_4, x_5, x_3); -return x_6; -} -} LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_IR_compile_spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { @@ -302,43 +254,6 @@ lean_dec_ref(x_1); return x_10; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = l_Lean_IR_Decl_expandResetReuse(x_5); -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_7, x_2, x_8); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5(x_4, x_5, x_3); -return x_6; -} -} LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__3(size_t x_1, size_t x_2, lean_object* x_3) { _start: { @@ -354,7 +269,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x x_5 = lean_array_uget(x_3, x_2); x_6 = lean_unsigned_to_nat(0u); x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = l_Lean_IR_Decl_normalizeIds(x_5); +x_8 = l_Lean_IR_Decl_expandResetReuse(x_5); x_9 = 1; x_10 = lean_usize_add(x_2, x_9); x_11 = lean_array_uset(x_7, x_2, x_8); @@ -483,16 +398,6 @@ x_3 = l_Lean_Name_append(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_IR_compile___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = ((lean_object*)(l_Lean_IR_compile___closed__22)); -x_2 = l_Lean_IR_tracePrefixOptionName; -x_3 = l_Lean_Name_append(x_2, x_1); -return x_3; -} -} LEAN_EXPORT lean_object* l_Lean_IR_compile(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -509,72 +414,59 @@ lean_inc_ref(x_1); x_69 = l_Lean_IR_checkDecls(x_1, x_2, x_3); if (lean_obj_tag(x_69) == 0) { -size_t x_70; size_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_object* x_70; lean_dec_ref(x_69); -x_70 = lean_array_size(x_1); -x_71 = 0; -x_72 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__2(x_70, x_71, x_1); -x_73 = ((lean_object*)(l_Lean_IR_compile___closed__10)); -x_74 = l_Lean_IR_compile___closed__11; -lean_inc_ref(x_72); -x_75 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_74, x_73, x_72, x_2, x_3); +x_70 = l_Lean_IR_inferBorrow___redArg(x_1, x_3); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +lean_dec_ref(x_70); +x_72 = ((lean_object*)(l_Lean_IR_compile___closed__10)); +x_73 = l_Lean_IR_compile___closed__11; +lean_inc(x_71); +x_74 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_73, x_72, x_71, x_2, x_3); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; +lean_dec_ref(x_74); +x_75 = l_Lean_IR_explicitBoxing___redArg(x_71, x_3); if (lean_obj_tag(x_75) == 0) { -size_t x_76; lean_object* x_77; lean_object* x_78; +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); lean_dec_ref(x_75); -x_76 = lean_array_size(x_72); -x_77 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__3(x_76, x_71, x_72); -x_78 = l_Lean_IR_inferBorrow___redArg(x_77, x_3); -if (lean_obj_tag(x_78) == 0) +x_77 = ((lean_object*)(l_Lean_IR_compile___closed__13)); +x_78 = l_Lean_IR_compile___closed__14; +lean_inc(x_76); +x_79 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_78, x_77, x_76, x_2, x_3); +if (lean_obj_tag(x_79) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -lean_dec_ref(x_78); -x_80 = ((lean_object*)(l_Lean_IR_compile___closed__13)); -x_81 = l_Lean_IR_compile___closed__14; -lean_inc(x_79); -x_82 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_81, x_80, x_79, x_2, x_3); -if (lean_obj_tag(x_82) == 0) +lean_object* x_80; +lean_dec_ref(x_79); +x_80 = l_Lean_IR_explicitRC___redArg(x_76, x_3); +if (lean_obj_tag(x_80) == 0) { -lean_object* x_83; -lean_dec_ref(x_82); -x_83 = l_Lean_IR_explicitBoxing___redArg(x_79, x_3); -if (lean_obj_tag(x_83) == 0) +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +lean_dec_ref(x_80); +x_82 = ((lean_object*)(l_Lean_IR_compile___closed__16)); +x_83 = l_Lean_IR_compile___closed__17; +lean_inc(x_81); +x_84 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_83, x_82, x_81, x_2, x_3); +if (lean_obj_tag(x_84) == 0) { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_83, 0); -lean_inc(x_84); -lean_dec_ref(x_83); -x_85 = ((lean_object*)(l_Lean_IR_compile___closed__16)); -x_86 = l_Lean_IR_compile___closed__17; -lean_inc(x_84); -x_87 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_86, x_85, x_84, x_2, x_3); -if (lean_obj_tag(x_87) == 0) +lean_object* x_85; lean_object* x_86; uint8_t x_87; +lean_dec_ref(x_84); +x_85 = lean_ctor_get(x_2, 2); +x_86 = l_Lean_Compiler_LCNF_compiler_reuse; +x_87 = l_Lean_Option_get___at___00Lean_IR_compile_spec__2(x_85, x_86); +if (x_87 == 0) { -lean_object* x_88; -lean_dec_ref(x_87); -x_88 = l_Lean_IR_explicitRC___redArg(x_84, x_3); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -lean_dec_ref(x_88); -x_90 = ((lean_object*)(l_Lean_IR_compile___closed__19)); -x_91 = l_Lean_IR_compile___closed__20; -lean_inc(x_89); -x_92 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_91, x_90, x_89, x_2, x_3); -if (lean_obj_tag(x_92) == 0) -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -lean_dec_ref(x_92); -x_93 = lean_ctor_get(x_2, 2); -x_94 = l_Lean_Compiler_LCNF_compiler_reuse; -x_95 = l_Lean_Option_get___at___00Lean_IR_compile_spec__4(x_93, x_94); -if (x_95 == 0) -{ -x_29 = x_89; +x_29 = x_81; x_30 = x_2; x_31 = x_3; x_32 = lean_box(0); @@ -582,17 +474,18 @@ goto block_65; } else { -size_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_96 = lean_array_size(x_89); -x_97 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__5(x_96, x_71, x_89); -x_98 = ((lean_object*)(l_Lean_IR_compile___closed__22)); -x_99 = l_Lean_IR_compile___closed__23; -lean_inc_ref(x_97); -x_100 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_99, x_98, x_97, x_2, x_3); -if (lean_obj_tag(x_100) == 0) +size_t x_88; size_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_88 = lean_array_size(x_81); +x_89 = 0; +x_90 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_compile_spec__3(x_88, x_89, x_81); +x_91 = ((lean_object*)(l_Lean_IR_compile___closed__19)); +x_92 = l_Lean_IR_compile___closed__20; +lean_inc_ref(x_90); +x_93 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(x_92, x_91, x_90, x_2, x_3); +if (lean_obj_tag(x_93) == 0) { -lean_dec_ref(x_100); -x_29 = x_97; +lean_dec_ref(x_93); +x_29 = x_90; x_30 = x_2; x_31 = x_3; x_32 = lean_box(0); @@ -600,78 +493,48 @@ goto block_65; } else { -uint8_t x_101; -lean_dec_ref(x_97); +uint8_t x_94; +lean_dec_ref(x_90); lean_dec(x_3); lean_dec_ref(x_2); -x_101 = !lean_is_exclusive(x_100); -if (x_101 == 0) +x_94 = !lean_is_exclusive(x_93); +if (x_94 == 0) { -return x_100; +return x_93; } else { -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_100, 0); -lean_inc(x_102); -lean_dec(x_100); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_93, 0); +lean_inc(x_95); +lean_dec(x_93); +x_96 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_96, 0, x_95); +return x_96; } } } } else { -uint8_t x_104; -lean_dec(x_89); +uint8_t x_97; +lean_dec(x_81); lean_dec(x_3); lean_dec_ref(x_2); -x_104 = !lean_is_exclusive(x_92); -if (x_104 == 0) +x_97 = !lean_is_exclusive(x_84); +if (x_97 == 0) { -return x_92; +return x_84; } else { -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_92, 0); -lean_inc(x_105); -lean_dec(x_92); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; -} -} -} -else -{ -lean_dec(x_3); -lean_dec_ref(x_2); -return x_88; -} -} -else -{ -uint8_t x_107; +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_84, 0); +lean_inc(x_98); lean_dec(x_84); -lean_dec(x_3); -lean_dec_ref(x_2); -x_107 = !lean_is_exclusive(x_87); -if (x_107 == 0) -{ -return x_87; -} -else -{ -lean_object* x_108; lean_object* x_109; -x_108 = lean_ctor_get(x_87, 0); -lean_inc(x_108); -lean_dec(x_87); -x_109 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_109, 0, x_108); -return x_109; +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +return x_99; } } } @@ -679,29 +542,29 @@ else { lean_dec(x_3); lean_dec_ref(x_2); -return x_83; +return x_80; } } else { -uint8_t x_110; +uint8_t x_100; +lean_dec(x_76); +lean_dec(x_3); +lean_dec_ref(x_2); +x_100 = !lean_is_exclusive(x_79); +if (x_100 == 0) +{ +return x_79; +} +else +{ +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_79, 0); +lean_inc(x_101); lean_dec(x_79); -lean_dec(x_3); -lean_dec_ref(x_2); -x_110 = !lean_is_exclusive(x_82); -if (x_110 == 0) -{ -return x_82; -} -else -{ -lean_object* x_111; lean_object* x_112; -x_111 = lean_ctor_get(x_82, 0); -lean_inc(x_111); -lean_dec(x_82); -x_112 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_112, 0, x_111); -return x_112; +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +return x_102; } } } @@ -709,88 +572,95 @@ else { lean_dec(x_3); lean_dec_ref(x_2); -return x_78; -} -} -else -{ -uint8_t x_113; -lean_dec_ref(x_72); -lean_dec(x_3); -lean_dec_ref(x_2); -x_113 = !lean_is_exclusive(x_75); -if (x_113 == 0) -{ return x_75; } +} else { -lean_object* x_114; lean_object* x_115; -x_114 = lean_ctor_get(x_75, 0); -lean_inc(x_114); -lean_dec(x_75); -x_115 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_115, 0, x_114); -return x_115; +uint8_t x_103; +lean_dec(x_71); +lean_dec(x_3); +lean_dec_ref(x_2); +x_103 = !lean_is_exclusive(x_74); +if (x_103 == 0) +{ +return x_74; +} +else +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_74, 0); +lean_inc(x_104); +lean_dec(x_74); +x_105 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; } } } else { -uint8_t x_116; +lean_dec(x_3); +lean_dec_ref(x_2); +return x_70; +} +} +else +{ +uint8_t x_106; lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_116 = !lean_is_exclusive(x_69); -if (x_116 == 0) +x_106 = !lean_is_exclusive(x_69); +if (x_106 == 0) { return x_69; } else { -lean_object* x_117; lean_object* x_118; -x_117 = lean_ctor_get(x_69, 0); -lean_inc(x_117); +lean_object* x_107; lean_object* x_108; +x_107 = lean_ctor_get(x_69, 0); +lean_inc(x_107); lean_dec(x_69); -x_118 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_118, 0, x_117); -return x_118; +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +return x_108; } } } else { -uint8_t x_119; +uint8_t x_109; lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_119 = !lean_is_exclusive(x_68); -if (x_119 == 0) +x_109 = !lean_is_exclusive(x_68); +if (x_109 == 0) { return x_68; } else { -lean_object* x_120; lean_object* x_121; -x_120 = lean_ctor_get(x_68, 0); -lean_inc(x_120); +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_68, 0); +lean_inc(x_110); lean_dec(x_68); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_120); -return x_121; +x_111 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_111, 0, x_110); +return x_111; } } block_20: { lean_object* x_9; -x_9 = l_Lean_IR_addDecls(x_7, x_6, x_5); +x_9 = l_Lean_IR_addDecls(x_5, x_7, x_6); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_dec_ref(x_9); -x_10 = l_Lean_IR_inferMeta(x_7, x_6, x_5); -lean_dec(x_5); -lean_dec_ref(x_6); +x_10 = l_Lean_IR_inferMeta(x_5, x_7, x_6); +lean_dec(x_6); +lean_dec_ref(x_7); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -800,7 +670,7 @@ if (x_11 == 0) lean_object* x_12; x_12 = lean_ctor_get(x_10, 0); lean_dec(x_12); -lean_ctor_set(x_10, 0, x_7); +lean_ctor_set(x_10, 0, x_5); return x_10; } else @@ -808,14 +678,14 @@ else lean_object* x_13; lean_dec(x_10); x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_7); +lean_ctor_set(x_13, 0, x_5); return x_13; } } else { uint8_t x_14; -lean_dec_ref(x_7); +lean_dec_ref(x_5); x_14 = !lean_is_exclusive(x_10); if (x_14 == 0) { @@ -837,8 +707,8 @@ else { uint8_t x_17; lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); +lean_dec(x_6); +lean_dec_ref(x_5); x_17 = !lean_is_exclusive(x_9); if (x_17 == 0) { @@ -871,8 +741,8 @@ else { uint8_t x_25; lean_dec_ref(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); +lean_dec(x_22); +lean_dec_ref(x_21); x_25 = !lean_is_exclusive(x_24); if (x_25 == 0) { @@ -940,9 +810,9 @@ x_48 = lean_array_get_size(x_46); x_49 = lean_nat_dec_lt(x_47, x_48); if (x_49 == 0) { -x_5 = x_31; -x_6 = x_30; -x_7 = x_46; +x_5 = x_46; +x_6 = x_31; +x_7 = x_30; x_8 = lean_box(0); goto block_20; } @@ -955,9 +825,9 @@ if (x_51 == 0) { if (x_49 == 0) { -x_5 = x_31; -x_6 = x_30; -x_7 = x_46; +x_5 = x_46; +x_6 = x_31; +x_7 = x_30; x_8 = lean_box(0); goto block_20; } @@ -966,9 +836,9 @@ else size_t x_52; lean_object* x_53; x_52 = lean_usize_of_nat(x_48); x_53 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_IR_compile_spec__1(x_46, x_34, x_52, x_50, x_30, x_31); -x_21 = x_31; -x_22 = x_30; -x_23 = x_46; +x_21 = x_46; +x_22 = x_31; +x_23 = x_30; x_24 = x_53; goto block_28; } @@ -978,9 +848,9 @@ else size_t x_54; lean_object* x_55; x_54 = lean_usize_of_nat(x_48); x_55 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_IR_compile_spec__1(x_46, x_34, x_54, x_50, x_30, x_31); -x_21 = x_31; -x_22 = x_30; -x_23 = x_46; +x_21 = x_46; +x_22 = x_31; +x_23 = x_30; x_24 = x_55; goto block_28; } @@ -1126,7 +996,6 @@ lean_object* initialize_Lean_Compiler_IR_Basic(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_Format(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_CompilerM(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_PushProj(uint8_t builtin); -lean_object* initialize_Lean_Compiler_IR_SimpCase(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_NormIds(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_Checker(uint8_t builtin); lean_object* initialize_Lean_Compiler_IR_Borrow(uint8_t builtin); @@ -1163,9 +1032,6 @@ lean_dec_ref(res); res = initialize_Lean_Compiler_IR_PushProj(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Compiler_IR_SimpCase(builtin); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Compiler_IR_NormIds(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -1228,8 +1094,6 @@ l_Lean_IR_compile___closed__17 = _init_l_Lean_IR_compile___closed__17(); lean_mark_persistent(l_Lean_IR_compile___closed__17); l_Lean_IR_compile___closed__20 = _init_l_Lean_IR_compile___closed__20(); lean_mark_persistent(l_Lean_IR_compile___closed__20); -l_Lean_IR_compile___closed__23 = _init_l_Lean_IR_compile___closed__23(); -lean_mark_persistent(l_Lean_IR_compile___closed__23); if (builtin) {res = l___private_Lean_Compiler_IR_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_640659120____hygCtx___hyg_2_(); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Compiler/IR/SimpCase.c b/stage0/stdlib/Lean/Compiler/IR/SimpCase.c index a2367704fe..8363bd3b87 100644 --- a/stage0/stdlib/Lean/Compiler/IR/SimpCase.c +++ b/stage0/stdlib/Lean/Compiler/IR/SimpCase.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.IR.SimpCase -// Imports: public import Lean.Compiler.IR.Format import Init.Data.Range.Polymorphic.Iterators import Init.Omega +// Imports: public import Lean.Compiler.IR.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -28,115 +28,6 @@ lean_object* l_Lean_IR_Alt_body(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_ensureHasDefault(lean_object*); -lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); -uint8_t l_Lean_IR_FnBody_beq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs___boxed(lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0; -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable___boxed(lean_object*); -lean_object* lean_array_fget(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_usize_dec_lt(size_t, size_t); -lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_IR_FnBody_simpCase(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1(size_t, size_t, lean_object*); -lean_object* l_Lean_IR_FnBody_flatten(lean_object*); -size_t lean_array_size(lean_object*); -lean_object* l_Lean_IR_reshape(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_IR_Decl_updateBody_x21(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_IR_Decl_simpCase(lean_object*); -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__0_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "compiler"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__0_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__0_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__1_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "ir"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__1_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__1_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__2_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "simp_case"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__2_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__2_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__0_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(25, 100, 103, 244, 164, 70, 204, 201)}}; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value_aux_0),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__1_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(167, 96, 118, 160, 52, 15, 195, 103)}}; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value_aux_1),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__2_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(215, 214, 132, 86, 3, 63, 72, 0)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__4_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "_private"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__4_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__4_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__5_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__4_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(103, 214, 75, 80, 34, 198, 193, 153)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__5_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__5_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__7_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__5_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(90, 18, 126, 130, 18, 214, 172, 143)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__7_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__7_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__8_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Compiler"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__8_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__8_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__9_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__7_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__8_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(72, 245, 227, 28, 172, 102, 215, 20)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__9_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__9_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "IR"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__11_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__9_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(15, 1, 131, 81, 163, 33, 163, 70)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__11_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__11_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__12_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "SimpCase"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__12_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__12_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__13_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__11_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__12_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(242, 94, 20, 26, 6, 163, 140, 237)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__13_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__13_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__14_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 2}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__13_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)(((size_t)(0) << 1) | 1)),LEAN_SCALAR_PTR_LITERAL(243, 125, 23, 148, 125, 255, 218, 61)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__14_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__14_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__15_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__14_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(222, 28, 112, 7, 236, 64, 46, 238)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__15_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__15_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__16_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__15_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(105, 232, 212, 80, 136, 128, 48, 102)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__16_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__16_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__17_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "initFn"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__17_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__17_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__18_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__16_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__17_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(240, 221, 255, 83, 61, 191, 145, 96)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__18_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__18_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__19_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "_@"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__19_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__19_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__20_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__18_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__19_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(241, 98, 118, 25, 89, 204, 71, 221)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__20_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__20_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__21_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__20_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__6_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(180, 146, 158, 148, 210, 149, 37, 119)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__21_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__21_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__22_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__21_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__8_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(62, 159, 28, 142, 168, 184, 121, 63)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__22_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__22_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__23_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__22_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__10_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(201, 160, 87, 139, 59, 113, 177, 83)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__23_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__23_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static const lean_ctor_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__24_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__23_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__12_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(220, 65, 198, 79, 87, 168, 162, 99)}}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__24_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__24_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__26_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "_hygCtx"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__26_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__26_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -static const lean_string_object l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__28_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "_hyg"}; -static const lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__28_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__28_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2__value; -static lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -static lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_IR_ensureHasDefault_spec__0(lean_object* x_1, size_t x_2, size_t x_3) { _start: { @@ -241,951 +132,16 @@ return x_1; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -uint8_t x_6; -x_6 = lean_nat_dec_lt(x_4, x_1); -if (x_6 == 0) -{ -lean_dec(x_4); -lean_dec(x_3); -return x_5; -} -else -{ -lean_object* x_7; lean_object* x_8; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_7 = lean_unsigned_to_nat(1u); -x_12 = lean_array_fget_borrowed(x_2, x_4); -x_13 = l_Lean_IR_Alt_body(x_12); -lean_inc(x_3); -x_14 = l_Lean_IR_FnBody_beq(x_13, x_3); -if (x_14 == 0) -{ -x_8 = x_5; -goto block_11; -} -else -{ -lean_object* x_15; -x_15 = lean_nat_add(x_5, x_7); -lean_dec(x_5); -x_8 = x_15; -goto block_11; -} -block_11: -{ -lean_object* x_9; -x_9 = lean_nat_add(x_4, x_7); -lean_dec(x_4); -x_4 = x_9; -x_5 = x_8; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg(x_1, x_2, x_3, x_4, x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(lean_object* x_1, lean_object* x_2) { -_start: -{ -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; -x_3 = l_Lean_IR_instInhabitedAlt_default__1; -x_4 = lean_unsigned_to_nat(1u); -x_5 = lean_nat_add(x_2, x_4); -x_6 = lean_array_get_size(x_1); -x_7 = lean_array_get_borrowed(x_3, x_1, x_2); -x_8 = l_Lean_IR_Alt_body(x_7); -x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg(x_6, x_1, x_8, x_5, x_4); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(x_1, x_2); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0(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) { -_start: -{ -lean_object* x_9; -x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___redArg(x_1, x_2, x_3, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_10; -x_10 = lean_nat_dec_lt(x_3, x_1); -if (x_10 == 0) -{ -lean_dec(x_3); -return x_4; -} -else -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_4); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_12 = lean_ctor_get(x_4, 0); -x_13 = lean_ctor_get(x_4, 1); -x_14 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(x_2, x_3); -x_15 = lean_nat_dec_lt(x_12, x_14); -if (x_15 == 0) -{ -lean_dec(x_14); -x_5 = x_4; -goto block_9; -} -else -{ -lean_object* x_16; -lean_dec(x_13); -lean_dec(x_12); -x_16 = lean_array_fget_borrowed(x_2, x_3); -lean_inc(x_16); -lean_ctor_set(x_4, 1, x_16); -lean_ctor_set(x_4, 0, x_14); -x_5 = x_4; -goto block_9; -} -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_4, 0); -x_18 = lean_ctor_get(x_4, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_4); -x_19 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(x_2, x_3); -x_20 = lean_nat_dec_lt(x_17, x_19); -if (x_20 == 0) -{ -lean_object* x_21; -lean_dec(x_19); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_17); -lean_ctor_set(x_21, 1, x_18); -x_5 = x_21; -goto block_9; -} -else -{ -lean_object* x_22; lean_object* x_23; -lean_dec(x_18); -lean_dec(x_17); -x_22 = lean_array_fget_borrowed(x_2, x_3); -lean_inc(x_22); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_19); -lean_ctor_set(x_23, 1, x_22); -x_5 = x_23; -goto block_9; -} -} -} -block_9: -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_unsigned_to_nat(1u); -x_7 = lean_nat_add(x_3, x_6); -lean_dec(x_3); -x_3 = x_7; -x_4 = x_5; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg(x_1, x_2, x_3, x_4); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs(lean_object* x_1) { -_start: -{ -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; uint8_t x_10; -x_2 = l_Lean_IR_instInhabitedAlt_default__1; -x_3 = lean_unsigned_to_nat(1u); -x_4 = lean_array_get_size(x_1); -x_5 = lean_unsigned_to_nat(0u); -x_6 = lean_array_get_borrowed(x_2, x_1, x_5); -x_7 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_getOccsOf(x_1, x_5); -lean_inc(x_6); -x_8 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_8, 0, x_7); -lean_ctor_set(x_8, 1, x_6); -x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg(x_4, x_1, x_3, x_8); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_ctor_get(x_9, 1); -lean_ctor_set(x_9, 1, x_11); -lean_ctor_set(x_9, 0, x_12); -return x_9; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_9, 0); -x_14 = lean_ctor_get(x_9, 1); -lean_inc(x_14); -lean_inc(x_13); -lean_dec(x_9); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs(x_1); -lean_dec_ref(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0(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) { -_start: -{ -lean_object* x_8; -x_8 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___redArg(x_1, x_2, x_5, x_6); -return x_8; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0___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) { -_start: -{ -lean_object* x_8; -x_8 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_8; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; uint8_t x_11; -x_11 = lean_usize_dec_eq(x_3, x_4); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_12 = lean_array_uget(x_2, x_3); -x_13 = l_Lean_IR_Alt_body(x_12); -x_14 = l_Lean_IR_Alt_body(x_1); -x_15 = l_Lean_IR_FnBody_beq(x_13, x_14); -if (x_15 == 0) -{ -lean_object* x_16; -x_16 = lean_array_push(x_5, x_12); -x_6 = x_16; -goto block_10; -} -else -{ -lean_dec(x_12); -x_6 = x_5; -goto block_10; -} -} -else -{ -return x_5; -} -block_10: -{ -size_t x_7; size_t x_8; -x_7 = 1; -x_8 = lean_usize_add(x_3, x_7); -x_3 = x_8; -x_5 = x_6; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -size_t x_6; size_t x_7; lean_object* x_8; -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_8 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0(x_1, x_2, x_6, x_7, x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_8; -} -} -static lean_object* _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_8; lean_object* x_9; uint8_t x_10; uint8_t x_26; -x_8 = lean_array_get_size(x_1); -x_9 = lean_unsigned_to_nat(1u); -x_26 = lean_nat_dec_le(x_8, x_9); -if (x_26 == 0) -{ -lean_object* x_27; uint8_t x_28; -x_27 = lean_unsigned_to_nat(0u); -x_28 = lean_nat_dec_lt(x_27, x_8); -if (x_28 == 0) -{ -x_10 = x_26; -goto block_25; -} -else -{ -if (x_28 == 0) -{ -x_10 = x_26; -goto block_25; -} -else -{ -size_t x_29; size_t x_30; uint8_t x_31; -x_29 = 0; -x_30 = lean_usize_of_nat(x_8); -x_31 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Lean_IR_ensureHasDefault_spec__0(x_1, x_29, x_30); -x_10 = x_31; -goto block_25; -} -} -} -else -{ -x_10 = x_26; -goto block_25; -} -block_7: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = l_Lean_IR_Alt_body(x_2); -lean_dec_ref(x_2); -x_5 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_5, 0, x_4); -x_6 = lean_array_push(x_3, x_5); -return x_6; -} -block_25: -{ -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_11 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_maxOccs(x_1); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec_ref(x_11); -x_14 = lean_nat_dec_eq(x_13, x_9); -lean_dec(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_unsigned_to_nat(0u); -x_16 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0; -x_17 = lean_nat_dec_lt(x_15, x_8); -if (x_17 == 0) -{ -x_2 = x_12; -x_3 = x_16; -goto block_7; -} -else -{ -uint8_t x_18; -x_18 = lean_nat_dec_le(x_8, x_8); -if (x_18 == 0) -{ -if (x_17 == 0) -{ -x_2 = x_12; -x_3 = x_16; -goto block_7; -} -else -{ -size_t x_19; size_t x_20; lean_object* x_21; -x_19 = 0; -x_20 = lean_usize_of_nat(x_8); -x_21 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0(x_12, x_1, x_19, x_20, x_16); -x_2 = x_12; -x_3 = x_21; -goto block_7; -} -} -else -{ -size_t x_22; size_t x_23; lean_object* x_24; -x_22 = 0; -x_23 = lean_usize_of_nat(x_8); -x_24 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault_spec__0(x_12, x_1, x_22, x_23, x_16); -x_2 = x_12; -x_3 = x_24; -goto block_7; -} -} -} -else -{ -lean_dec(x_12); -lean_inc_ref(x_1); -return x_1; -} -} -else -{ -lean_inc_ref(x_1); -return x_1; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault(x_1); -lean_dec_ref(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_10; -x_10 = lean_usize_dec_eq(x_2, x_3); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_11 = lean_array_uget(x_1, x_2); -x_12 = l_Lean_IR_Alt_body(x_11); -x_13 = lean_box(12); -x_14 = l_Lean_IR_FnBody_beq(x_12, x_13); -if (x_14 == 0) -{ -lean_object* x_15; -x_15 = lean_array_push(x_4, x_11); -x_5 = x_15; -goto block_9; -} -else -{ -lean_dec(x_11); -x_5 = x_4; -goto block_9; -} -} -else -{ -return x_4; -} -block_9: -{ -size_t x_6; size_t x_7; -x_6 = 1; -x_7 = lean_usize_add(x_2, x_6); -x_2 = x_7; -x_4 = x_5; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0(x_1, x_5, x_6, x_4); -lean_dec_ref(x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_2 = lean_unsigned_to_nat(0u); -x_3 = lean_array_get_size(x_1); -x_4 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0; -x_5 = lean_nat_dec_lt(x_2, x_3); -if (x_5 == 0) -{ -return x_4; -} -else -{ -uint8_t x_6; -x_6 = lean_nat_dec_le(x_3, x_3); -if (x_6 == 0) -{ -if (x_5 == 0) -{ -return x_4; -} -else -{ -size_t x_7; size_t x_8; lean_object* x_9; -x_7 = 0; -x_8 = lean_usize_of_nat(x_3); -x_9 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0(x_1, x_7, x_8, x_4); -return x_9; -} -} -else -{ -size_t x_10; size_t x_11; lean_object* x_12; -x_10 = 0; -x_11 = lean_usize_of_nat(x_3); -x_12 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable_spec__0(x_1, x_10, x_11, x_4); -return x_12; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable(x_1); -lean_dec_ref(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_5 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_filterUnreachable(x_4); -x_6 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault(x_5); -lean_dec_ref(x_5); -x_7 = lean_array_get_size(x_6); -x_8 = lean_unsigned_to_nat(0u); -x_9 = lean_nat_dec_eq(x_7, x_8); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_dec_eq(x_7, x_10); -if (x_11 == 0) -{ -lean_object* x_12; -x_12 = lean_alloc_ctor(9, 4, 0); -lean_ctor_set(x_12, 0, x_1); -lean_ctor_set(x_12, 1, x_2); -lean_ctor_set(x_12, 2, x_3); -lean_ctor_set(x_12, 3, x_6); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_13 = lean_array_fget(x_6, x_8); -lean_dec_ref(x_6); -x_14 = l_Lean_IR_Alt_body(x_13); -lean_dec(x_13); -return x_14; -} -} -else -{ -lean_object* x_15; -lean_dec_ref(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_15 = lean_box(12); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase(x_1, x_2, x_3, x_4); -lean_dec_ref(x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -if (lean_obj_tag(x_5) == 1) -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_5); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_5, 2); -x_16 = l_Lean_IR_FnBody_simpCase(x_15); -lean_ctor_set(x_5, 2, x_16); -x_8 = x_5; -goto block_13; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_17 = lean_ctor_get(x_5, 0); -x_18 = lean_ctor_get(x_5, 1); -x_19 = lean_ctor_get(x_5, 2); -x_20 = lean_ctor_get(x_5, 3); -lean_inc(x_20); -lean_inc(x_19); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_5); -x_21 = l_Lean_IR_FnBody_simpCase(x_19); -x_22 = lean_alloc_ctor(1, 4, 0); -lean_ctor_set(x_22, 0, x_17); -lean_ctor_set(x_22, 1, x_18); -lean_ctor_set(x_22, 2, x_21); -lean_ctor_set(x_22, 3, x_20); -x_8 = x_22; -goto block_13; -} -} -else -{ -x_8 = x_5; -goto block_13; -} -block_13: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_7, x_2, x_8); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -if (lean_obj_tag(x_5) == 0) -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_5); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_5, 1); -x_16 = l_Lean_IR_FnBody_simpCase(x_15); -lean_ctor_set(x_5, 1, x_16); -x_8 = x_5; -goto block_13; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_5, 0); -x_18 = lean_ctor_get(x_5, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_5); -x_19 = l_Lean_IR_FnBody_simpCase(x_18); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_17); -lean_ctor_set(x_20, 1, x_19); -x_8 = x_20; -goto block_13; -} -} -else -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_5); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_5, 0); -x_23 = l_Lean_IR_FnBody_simpCase(x_22); -lean_ctor_set(x_5, 0, x_23); -x_8 = x_5; -goto block_13; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_5, 0); -lean_inc(x_24); -lean_dec(x_5); -x_25 = l_Lean_IR_FnBody_simpCase(x_24); -x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_25); -x_8 = x_26; -goto block_13; -} -} -block_13: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_7, x_2, x_8); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_IR_FnBody_simpCase(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; -x_2 = l_Lean_IR_FnBody_flatten(x_1); -x_3 = lean_ctor_get(x_2, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_2, 1); -lean_inc(x_4); -lean_dec_ref(x_2); -x_5 = lean_array_size(x_3); -x_6 = 0; -x_7 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0(x_5, x_6, x_3); -if (lean_obj_tag(x_4) == 9) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; size_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_8 = lean_ctor_get(x_4, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_4, 1); -lean_inc(x_9); -x_10 = lean_ctor_get(x_4, 2); -lean_inc(x_10); -x_11 = lean_ctor_get(x_4, 3); -lean_inc_ref(x_11); -lean_dec_ref(x_4); -x_12 = lean_array_size(x_11); -x_13 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1(x_12, x_6, x_11); -x_14 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_mkSimpCase(x_8, x_9, x_10, x_13); -lean_dec_ref(x_13); -x_15 = l_Lean_IR_reshape(x_7, x_14); -return x_15; -} -else -{ -lean_object* x_16; -x_16 = l_Lean_IR_reshape(x_7, x_4); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__0(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_IR_FnBody_simpCase_spec__1(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_IR_Decl_simpCase(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = lean_ctor_get(x_1, 3); -lean_inc(x_2); -x_3 = l_Lean_IR_FnBody_simpCase(x_2); -x_4 = l_Lean_IR_Decl_updateBody_x21(x_1, x_3); -return x_4; -} -else -{ -return x_1; -} -} -} -static lean_object* _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(2342465999u); -x_2 = ((lean_object*)(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__24_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_)); -x_3 = l_Lean_Name_num___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = ((lean_object*)(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__26_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_)); -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = ((lean_object*)(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__28_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_)); -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -x_3 = l_Lean_Name_str___override(x_2, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(2u); -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -x_3 = l_Lean_Name_num___override(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_() { -_start: -{ -lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_2 = ((lean_object*)(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__3_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_)); -x_3 = 1; -x_4 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_; -x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2____boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -return x_2; -} -} -lean_object* initialize_Lean_Compiler_IR_Format(uint8_t builtin); -lean_object* initialize_Init_Data_Range_Polymorphic_Iterators(uint8_t builtin); -lean_object* initialize_Init_Omega(uint8_t builtin); +lean_object* initialize_Lean_Compiler_IR_Basic(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Compiler_IR_SimpCase(uint8_t builtin) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Lean_Compiler_IR_Format(builtin); +res = initialize_Lean_Compiler_IR_Basic(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Init_Data_Range_Polymorphic_Iterators(builtin); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Omega(builtin); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0 = _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0(); -lean_mark_persistent(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_addDefault___closed__0); -l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -lean_mark_persistent(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__25_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_); -l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -lean_mark_persistent(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__27_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_); -l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -lean_mark_persistent(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__29_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_); -l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_ = _init_l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -lean_mark_persistent(l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn___closed__30_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_); -if (builtin) {res = l___private_Lean_Compiler_IR_SimpCase_0__Lean_IR_initFn_00___x40_Lean_Compiler_IR_SimpCase_2342465999____hygCtx___hyg_2_(); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -}return lean_io_result_mk_ok(lean_box(0)); +return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus } diff --git a/stage0/stdlib/Lean/Compiler/LCNF/AlphaEqv.c b/stage0/stdlib/Lean/Compiler/LCNF/AlphaEqv.c index d1977ac42a..0cf66533a2 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/AlphaEqv.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/AlphaEqv.c @@ -51,8 +51,9 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns uint8_t lean_level_eq(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_beq___at___00Lean_Compiler_LCNF_AlphaEqv_eqvLetValue_spec__0(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_beq___at___00Lean_Compiler_LCNF_AlphaEqv_eqvLetValue_spec__0___boxed(lean_object*, lean_object*); -uint8_t l_Lean_Compiler_LCNF_instBEqLitValue_beq(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +uint8_t l_Lean_Compiler_LCNF_instBEqLitValue_beq(lean_object*, lean_object*); +uint8_t l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Compiler_LCNF_AlphaEqv_eqvLetValue(uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_AlphaEqv_eqvLetValue___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_FVarIdSet_insert_spec__1___redArg(lean_object*, lean_object*, lean_object*); @@ -987,193 +988,527 @@ return x_4; LEAN_EXPORT uint8_t l_Lean_Compiler_LCNF_AlphaEqv_eqvLetValue(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; switch (lean_obj_tag(x_2)) { case 0: { if (lean_obj_tag(x_3) == 0) { -lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = lean_ctor_get(x_2, 0); -x_6 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_6); +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_ctor_get(x_2, 0); +x_22 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_22); lean_dec_ref(x_3); -x_7 = l_Lean_Compiler_LCNF_instBEqLitValue_beq(x_5, x_6); -lean_dec_ref(x_6); -return x_7; +x_23 = l_Lean_Compiler_LCNF_instBEqLitValue_beq(x_21, x_22); +lean_dec_ref(x_22); +return x_23; } else { -uint8_t x_8; +uint8_t x_24; lean_dec(x_3); -x_8 = 0; -return x_8; +x_24 = 0; +return x_24; } } case 1: { if (lean_obj_tag(x_3) == 1) { -uint8_t x_9; -x_9 = 1; -return x_9; +uint8_t x_25; +x_25 = 1; +return x_25; } else { -uint8_t x_10; +uint8_t x_26; lean_dec(x_3); -x_10 = 0; -return x_10; +x_26 = 0; +return x_26; } } case 2: { if (lean_obj_tag(x_3) == 2) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t x_20; -x_11 = lean_ctor_get(x_2, 0); -x_12 = lean_ctor_get(x_2, 1); -x_13 = lean_ctor_get(x_2, 2); -x_14 = lean_ctor_get(x_3, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_3, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_3, 2); -lean_inc(x_16); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; uint8_t x_36; +x_27 = lean_ctor_get(x_2, 0); +x_28 = lean_ctor_get(x_2, 1); +x_29 = lean_ctor_get(x_2, 2); +x_30 = lean_ctor_get(x_3, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_3, 1); +lean_inc(x_31); +x_32 = lean_ctor_get(x_3, 2); +lean_inc(x_32); lean_dec_ref(x_3); -x_20 = lean_name_eq(x_11, x_14); -lean_dec(x_14); -if (x_20 == 0) +x_36 = lean_name_eq(x_27, x_30); +lean_dec(x_30); +if (x_36 == 0) { -lean_dec(x_15); -x_17 = x_20; -goto block_19; +lean_dec(x_31); +x_33 = x_36; +goto block_35; } else { -uint8_t x_21; -x_21 = lean_nat_dec_eq(x_12, x_15); -lean_dec(x_15); -x_17 = x_21; -goto block_19; +uint8_t x_37; +x_37 = lean_nat_dec_eq(x_28, x_31); +lean_dec(x_31); +x_33 = x_37; +goto block_35; } -block_19: +block_35: { -if (x_17 == 0) +if (x_33 == 0) { -lean_dec(x_16); -return x_17; +lean_dec(x_32); +return x_33; } else { -uint8_t x_18; -x_18 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_13, x_16, x_4); -lean_dec(x_16); -return x_18; +uint8_t x_34; +x_34 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_29, x_32, x_4); +lean_dec(x_32); +return x_34; } } } else { -uint8_t x_22; +uint8_t x_38; lean_dec(x_3); -x_22 = 0; -return x_22; +x_38 = 0; +return x_38; } } case 3: { if (lean_obj_tag(x_3) == 3) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; uint8_t x_32; -x_23 = lean_ctor_get(x_2, 0); -x_24 = lean_ctor_get(x_2, 1); -x_25 = lean_ctor_get(x_2, 2); -x_26 = lean_ctor_get(x_3, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_3, 1); -lean_inc(x_27); -x_28 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_28); +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; uint8_t x_48; +x_39 = lean_ctor_get(x_2, 0); +x_40 = lean_ctor_get(x_2, 1); +x_41 = lean_ctor_get(x_2, 2); +x_42 = lean_ctor_get(x_3, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_3, 1); +lean_inc(x_43); +x_44 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_44); lean_dec_ref(x_3); -x_32 = lean_name_eq(x_23, x_26); -lean_dec(x_26); -if (x_32 == 0) +x_48 = lean_name_eq(x_39, x_42); +lean_dec(x_42); +if (x_48 == 0) { -lean_dec(x_27); -x_29 = x_32; -goto block_31; +lean_dec(x_43); +x_45 = x_48; +goto block_47; } else { -uint8_t x_33; -x_33 = l_List_beq___at___00Lean_Compiler_LCNF_AlphaEqv_eqvLetValue_spec__0(x_24, x_27); -lean_dec(x_27); -x_29 = x_33; -goto block_31; +uint8_t x_49; +x_49 = l_List_beq___at___00Lean_Compiler_LCNF_AlphaEqv_eqvLetValue_spec__0(x_40, x_43); +lean_dec(x_43); +x_45 = x_49; +goto block_47; } -block_31: +block_47: { -if (x_29 == 0) +if (x_45 == 0) { -lean_dec_ref(x_28); -return x_29; +lean_dec_ref(x_44); +return x_45; } else { -uint8_t x_30; -x_30 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_25, x_28, x_4); -return x_30; +uint8_t x_46; +x_46 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_41, x_44, x_4); +return x_46; } } } else { -uint8_t x_34; +uint8_t x_50; lean_dec(x_3); -x_34 = 0; -return x_34; +x_50 = 0; +return x_50; } } case 4: { if (lean_obj_tag(x_3) == 4) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_35 = lean_ctor_get(x_2, 0); -x_36 = lean_ctor_get(x_2, 1); -x_37 = lean_ctor_get(x_3, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_38); +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_51 = lean_ctor_get(x_2, 0); +x_52 = lean_ctor_get(x_2, 1); +x_53 = lean_ctor_get(x_3, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_54); lean_dec_ref(x_3); -x_39 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_35, x_37, x_4); -lean_dec(x_37); -if (x_39 == 0) +x_55 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_51, x_53, x_4); +lean_dec(x_53); +if (x_55 == 0) { -lean_dec_ref(x_38); -return x_39; +lean_dec_ref(x_54); +return x_55; } else { -uint8_t x_40; -x_40 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_36, x_38, x_4); -return x_40; +uint8_t x_56; +x_56 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_52, x_54, x_4); +return x_56; } } else { -uint8_t x_41; +uint8_t x_57; lean_dec(x_3); -x_41 = 0; -return x_41; +x_57 = 0; +return x_57; +} +} +case 5: +{ +if (lean_obj_tag(x_3) == 5) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_2, 0); +x_59 = lean_ctor_get(x_2, 1); +x_60 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_60); +x_61 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_61); +lean_dec_ref(x_3); +x_62 = l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(x_58, x_60); +lean_dec_ref(x_60); +if (x_62 == 0) +{ +lean_dec_ref(x_61); +return x_62; +} +else +{ +uint8_t x_63; +x_63 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_59, x_61, x_4); +return x_63; +} +} +else +{ +uint8_t x_64; +lean_dec(x_3); +x_64 = 0; +return x_64; +} +} +case 6: +{ +if (lean_obj_tag(x_3) == 6) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_2, 0); +x_66 = lean_ctor_get(x_2, 1); +x_67 = lean_ctor_get(x_3, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_3, 1); +lean_inc(x_68); +lean_dec_ref(x_3); +x_5 = x_65; +x_6 = x_66; +x_7 = x_67; +x_8 = x_68; +x_9 = x_4; +goto block_12; +} +else +{ +uint8_t x_69; +lean_dec(x_3); +x_69 = 0; +return x_69; +} +} +case 7: +{ +if (lean_obj_tag(x_3) == 7) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_70 = lean_ctor_get(x_2, 0); +x_71 = lean_ctor_get(x_2, 1); +x_72 = lean_ctor_get(x_3, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_3, 1); +lean_inc(x_73); +lean_dec_ref(x_3); +x_5 = x_70; +x_6 = x_71; +x_7 = x_72; +x_8 = x_73; +x_9 = x_4; +goto block_12; +} +else +{ +uint8_t x_74; +lean_dec(x_3); +x_74 = 0; +return x_74; +} +} +case 8: +{ +if (lean_obj_tag(x_3) == 8) +{ +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; uint8_t x_84; +x_75 = lean_ctor_get(x_2, 0); +x_76 = lean_ctor_get(x_2, 1); +x_77 = lean_ctor_get(x_2, 2); +x_78 = lean_ctor_get(x_3, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_3, 1); +lean_inc(x_79); +x_80 = lean_ctor_get(x_3, 2); +lean_inc(x_80); +lean_dec_ref(x_3); +x_84 = lean_nat_dec_eq(x_75, x_78); +lean_dec(x_78); +if (x_84 == 0) +{ +lean_dec(x_79); +x_81 = x_84; +goto block_83; +} +else +{ +uint8_t x_85; +x_85 = lean_nat_dec_eq(x_76, x_79); +lean_dec(x_79); +x_81 = x_85; +goto block_83; +} +block_83: +{ +if (x_81 == 0) +{ +lean_dec(x_80); +return x_81; +} +else +{ +uint8_t x_82; +x_82 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_77, x_80, x_4); +lean_dec(x_80); +return x_82; +} +} +} +else +{ +uint8_t x_86; +lean_dec(x_3); +x_86 = 0; +return x_86; +} +} +case 9: +{ +if (lean_obj_tag(x_3) == 9) +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_87 = lean_ctor_get(x_2, 0); +x_88 = lean_ctor_get(x_2, 1); +x_89 = lean_ctor_get(x_3, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_90); +lean_dec_ref(x_3); +x_13 = x_87; +x_14 = x_88; +x_15 = x_89; +x_16 = x_90; +x_17 = x_4; +goto block_20; +} +else +{ +uint8_t x_91; +lean_dec(x_3); +x_91 = 0; +return x_91; +} +} +case 10: +{ +if (lean_obj_tag(x_3) == 10) +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_92 = lean_ctor_get(x_2, 0); +x_93 = lean_ctor_get(x_2, 1); +x_94 = lean_ctor_get(x_3, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_95); +lean_dec_ref(x_3); +x_13 = x_92; +x_14 = x_93; +x_15 = x_94; +x_16 = x_95; +x_17 = x_4; +goto block_20; +} +else +{ +uint8_t x_96; +lean_dec(x_3); +x_96 = 0; +return x_96; +} +} +case 11: +{ +if (lean_obj_tag(x_3) == 11) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_97 = lean_ctor_get(x_2, 0); +x_98 = lean_ctor_get(x_2, 1); +x_99 = lean_ctor_get(x_3, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_3, 1); +lean_inc(x_100); +lean_dec_ref(x_3); +x_5 = x_97; +x_6 = x_98; +x_7 = x_99; +x_8 = x_100; +x_9 = x_4; +goto block_12; +} +else +{ +uint8_t x_101; +lean_dec(x_3); +x_101 = 0; +return x_101; } } default: { -uint8_t x_42; +if (lean_obj_tag(x_3) == 12) +{ +lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; lean_object* x_109; uint8_t x_110; uint8_t x_114; +x_102 = lean_ctor_get(x_2, 0); +x_103 = lean_ctor_get(x_2, 1); +x_104 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); +x_105 = lean_ctor_get(x_2, 2); +x_106 = lean_ctor_get(x_3, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_107); +x_108 = lean_ctor_get_uint8(x_3, sizeof(void*)*3); +x_109 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_109); +lean_dec_ref(x_3); +x_114 = l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(x_103, x_107); +lean_dec_ref(x_107); +if (x_114 == 0) +{ +x_110 = x_114; +goto block_113; +} +else +{ +if (x_104 == 0) +{ +if (x_108 == 0) +{ +x_110 = x_114; +goto block_113; +} +else +{ +lean_dec_ref(x_109); +lean_dec(x_106); +return x_104; +} +} +else +{ +x_110 = x_108; +goto block_113; +} +} +block_113: +{ +if (x_110 == 0) +{ +lean_dec_ref(x_109); +lean_dec(x_106); +return x_110; +} +else +{ +uint8_t x_111; +x_111 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_102, x_106, x_4); +lean_dec(x_106); +if (x_111 == 0) +{ +lean_dec_ref(x_109); +return x_111; +} +else +{ +uint8_t x_112; +x_112 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_105, x_109, x_4); +return x_112; +} +} +} +} +else +{ +uint8_t x_115; lean_dec(x_3); -x_42 = 0; -return x_42; +x_115 = 0; +return x_115; +} +} +} +block_12: +{ +uint8_t x_10; +x_10 = lean_nat_dec_eq(x_5, x_7); +lean_dec(x_7); +if (x_10 == 0) +{ +lean_dec(x_8); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_6, x_8, x_9); +lean_dec(x_8); +return x_11; +} +} +block_20: +{ +uint8_t x_18; +x_18 = lean_name_eq(x_13, x_15); +lean_dec(x_15); +if (x_18 == 0) +{ +lean_dec_ref(x_16); +return x_18; +} +else +{ +uint8_t x_19; +x_19 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_14, x_16, x_17); +return x_19; } } } @@ -1356,7 +1691,8 @@ return x_8; LEAN_EXPORT uint8_t l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Compiler_LCNF_AlphaEqv_sortAlts_spec__0___redArg___lam__0(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: { -if (lean_obj_tag(x_2) == 0) +switch (lean_obj_tag(x_2)) { +case 0: { switch (lean_obj_tag(x_3)) { case 2: @@ -1379,11 +1715,37 @@ return x_7; } } } -else +case 1: { -uint8_t x_8; -x_8 = 0; -return x_8; +switch (lean_obj_tag(x_3)) { +case 2: +{ +return x_1; +} +case 1: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_8 = lean_ctor_get(x_2, 0); +x_9 = lean_ctor_get(x_3, 0); +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_9, 0); +x_12 = l_Lean_Name_lt(x_10, x_11); +return x_12; +} +default: +{ +uint8_t x_13; +x_13 = 0; +return x_13; +} +} +} +default: +{ +uint8_t x_14; +x_14 = 0; +return x_14; +} } } } @@ -1705,78 +2067,123 @@ lean_dec(x_6); goto block_36; } } -case 2: +case 1: { lean_dec(x_14); -if (lean_obj_tag(x_26) == 2) +if (lean_obj_tag(x_26) == 1) { -lean_object* x_53; uint8_t x_54; +lean_object* x_53; lean_object* x_54; uint8_t x_55; x_53 = lean_ctor_get(x_25, 0); lean_inc_ref(x_53); +x_54 = lean_ctor_get(x_25, 1); +lean_inc_ref(x_54); lean_dec_ref(x_25); -x_54 = !lean_is_exclusive(x_26); -if (x_54 == 0) +x_55 = !lean_is_exclusive(x_26); +if (x_55 == 0) { -lean_object* x_55; uint8_t x_56; -x_55 = lean_ctor_get(x_26, 0); -lean_inc(x_6); -x_56 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_53, x_55, x_6); -if (x_56 == 0) +lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_56 = lean_ctor_get(x_26, 0); +x_57 = lean_ctor_get(x_26, 1); +x_58 = l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(x_53, x_56); +lean_dec_ref(x_56); +lean_dec_ref(x_53); +if (x_58 == 0) { -lean_object* x_57; lean_object* x_58; +lean_object* x_59; lean_object* x_60; +lean_dec_ref(x_57); +lean_dec_ref(x_54); lean_dec(x_6); -x_57 = lean_box(x_56); -lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 0, x_57); -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_26); -lean_ctor_set(x_58, 1, x_13); -return x_58; +x_59 = lean_box(x_58); +x_60 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set_tag(x_26, 0); +lean_ctor_set(x_26, 1, x_13); +lean_ctor_set(x_26, 0, x_60); +return x_26; } else { -lean_object* x_59; -lean_free_object(x_26); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_18); -lean_ctor_set(x_59, 1, x_13); -x_7 = x_59; -goto block_11; -} -} -else -{ -lean_object* x_60; uint8_t x_61; -x_60 = lean_ctor_get(x_26, 0); -lean_inc(x_60); -lean_dec(x_26); +uint8_t x_61; lean_inc(x_6); -x_61 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_53, x_60, x_6); +x_61 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_54, x_57, x_6); if (x_61 == 0) { -lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_object* x_62; lean_object* x_63; lean_dec(x_6); x_62 = lean_box(x_61); x_63 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_63, 0, x_62); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_13); -return x_64; +lean_ctor_set_tag(x_26, 0); +lean_ctor_set(x_26, 1, x_13); +lean_ctor_set(x_26, 0, x_63); +return x_26; } else { -lean_object* x_65; -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_18); -lean_ctor_set(x_65, 1, x_13); -x_7 = x_65; +lean_ctor_set_tag(x_26, 0); +lean_ctor_set(x_26, 1, x_13); +lean_ctor_set(x_26, 0, x_18); +x_7 = x_26; goto block_11; } } } else { +lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_64 = lean_ctor_get(x_26, 0); +x_65 = lean_ctor_get(x_26, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_26); +x_66 = l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(x_53, x_64); +lean_dec_ref(x_64); +lean_dec_ref(x_53); +if (x_66 == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +lean_dec_ref(x_65); +lean_dec_ref(x_54); +lean_dec(x_6); +x_67 = lean_box(x_66); +x_68 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_68, 0, x_67); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_13); +return x_69; +} +else +{ +uint8_t x_70; +lean_inc(x_6); +x_70 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_54, x_65, x_6); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_6); +x_71 = lean_box(x_70); +x_72 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_72, 0, x_71); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_13); +return x_73; +} +else +{ +lean_object* x_74; +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_18); +lean_ctor_set(x_74, 1, x_13); +x_7 = x_74; +goto block_11; +} +} +} +} +else +{ lean_dec(x_26); lean_dec_ref(x_25); lean_dec(x_6); @@ -1785,13 +2192,83 @@ goto block_36; } default: { -lean_dec(x_26); -lean_dec(x_25); lean_dec(x_14); +if (lean_obj_tag(x_26) == 2) +{ +lean_object* x_75; uint8_t x_76; +x_75 = lean_ctor_get(x_25, 0); +lean_inc_ref(x_75); +lean_dec_ref(x_25); +x_76 = !lean_is_exclusive(x_26); +if (x_76 == 0) +{ +lean_object* x_77; uint8_t x_78; +x_77 = lean_ctor_get(x_26, 0); +lean_inc(x_6); +x_78 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_75, x_77, x_6); +if (x_78 == 0) +{ +lean_object* x_79; lean_object* x_80; +lean_dec(x_6); +x_79 = lean_box(x_78); +lean_ctor_set_tag(x_26, 1); +lean_ctor_set(x_26, 0, x_79); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_26); +lean_ctor_set(x_80, 1, x_13); +return x_80; +} +else +{ +lean_object* x_81; +lean_free_object(x_26); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_18); +lean_ctor_set(x_81, 1, x_13); +x_7 = x_81; +goto block_11; +} +} +else +{ +lean_object* x_82; uint8_t x_83; +x_82 = lean_ctor_get(x_26, 0); +lean_inc(x_82); +lean_dec(x_26); +lean_inc(x_6); +x_83 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_75, x_82, x_6); +if (x_83 == 0) +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_6); +x_84 = lean_box(x_83); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_13); +return x_86; +} +else +{ +lean_object* x_87; +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_18); +lean_ctor_set(x_87, 1, x_13); +x_7 = x_87; +goto block_11; +} +} +} +else +{ +lean_dec(x_26); +lean_dec_ref(x_25); lean_dec(x_6); goto block_36; } } +} block_33: { lean_object* x_30; lean_object* x_31; lean_object* x_32; @@ -1819,95 +2296,95 @@ return x_35; } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_dec(x_13); -x_66 = lean_array_uget(x_2, x_4); -x_67 = lean_array_fget(x_15, x_16); -x_68 = lean_unsigned_to_nat(1u); -x_69 = lean_nat_add(x_16, x_68); +x_88 = lean_array_uget(x_2, x_4); +x_89 = lean_array_fget(x_15, x_16); +x_90 = lean_unsigned_to_nat(1u); +x_91 = lean_nat_add(x_16, x_90); lean_dec(x_16); -x_70 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_70, 0, x_15); -lean_ctor_set(x_70, 1, x_69); -lean_ctor_set(x_70, 2, x_17); -switch (lean_obj_tag(x_66)) { +x_92 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_92, 0, x_15); +lean_ctor_set(x_92, 1, x_91); +lean_ctor_set(x_92, 2, x_17); +switch (lean_obj_tag(x_88)) { case 0: { -if (lean_obj_tag(x_67) == 0) +if (lean_obj_tag(x_89) == 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_66, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_66, 1); -lean_inc_ref(x_80); -x_81 = lean_ctor_get(x_66, 2); -lean_inc_ref(x_81); -lean_dec_ref(x_66); -x_82 = lean_ctor_get(x_67, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_67, 1); -lean_inc_ref(x_83); -x_84 = lean_ctor_get(x_67, 2); -lean_inc_ref(x_84); -lean_dec_ref(x_67); -x_85 = lean_name_eq(x_79, x_82); -lean_dec(x_82); -lean_dec(x_79); -if (x_85 == 0) +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +x_101 = lean_ctor_get(x_88, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_88, 1); +lean_inc_ref(x_102); +x_103 = lean_ctor_get(x_88, 2); +lean_inc_ref(x_103); +lean_dec_ref(x_88); +x_104 = lean_ctor_get(x_89, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_89, 1); +lean_inc_ref(x_105); +x_106 = lean_ctor_get(x_89, 2); +lean_inc_ref(x_106); +lean_dec_ref(x_89); +x_107 = lean_name_eq(x_101, x_104); +lean_dec(x_104); +lean_dec(x_101); +if (x_107 == 0) { -lean_object* x_86; lean_object* x_87; lean_object* x_88; -lean_dec_ref(x_84); -lean_dec_ref(x_83); -lean_dec_ref(x_81); -lean_dec_ref(x_80); +lean_object* x_108; lean_object* x_109; lean_object* x_110; +lean_dec_ref(x_106); +lean_dec_ref(x_105); +lean_dec_ref(x_103); +lean_dec_ref(x_102); lean_dec(x_14); lean_dec(x_6); -x_86 = lean_box(x_85); -x_87 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_87, 0, x_86); -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_70); -return x_88; +x_108 = lean_box(x_107); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_92); +return x_110; } else { -lean_object* x_89; lean_object* x_90; uint8_t x_91; -x_89 = lean_array_get_size(x_83); -x_90 = lean_array_get_size(x_80); -x_91 = lean_nat_dec_eq(x_89, x_90); -if (x_91 == 0) +lean_object* x_111; lean_object* x_112; uint8_t x_113; +x_111 = lean_array_get_size(x_105); +x_112 = lean_array_get_size(x_102); +x_113 = lean_nat_dec_eq(x_111, x_112); +if (x_113 == 0) { -lean_dec_ref(x_84); -lean_dec_ref(x_83); -lean_dec_ref(x_81); -lean_dec_ref(x_80); +lean_dec_ref(x_106); +lean_dec_ref(x_105); +lean_dec_ref(x_103); +lean_dec_ref(x_102); lean_dec(x_6); -x_71 = x_91; -goto block_75; +x_93 = x_113; +goto block_97; } else { -lean_object* x_92; uint8_t x_93; -x_92 = lean_unsigned_to_nat(0u); +lean_object* x_114; uint8_t x_115; +x_114 = lean_unsigned_to_nat(0u); lean_inc(x_6); -x_93 = l___private_Lean_Compiler_LCNF_AlphaEqv_0__Lean_Compiler_LCNF_AlphaEqv_withParams_go___at___00Lean_Compiler_LCNF_AlphaEqv_eqvAlts_spec__0___redArg(x_1, x_81, x_84, x_80, x_83, x_92, x_6); -lean_dec_ref(x_83); -lean_dec_ref(x_80); -if (x_93 == 0) +x_115 = l___private_Lean_Compiler_LCNF_AlphaEqv_0__Lean_Compiler_LCNF_AlphaEqv_withParams_go___at___00Lean_Compiler_LCNF_AlphaEqv_eqvAlts_spec__0___redArg(x_1, x_103, x_106, x_102, x_105, x_114, x_6); +lean_dec_ref(x_105); +lean_dec_ref(x_102); +if (x_115 == 0) { lean_dec(x_6); -x_71 = x_93; -goto block_75; +x_93 = x_115; +goto block_97; } else { -lean_object* x_94; +lean_object* x_116; lean_dec(x_14); -x_94 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_94, 0, x_18); -lean_ctor_set(x_94, 1, x_70); -x_7 = x_94; +x_116 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_116, 0, x_18); +lean_ctor_set(x_116, 1, x_92); +x_7 = x_116; goto block_11; } } @@ -1915,101 +2392,184 @@ goto block_11; } else { -lean_dec(x_67); -lean_dec_ref(x_66); +lean_dec(x_89); +lean_dec_ref(x_88); lean_dec(x_14); lean_dec(x_6); -goto block_78; +goto block_100; } } -case 2: +case 1: { lean_dec(x_14); -if (lean_obj_tag(x_67) == 2) +if (lean_obj_tag(x_89) == 1) { -lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; -x_95 = lean_ctor_get(x_66, 0); -lean_inc_ref(x_95); -lean_dec_ref(x_66); -x_96 = lean_ctor_get(x_67, 0); -lean_inc_ref(x_96); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - x_97 = x_67; +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_117 = lean_ctor_get(x_88, 0); +lean_inc_ref(x_117); +x_118 = lean_ctor_get(x_88, 1); +lean_inc_ref(x_118); +lean_dec_ref(x_88); +x_119 = lean_ctor_get(x_89, 0); +lean_inc_ref(x_119); +x_120 = lean_ctor_get(x_89, 1); +lean_inc_ref(x_120); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_121 = x_89; } else { - lean_dec_ref(x_67); - x_97 = lean_box(0); + lean_dec_ref(x_89); + x_121 = lean_box(0); } -lean_inc(x_6); -x_98 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_95, x_96, x_6); -if (x_98 == 0) +x_122 = l_Lean_Compiler_LCNF_instBEqCtorInfo_beq(x_117, x_119); +lean_dec_ref(x_119); +lean_dec_ref(x_117); +if (x_122 == 0) { -lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec_ref(x_120); +lean_dec_ref(x_118); lean_dec(x_6); -x_99 = lean_box(x_98); -if (lean_is_scalar(x_97)) { - x_100 = lean_alloc_ctor(1, 1, 0); +x_123 = lean_box(x_122); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_123); +if (lean_is_scalar(x_121)) { + x_125 = lean_alloc_ctor(0, 2, 0); } else { - x_100 = x_97; - lean_ctor_set_tag(x_100, 1); + x_125 = x_121; + lean_ctor_set_tag(x_125, 0); } -lean_ctor_set(x_100, 0, x_99); -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_70); -return x_101; +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_92); +return x_125; } else { -lean_object* x_102; -lean_dec(x_97); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_18); -lean_ctor_set(x_102, 1, x_70); -x_7 = x_102; +uint8_t x_126; +lean_inc(x_6); +x_126 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_118, x_120, x_6); +if (x_126 == 0) +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec(x_6); +x_127 = lean_box(x_126); +x_128 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_128, 0, x_127); +if (lean_is_scalar(x_121)) { + x_129 = lean_alloc_ctor(0, 2, 0); +} else { + x_129 = x_121; + lean_ctor_set_tag(x_129, 0); +} +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_92); +return x_129; +} +else +{ +lean_object* x_130; +if (lean_is_scalar(x_121)) { + x_130 = lean_alloc_ctor(0, 2, 0); +} else { + x_130 = x_121; + lean_ctor_set_tag(x_130, 0); +} +lean_ctor_set(x_130, 0, x_18); +lean_ctor_set(x_130, 1, x_92); +x_7 = x_130; goto block_11; } } +} else { -lean_dec(x_67); -lean_dec_ref(x_66); +lean_dec(x_89); +lean_dec_ref(x_88); lean_dec(x_6); -goto block_78; +goto block_100; } } default: { -lean_dec(x_67); -lean_dec(x_66); lean_dec(x_14); -lean_dec(x_6); -goto block_78; -} -} -block_75: +if (lean_obj_tag(x_89) == 2) { -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_box(x_71); -x_73 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_73, 0, x_72); -if (lean_is_scalar(x_14)) { - x_74 = lean_alloc_ctor(0, 2, 0); +lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_131 = lean_ctor_get(x_88, 0); +lean_inc_ref(x_131); +lean_dec_ref(x_88); +x_132 = lean_ctor_get(x_89, 0); +lean_inc_ref(x_132); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + x_133 = x_89; } else { - x_74 = x_14; + lean_dec_ref(x_89); + x_133 = lean_box(0); } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_70); -return x_74; -} -block_78: +lean_inc(x_6); +x_134 = l_Lean_Compiler_LCNF_AlphaEqv_eqv(x_1, x_131, x_132, x_6); +if (x_134 == 0) { -lean_object* x_76; lean_object* x_77; -x_76 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_AlphaEqv_eqvAlts_spec__1___closed__0; -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_70); -return x_77; +lean_object* x_135; lean_object* x_136; lean_object* x_137; +lean_dec(x_6); +x_135 = lean_box(x_134); +if (lean_is_scalar(x_133)) { + x_136 = lean_alloc_ctor(1, 1, 0); +} else { + x_136 = x_133; + lean_ctor_set_tag(x_136, 1); +} +lean_ctor_set(x_136, 0, x_135); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_92); +return x_137; +} +else +{ +lean_object* x_138; +lean_dec(x_133); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_18); +lean_ctor_set(x_138, 1, x_92); +x_7 = x_138; +goto block_11; +} +} +else +{ +lean_dec(x_89); +lean_dec_ref(x_88); +lean_dec(x_6); +goto block_100; +} +} +} +block_97: +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_94 = lean_box(x_93); +x_95 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_95, 0, x_94); +if (lean_is_scalar(x_14)) { + x_96 = lean_alloc_ctor(0, 2, 0); +} else { + x_96 = x_14; +} +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_92); +return x_96; +} +block_100: +{ +lean_object* x_98; lean_object* x_99; +x_98 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_AlphaEqv_eqvAlts_spec__1___closed__0; +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_92); +return x_99; } } } @@ -2371,162 +2931,162 @@ x_61 = 0; return x_61; } } -case 5: -{ -if (lean_obj_tag(x_3) == 5) -{ -lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_62 = lean_ctor_get(x_2, 0); -lean_inc(x_62); -lean_dec_ref(x_2); -x_63 = lean_ctor_get(x_3, 0); -lean_inc(x_63); -lean_dec_ref(x_3); -x_64 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_62, x_63, x_4); -lean_dec(x_4); -lean_dec(x_63); -lean_dec(x_62); -return x_64; -} -else -{ -uint8_t x_65; -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_65 = 0; -return x_65; -} -} -case 6: -{ -if (lean_obj_tag(x_3) == 6) -{ -lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_66 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_66); -lean_dec_ref(x_2); -x_67 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_67); -lean_dec_ref(x_3); -x_68 = l_Lean_Compiler_LCNF_AlphaEqv_eqvType(x_66, x_67, x_4); -lean_dec(x_4); -lean_dec_ref(x_67); -lean_dec_ref(x_66); -return x_68; -} -else -{ -uint8_t x_69; -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_69 = 0; -return x_69; -} -} case 3: { if (lean_obj_tag(x_3) == 3) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_70 = lean_ctor_get(x_2, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_71); +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_62 = lean_ctor_get(x_2, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_63); lean_dec_ref(x_2); -x_72 = lean_ctor_get(x_3, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_73); +x_64 = lean_ctor_get(x_3, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_65); lean_dec_ref(x_3); -x_74 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_70, x_72, x_4); -lean_dec(x_72); -lean_dec(x_70); -if (x_74 == 0) +x_66 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_62, x_64, x_4); +lean_dec(x_64); +lean_dec(x_62); +if (x_66 == 0) { -lean_dec_ref(x_73); -lean_dec_ref(x_71); +lean_dec_ref(x_65); +lean_dec_ref(x_63); lean_dec(x_4); -return x_74; +return x_66; } else { -uint8_t x_75; -x_75 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_71, x_73, x_4); +uint8_t x_67; +x_67 = l_Lean_Compiler_LCNF_AlphaEqv_eqvArgs(x_1, x_63, x_65, x_4); lean_dec(x_4); -lean_dec_ref(x_71); -return x_75; +lean_dec_ref(x_63); +return x_67; } } else { -uint8_t x_76; +uint8_t x_68; lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_76 = 0; -return x_76; +x_68 = 0; +return x_68; } } case 4: { if (lean_obj_tag(x_3) == 4) { -lean_object* 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; uint8_t x_85; -x_77 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_77); +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; +x_69 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_69); lean_dec_ref(x_2); -x_78 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_78); +x_70 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_70); lean_dec_ref(x_3); -x_79 = lean_ctor_get(x_77, 1); -lean_inc_ref(x_79); -x_80 = lean_ctor_get(x_77, 2); -lean_inc(x_80); -x_81 = lean_ctor_get(x_77, 3); -lean_inc_ref(x_81); -lean_dec_ref(x_77); -x_82 = lean_ctor_get(x_78, 1); -lean_inc_ref(x_82); -x_83 = lean_ctor_get(x_78, 2); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 3); -lean_inc_ref(x_84); -lean_dec_ref(x_78); -x_85 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_80, x_83, x_4); -lean_dec(x_83); -lean_dec(x_80); -if (x_85 == 0) +x_71 = lean_ctor_get(x_69, 1); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_69, 2); +lean_inc(x_72); +x_73 = lean_ctor_get(x_69, 3); +lean_inc_ref(x_73); +lean_dec_ref(x_69); +x_74 = lean_ctor_get(x_70, 1); +lean_inc_ref(x_74); +x_75 = lean_ctor_get(x_70, 2); +lean_inc(x_75); +x_76 = lean_ctor_get(x_70, 3); +lean_inc_ref(x_76); +lean_dec_ref(x_70); +x_77 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_72, x_75, x_4); +lean_dec(x_75); +lean_dec(x_72); +if (x_77 == 0) { -lean_dec_ref(x_84); -lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_79); +lean_dec_ref(x_76); +lean_dec_ref(x_74); +lean_dec_ref(x_73); +lean_dec_ref(x_71); lean_dec(x_4); -return x_85; +return x_77; } else { -uint8_t x_86; -x_86 = l_Lean_Compiler_LCNF_AlphaEqv_eqvType(x_79, x_82, x_4); -lean_dec_ref(x_82); -lean_dec_ref(x_79); -if (x_86 == 0) +uint8_t x_78; +x_78 = l_Lean_Compiler_LCNF_AlphaEqv_eqvType(x_71, x_74, x_4); +lean_dec_ref(x_74); +lean_dec_ref(x_71); +if (x_78 == 0) { -lean_dec_ref(x_84); -lean_dec_ref(x_81); +lean_dec_ref(x_76); +lean_dec_ref(x_73); lean_dec(x_4); -return x_86; +return x_78; } else { -uint8_t x_87; -x_87 = l_Lean_Compiler_LCNF_AlphaEqv_eqvAlts(x_1, x_81, x_84, x_4); +uint8_t x_79; +x_79 = l_Lean_Compiler_LCNF_AlphaEqv_eqvAlts(x_1, x_73, x_76, x_4); +return x_79; +} +} +} +else +{ +uint8_t x_80; +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_80 = 0; +return x_80; +} +} +case 5: +{ +if (lean_obj_tag(x_3) == 5) +{ +lean_object* x_81; lean_object* x_82; uint8_t x_83; +x_81 = lean_ctor_get(x_2, 0); +lean_inc(x_81); +lean_dec_ref(x_2); +x_82 = lean_ctor_get(x_3, 0); +lean_inc(x_82); +lean_dec_ref(x_3); +x_83 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_81, x_82, x_4); +lean_dec(x_4); +lean_dec(x_82); +lean_dec(x_81); +return x_83; +} +else +{ +uint8_t x_84; +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_84 = 0; +return x_84; +} +} +case 6: +{ +if (lean_obj_tag(x_3) == 6) +{ +lean_object* x_85; lean_object* x_86; uint8_t x_87; +x_85 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_85); +lean_dec_ref(x_2); +x_86 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_86); +lean_dec_ref(x_3); +x_87 = l_Lean_Compiler_LCNF_AlphaEqv_eqvType(x_85, x_86, x_4); +lean_dec(x_4); +lean_dec_ref(x_86); +lean_dec_ref(x_85); return x_87; } -} -} else { uint8_t x_88; @@ -2537,14 +3097,223 @@ x_88 = 0; return x_88; } } -default: +case 7: { -uint8_t x_89; +if (lean_obj_tag(x_3) == 7) +{ +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; uint8_t x_97; +x_89 = lean_ctor_get(x_2, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_2, 1); +lean_inc(x_90); +x_91 = lean_ctor_get(x_2, 2); +lean_inc(x_91); +x_92 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_92); +lean_dec_ref(x_2); +x_93 = lean_ctor_get(x_3, 0); +lean_inc(x_93); +x_94 = lean_ctor_get(x_3, 1); +lean_inc(x_94); +x_95 = lean_ctor_get(x_3, 2); +lean_inc(x_95); +x_96 = lean_ctor_get(x_3, 3); +lean_inc_ref(x_96); +lean_dec_ref(x_3); +x_97 = lean_nat_dec_eq(x_90, x_94); +lean_dec(x_94); +lean_dec(x_90); +if (x_97 == 0) +{ +lean_dec_ref(x_96); +lean_dec(x_95); +lean_dec(x_93); +lean_dec_ref(x_92); +lean_dec(x_91); +lean_dec(x_89); +lean_dec(x_4); +return x_97; +} +else +{ +uint8_t x_98; +x_98 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_89, x_93, x_4); +lean_dec(x_93); +lean_dec(x_89); +if (x_98 == 0) +{ +lean_dec_ref(x_96); +lean_dec(x_95); +lean_dec_ref(x_92); +lean_dec(x_91); +lean_dec(x_4); +return x_98; +} +else +{ +uint8_t x_99; +x_99 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_91, x_95, x_4); +lean_dec(x_95); +lean_dec(x_91); +if (x_99 == 0) +{ +lean_dec_ref(x_96); +lean_dec_ref(x_92); +lean_dec(x_4); +return x_99; +} +else +{ +x_2 = x_92; +x_3 = x_96; +goto _start; +} +} +} +} +else +{ +uint8_t x_101; lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_89 = 0; -return x_89; +x_101 = 0; +return x_101; +} +} +default: +{ +if (lean_obj_tag(x_3) == 8) +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; +x_102 = lean_ctor_get(x_2, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_2, 1); +lean_inc(x_103); +x_104 = lean_ctor_get(x_2, 2); +lean_inc(x_104); +x_105 = lean_ctor_get(x_2, 3); +lean_inc(x_105); +x_106 = lean_ctor_get(x_2, 4); +lean_inc_ref(x_106); +x_107 = lean_ctor_get(x_2, 5); +lean_inc_ref(x_107); +lean_dec_ref(x_2); +x_108 = lean_ctor_get(x_3, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_3, 1); +lean_inc(x_109); +x_110 = lean_ctor_get(x_3, 2); +lean_inc(x_110); +x_111 = lean_ctor_get(x_3, 3); +lean_inc(x_111); +x_112 = lean_ctor_get(x_3, 4); +lean_inc_ref(x_112); +x_113 = lean_ctor_get(x_3, 5); +lean_inc_ref(x_113); +lean_dec_ref(x_3); +x_114 = lean_nat_dec_eq(x_103, x_109); +lean_dec(x_109); +lean_dec(x_103); +if (x_114 == 0) +{ +lean_dec_ref(x_113); +lean_dec_ref(x_112); +lean_dec(x_111); +lean_dec(x_110); +lean_dec(x_108); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec(x_105); +lean_dec(x_104); +lean_dec(x_102); +lean_dec(x_4); +return x_114; +} +else +{ +uint8_t x_115; +x_115 = lean_nat_dec_eq(x_104, x_110); +lean_dec(x_110); +lean_dec(x_104); +if (x_115 == 0) +{ +lean_dec_ref(x_113); +lean_dec_ref(x_112); +lean_dec(x_111); +lean_dec(x_108); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec(x_105); +lean_dec(x_102); +lean_dec(x_4); +return x_115; +} +else +{ +uint8_t x_116; +x_116 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_102, x_108, x_4); +lean_dec(x_108); +lean_dec(x_102); +if (x_116 == 0) +{ +lean_dec_ref(x_113); +lean_dec_ref(x_112); +lean_dec(x_111); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec(x_105); +lean_dec(x_4); +return x_116; +} +else +{ +uint8_t x_117; +x_117 = l_Lean_Compiler_LCNF_AlphaEqv_eqvFVar(x_105, x_111, x_4); +lean_dec(x_111); +lean_dec(x_105); +if (x_117 == 0) +{ +lean_dec_ref(x_113); +lean_dec_ref(x_112); +lean_dec_ref(x_107); +lean_dec_ref(x_106); +lean_dec(x_4); +return x_117; +} +else +{ +uint8_t x_118; +x_118 = l_Lean_Compiler_LCNF_AlphaEqv_eqvType(x_106, x_112, x_4); +lean_dec_ref(x_112); +lean_dec_ref(x_106); +if (x_118 == 0) +{ +lean_dec_ref(x_113); +lean_dec_ref(x_107); +lean_dec(x_4); +return x_118; +} +else +{ +x_2 = x_107; +x_3 = x_113; +goto _start; +} +} +} +} +} +} +else +{ +uint8_t x_120; +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_120 = 0; +return x_120; +} } } } diff --git a/stage0/stdlib/Lean/Compiler/LCNF/PassManager.c b/stage0/stdlib/Lean/Compiler/LCNF/PassManager.c index 021c2b0650..9c3e7ed404 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/PassManager.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/PassManager.c @@ -2151,7 +2151,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 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Compiler_LCNF_PassInstaller_withEachOccurrence_spec__1___redArg___closed__1)); x_2 = lean_unsigned_to_nat(8u); -x_3 = lean_unsigned_to_nat(163u); +x_3 = lean_unsigned_to_nat(170u); x_4 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Compiler_LCNF_PassInstaller_withEachOccurrence_spec__1___redArg___closed__0)); x_5 = ((lean_object*)(l_Lean_Compiler_LCNF_Phase_withPurityCheck___redArg___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Passes.c b/stage0/stdlib/Lean/Compiler/LCNF/Passes.c index 3377d4d0af..9e2b62ff00 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Passes.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Passes.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.LCNF.Passes -// Imports: public import Lean.Compiler.LCNF.PullLetDecls public import Lean.Compiler.LCNF.CSE public import Lean.Compiler.LCNF.JoinPoints public import Lean.Compiler.LCNF.Specialize public import Lean.Compiler.LCNF.ToMono public import Lean.Compiler.LCNF.LambdaLifting public import Lean.Compiler.LCNF.FloatLetIn public import Lean.Compiler.LCNF.ReduceArity public import Lean.Compiler.LCNF.ElimDeadBranches public import Lean.Compiler.LCNF.StructProjCases public import Lean.Compiler.LCNF.ExtractClosed public import Lean.Compiler.LCNF.Visibility public import Lean.Compiler.LCNF.Simp public import Lean.Compiler.LCNF.ToImpure public import Lean.Compiler.LCNF.PushProj public import Lean.Compiler.LCNF.ResetReuse +// Imports: public import Lean.Compiler.LCNF.PullLetDecls public import Lean.Compiler.LCNF.CSE public import Lean.Compiler.LCNF.JoinPoints public import Lean.Compiler.LCNF.Specialize public import Lean.Compiler.LCNF.ToMono public import Lean.Compiler.LCNF.LambdaLifting public import Lean.Compiler.LCNF.FloatLetIn public import Lean.Compiler.LCNF.ReduceArity public import Lean.Compiler.LCNF.ElimDeadBranches public import Lean.Compiler.LCNF.StructProjCases public import Lean.Compiler.LCNF.ExtractClosed public import Lean.Compiler.LCNF.Visibility public import Lean.Compiler.LCNF.Simp public import Lean.Compiler.LCNF.ToImpure public import Lean.Compiler.LCNF.PushProj public import Lean.Compiler.LCNF.ResetReuse public import Lean.Compiler.LCNF.SimpCase #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -210,9 +210,11 @@ static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__66; extern lean_object* l_Lean_Compiler_LCNF_insertResetReuse; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__67; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__68; +extern lean_object* l_Lean_Compiler_LCNF_simpCase; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__69; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__70; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__71; +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__72; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_builtinPassManager; lean_object* l_Lean_Compiler_LCNF_PassInstaller_runFromDecl(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_runImportedDecls_spec__0(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); @@ -2051,7 +2053,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__65() _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(5u); +x_1 = lean_unsigned_to_nat(6u); x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } @@ -2090,7 +2092,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__69() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__64; +x_1 = l_Lean_Compiler_LCNF_simpCase; x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__68; x_3 = lean_array_push(x_2, x_1); return x_3; @@ -2100,7 +2102,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__70() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = ((lean_object*)(l_Lean_Compiler_LCNF_Pass_saveImpure)); +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__64; x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__69; x_3 = lean_array_push(x_2, x_1); return x_3; @@ -2109,8 +2111,18 @@ return x_3; static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__71() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l_Lean_Compiler_LCNF_Pass_saveImpure)); +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__70; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__72() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__70; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__71; x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__61; x_3 = l_Lean_Compiler_LCNF_builtinPassManager___closed__48; x_4 = l_Lean_Compiler_LCNF_builtinPassManager___closed__31; @@ -2126,7 +2138,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager() { _start: { lean_object* x_1; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__71; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__72; return x_1; } } @@ -4415,6 +4427,7 @@ lean_object* initialize_Lean_Compiler_LCNF_Simp(uint8_t builtin); lean_object* initialize_Lean_Compiler_LCNF_ToImpure(uint8_t builtin); lean_object* initialize_Lean_Compiler_LCNF_PushProj(uint8_t builtin); lean_object* initialize_Lean_Compiler_LCNF_ResetReuse(uint8_t builtin); +lean_object* initialize_Lean_Compiler_LCNF_SimpCase(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Compiler_LCNF_Passes(uint8_t builtin) { lean_object * res; @@ -4468,6 +4481,9 @@ lean_dec_ref(res); res = initialize_Lean_Compiler_LCNF_ResetReuse(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_SimpCase(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Pass_checkMeta_spec__0___closed__0 = _init_l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Pass_checkMeta_spec__0___closed__0(); l_Lean_Compiler_LCNF_builtinPassManager___closed__0 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__0(); lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__0); @@ -4609,6 +4625,8 @@ l_Lean_Compiler_LCNF_builtinPassManager___closed__70 = _init_l_Lean_Compiler_LCN lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__70); l_Lean_Compiler_LCNF_builtinPassManager___closed__71 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__71(); lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__71); +l_Lean_Compiler_LCNF_builtinPassManager___closed__72 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__72(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__72); l_Lean_Compiler_LCNF_builtinPassManager = _init_l_Lean_Compiler_LCNF_builtinPassManager(); lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager); l_Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_Passes_3698839830____hygCtx___hyg_2_ = _init_l_Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_Passes_3698839830____hygCtx___hyg_2_(); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/PhaseExt.c b/stage0/stdlib/Lean/Compiler/LCNF/PhaseExt.c index a668fa934b..0c12c5b412 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/PhaseExt.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/PhaseExt.c @@ -4595,25 +4595,17 @@ return x_5; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getImpureSignature_x3f___redArg(lean_object* x_1, lean_object* x_2) { _start: { -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; +lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_4 = lean_st_ref_get(x_2); x_5 = lean_ctor_get(x_4, 0); lean_inc_ref(x_5); lean_dec(x_4); -x_6 = l_Lean_Compiler_LCNF_impureSigExt; -x_7 = lean_ctor_get(x_6, 0); -lean_inc_ref(x_7); -x_8 = lean_ctor_get(x_7, 2); -lean_inc(x_8); -lean_dec_ref(x_7); -x_9 = l_Lean_Compiler_LCNF_instInhabitedSigExt___closed__0; -x_10 = lean_box(0); -x_11 = l_Lean_PersistentEnvExtension_getState___redArg(x_9, x_6, x_5, x_8, x_10); -lean_dec(x_8); -x_12 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Compiler_LCNF_getDeclCore_x3f_spec__0___redArg(x_11, x_1); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_12); -return x_13; +x_6 = 1; +x_7 = l_Lean_Compiler_LCNF_impureSigExt; +x_8 = l_Lean_Compiler_LCNF_getSigCore_x3f(x_6, x_5, x_7, x_1); +x_9 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_9, 0, x_8); +return x_9; } } LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getImpureSignature_x3f___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -4622,7 +4614,6 @@ _start: lean_object* x_4; x_4 = l_Lean_Compiler_LCNF_getImpureSignature_x3f___redArg(x_1, x_2); lean_dec(x_2); -lean_dec(x_1); return x_4; } } @@ -4641,7 +4632,6 @@ lean_object* x_5; x_5 = l_Lean_Compiler_LCNF_getImpureSignature_x3f(x_1, x_2, x_3); lean_dec(x_3); lean_dec_ref(x_2); -lean_dec(x_1); return x_5; } } diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c b/stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c index 91dc89f9cc..107d8470c4 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c @@ -7606,7 +7606,7 @@ lean_object* x_15; x_15 = lean_ctor_get(x_13, 0); if (lean_obj_tag(x_15) == 1) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; uint8_t 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; uint8_t 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; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t 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; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_free_object(x_13); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); @@ -7745,21 +7745,21 @@ goto block_193; block_131: { lean_object* x_40; -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -lean_inc_ref(x_34); -lean_inc(x_30); -lean_inc_ref(x_38); -x_40 = l_Lean_Compiler_LCNF_Simp_simp(x_39, x_38, x_30, x_34, x_26, x_36, x_27, x_28); +lean_inc_ref(x_33); +lean_inc(x_31); +lean_inc_ref(x_27); +x_40 = l_Lean_Compiler_LCNF_Simp_simp(x_28, x_27, x_31, x_33, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; x_41 = lean_ctor_get(x_40, 0); lean_inc(x_41); lean_dec_ref(x_40); -x_42 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_30); +x_42 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_31); if (lean_obj_tag(x_42) == 0) { uint8_t x_43; @@ -7769,12 +7769,12 @@ x_43 = l___private_Lean_Compiler_LCNF_Simp_Main_0__Lean_Compiler_LCNF_Simp_oneEx if (x_43 == 0) { lean_object* x_44; -lean_dec_ref(x_35); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_dec_ref(x_34); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -x_44 = l_Lean_Compiler_LCNF_inferAppType(x_32, x_20, x_29, x_26, x_36, x_27, x_28); +x_44 = l_Lean_Compiler_LCNF_inferAppType(x_30, x_20, x_35, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_44) == 0) { lean_object* x_45; lean_object* x_46; uint8_t x_47; @@ -7788,8 +7788,8 @@ lean_dec_ref(x_46); if (x_47 == 0) { lean_object* x_48; -lean_dec(x_33); -x_48 = l_Lean_Compiler_LCNF_mkAuxParam(x_32, x_45, x_25, x_26, x_36, x_27, x_28); +lean_dec(x_36); +x_48 = l_Lean_Compiler_LCNF_mkAuxParam(x_30, x_45, x_25, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; lean_object* x_51; @@ -7797,12 +7797,12 @@ x_49 = lean_ctor_get(x_48, 0); lean_inc(x_49); lean_dec_ref(x_48); x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); lean_inc(x_50); -x_51 = lean_apply_9(x_31, x_50, x_38, x_30, x_34, x_26, x_36, x_27, x_28, lean_box(0)); +x_51 = lean_apply_9(x_32, x_50, x_27, x_31, x_33, x_26, x_37, x_39, x_38, lean_box(0)); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; @@ -7813,11 +7813,11 @@ x_53 = lean_unsigned_to_nat(1u); x_54 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__0; x_55 = lean_array_push(x_54, x_49); x_56 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__2)); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -x_57 = l_Lean_Compiler_LCNF_mkAuxJpDecl(x_32, x_55, x_52, x_56, x_26, x_36, x_27, x_28); +x_57 = l_Lean_Compiler_LCNF_mkAuxJpDecl(x_30, x_55, x_52, x_56, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_57) == 0) { lean_object* x_58; lean_object* x_59; lean_object* x_60; @@ -7828,7 +7828,7 @@ lean_inc(x_58); x_59 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___lam__0___boxed), 8, 2); lean_closure_set(x_59, 0, x_58); lean_closure_set(x_59, 1, x_53); -x_60 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_32, x_41, x_59, x_26, x_36, x_27, x_28); +x_60 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_30, x_41, x_59, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_60) == 0) { uint8_t x_61; @@ -7895,9 +7895,9 @@ else { uint8_t x_72; lean_dec(x_41); -lean_dec(x_36); -lean_dec(x_28); -lean_dec_ref(x_27); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); lean_dec_ref(x_26); lean_dec(x_17); x_72 = !lean_is_exclusive(x_57); @@ -7922,9 +7922,9 @@ else uint8_t x_75; lean_dec(x_49); lean_dec(x_41); -lean_dec(x_36); -lean_dec(x_28); -lean_dec_ref(x_27); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); lean_dec_ref(x_26); lean_dec(x_17); x_75 = !lean_is_exclusive(x_51); @@ -7948,12 +7948,12 @@ else { uint8_t x_78; lean_dec(x_41); -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_34); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec(x_17); @@ -7978,25 +7978,25 @@ else { lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_dec(x_45); -x_81 = lean_mk_empty_array_with_capacity(x_33); -lean_dec(x_33); +x_81 = lean_mk_empty_array_with_capacity(x_36); +lean_dec(x_36); x_82 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_specializePartialApp___closed__4)); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -x_83 = l_Lean_Compiler_LCNF_mkAuxFunDecl(x_81, x_41, x_82, x_26, x_36, x_27, x_28); +x_83 = l_Lean_Compiler_LCNF_mkAuxFunDecl(x_81, x_41, x_82, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_83) == 0) { lean_object* x_84; lean_object* x_85; x_84 = lean_ctor_get(x_83, 0); lean_inc(x_84); lean_dec_ref(x_83); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -x_85 = l_Lean_Compiler_LCNF_FunDecl_etaExpand(x_84, x_26, x_36, x_27, x_28); +x_85 = l_Lean_Compiler_LCNF_FunDecl_etaExpand(x_84, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_85) == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; @@ -8004,15 +8004,15 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_28); -lean_inc_ref(x_27); -lean_inc(x_36); +lean_inc(x_38); +lean_inc_ref(x_39); +lean_inc(x_37); lean_inc_ref(x_26); -lean_inc_ref(x_34); -lean_inc(x_30); -lean_inc_ref(x_38); +lean_inc_ref(x_33); +lean_inc(x_31); +lean_inc_ref(x_27); lean_inc(x_87); -x_88 = lean_apply_9(x_31, x_87, x_38, x_30, x_34, x_26, x_36, x_27, x_28, lean_box(0)); +x_88 = lean_apply_9(x_32, x_87, x_27, x_31, x_33, x_26, x_37, x_39, x_38, lean_box(0)); if (lean_obj_tag(x_88) == 0) { lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; @@ -8023,14 +8023,14 @@ x_90 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_90, 0, x_86); x_91 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__3; x_92 = lean_array_push(x_91, x_90); -x_93 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_92, x_89, x_38, x_30, x_34, x_26, x_36, x_27, x_28); -lean_dec(x_28); -lean_dec_ref(x_27); -lean_dec(x_36); +x_93 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_92, x_89, x_27, x_31, x_33, x_26, x_37, x_39, x_38); +lean_dec(x_38); +lean_dec_ref(x_39); +lean_dec(x_37); lean_dec_ref(x_26); -lean_dec_ref(x_34); -lean_dec(x_30); -lean_dec_ref(x_38); +lean_dec_ref(x_33); +lean_dec(x_31); +lean_dec_ref(x_27); lean_dec_ref(x_92); if (lean_obj_tag(x_93) == 0) { @@ -8091,11 +8091,11 @@ else { uint8_t x_103; lean_dec(x_86); -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_34); -lean_dec(x_30); -lean_dec(x_28); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec_ref(x_33); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec(x_17); @@ -8119,12 +8119,12 @@ return x_105; else { uint8_t x_106; -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_34); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec(x_17); @@ -8148,12 +8148,12 @@ return x_108; else { uint8_t x_109; -lean_dec_ref(x_38); -lean_dec(x_36); -lean_dec_ref(x_34); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec(x_17); @@ -8179,13 +8179,13 @@ else { uint8_t x_112; lean_dec(x_41); -lean_dec_ref(x_38); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); lean_dec(x_36); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec(x_17); @@ -8209,14 +8209,14 @@ return x_114; else { lean_object* x_115; -lean_dec_ref(x_38); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); +lean_dec(x_36); +lean_dec_ref(x_35); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); +lean_dec_ref(x_27); lean_dec_ref(x_20); -x_115 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_32, x_41, x_35, x_26, x_36, x_27, x_28); +x_115 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_30, x_41, x_34, x_26, x_37, x_39, x_38); if (lean_obj_tag(x_115) == 0) { uint8_t x_116; @@ -8277,15 +8277,15 @@ else { uint8_t x_125; lean_dec(x_41); -lean_dec_ref(x_38); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); lean_dec(x_36); lean_dec_ref(x_35); lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); -lean_dec(x_28); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec_ref(x_20); @@ -8310,15 +8310,15 @@ return x_127; else { uint8_t x_128; -lean_dec_ref(x_38); +lean_dec_ref(x_39); +lean_dec(x_38); +lean_dec(x_37); lean_dec(x_36); lean_dec_ref(x_35); lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_29); -lean_dec(x_28); +lean_dec_ref(x_33); +lean_dec_ref(x_32); +lean_dec(x_31); lean_dec_ref(x_27); lean_dec_ref(x_26); lean_dec_ref(x_20); @@ -8397,19 +8397,19 @@ if (x_149 == 0) { lean_dec(x_24); x_26 = x_135; -x_27 = x_137; -x_28 = x_138; -x_29 = x_142; -x_30 = x_133; -x_31 = x_147; -x_32 = x_145; -x_33 = x_140; -x_34 = x_134; -x_35 = x_148; -x_36 = x_136; -x_37 = lean_box(0); -x_38 = x_132; -x_39 = x_144; +x_27 = x_132; +x_28 = x_144; +x_29 = lean_box(0); +x_30 = x_145; +x_31 = x_133; +x_32 = x_147; +x_33 = x_134; +x_34 = x_148; +x_35 = x_142; +x_36 = x_140; +x_37 = x_136; +x_38 = x_138; +x_39 = x_137; goto block_131; } else @@ -8420,19 +8420,19 @@ lean_dec(x_24); if (x_150 == 0) { x_26 = x_135; -x_27 = x_137; -x_28 = x_138; -x_29 = x_142; -x_30 = x_133; -x_31 = x_147; -x_32 = x_145; -x_33 = x_140; -x_34 = x_134; -x_35 = x_148; -x_36 = x_136; -x_37 = lean_box(0); -x_38 = x_132; -x_39 = x_144; +x_27 = x_132; +x_28 = x_144; +x_29 = lean_box(0); +x_30 = x_145; +x_31 = x_133; +x_32 = x_147; +x_33 = x_134; +x_34 = x_148; +x_35 = x_142; +x_36 = x_140; +x_37 = x_136; +x_38 = x_138; +x_39 = x_137; goto block_131; } else @@ -8753,7 +8753,7 @@ lean_inc(x_213); lean_dec(x_13); if (lean_obj_tag(x_213) == 1) { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; x_214 = lean_ctor_get(x_213, 0); lean_inc(x_214); if (lean_is_exclusive(x_213)) { @@ -8878,21 +8878,21 @@ goto block_380; block_322: { lean_object* x_238; -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -lean_inc_ref(x_232); -lean_inc(x_228); -lean_inc_ref(x_236); -x_238 = l_Lean_Compiler_LCNF_Simp_simp(x_237, x_236, x_228, x_232, x_224, x_234, x_225, x_226); +lean_inc_ref(x_231); +lean_inc(x_229); +lean_inc_ref(x_225); +x_238 = l_Lean_Compiler_LCNF_Simp_simp(x_226, x_225, x_229, x_231, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_238) == 0) { lean_object* x_239; lean_object* x_240; x_239 = lean_ctor_get(x_238, 0); lean_inc(x_239); lean_dec_ref(x_238); -x_240 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_228); +x_240 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_229); if (lean_obj_tag(x_240) == 0) { uint8_t x_241; @@ -8902,12 +8902,12 @@ x_241 = l___private_Lean_Compiler_LCNF_Simp_Main_0__Lean_Compiler_LCNF_Simp_oneE if (x_241 == 0) { lean_object* x_242; -lean_dec_ref(x_233); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_dec_ref(x_232); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -x_242 = l_Lean_Compiler_LCNF_inferAppType(x_230, x_218, x_227, x_224, x_234, x_225, x_226); +x_242 = l_Lean_Compiler_LCNF_inferAppType(x_228, x_218, x_233, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_242) == 0) { lean_object* x_243; lean_object* x_244; uint8_t x_245; @@ -8921,8 +8921,8 @@ lean_dec_ref(x_244); if (x_245 == 0) { lean_object* x_246; -lean_dec(x_231); -x_246 = l_Lean_Compiler_LCNF_mkAuxParam(x_230, x_243, x_223, x_224, x_234, x_225, x_226); +lean_dec(x_234); +x_246 = l_Lean_Compiler_LCNF_mkAuxParam(x_228, x_243, x_223, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_246) == 0) { lean_object* x_247; lean_object* x_248; lean_object* x_249; @@ -8930,12 +8930,12 @@ x_247 = lean_ctor_get(x_246, 0); lean_inc(x_247); lean_dec_ref(x_246); x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); lean_inc(x_248); -x_249 = lean_apply_9(x_229, x_248, x_236, x_228, x_232, x_224, x_234, x_225, x_226, lean_box(0)); +x_249 = lean_apply_9(x_230, x_248, x_225, x_229, x_231, x_224, x_235, x_237, x_236, lean_box(0)); if (lean_obj_tag(x_249) == 0) { lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; @@ -8946,11 +8946,11 @@ x_251 = lean_unsigned_to_nat(1u); x_252 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__0; x_253 = lean_array_push(x_252, x_247); x_254 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__2)); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -x_255 = l_Lean_Compiler_LCNF_mkAuxJpDecl(x_230, x_253, x_250, x_254, x_224, x_234, x_225, x_226); +x_255 = l_Lean_Compiler_LCNF_mkAuxJpDecl(x_228, x_253, x_250, x_254, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_255) == 0) { lean_object* x_256; lean_object* x_257; lean_object* x_258; @@ -8961,7 +8961,7 @@ lean_inc(x_256); x_257 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___lam__0___boxed), 8, 2); lean_closure_set(x_257, 0, x_256); lean_closure_set(x_257, 1, x_251); -x_258 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_230, x_239, x_257, x_224, x_234, x_225, x_226); +x_258 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_228, x_239, x_257, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_258) == 0) { lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; @@ -9018,9 +9018,9 @@ else { lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_dec(x_239); -lean_dec(x_234); -lean_dec(x_226); -lean_dec_ref(x_225); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); lean_dec_ref(x_224); lean_dec(x_215); x_267 = lean_ctor_get(x_255, 0); @@ -9046,9 +9046,9 @@ else lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_dec(x_247); lean_dec(x_239); -lean_dec(x_234); -lean_dec(x_226); -lean_dec_ref(x_225); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); lean_dec_ref(x_224); lean_dec(x_215); x_270 = lean_ctor_get(x_249, 0); @@ -9073,12 +9073,12 @@ else { lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_dec(x_239); -lean_dec_ref(x_236); -lean_dec(x_234); -lean_dec_ref(x_232); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec(x_226); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec(x_215); @@ -9104,25 +9104,25 @@ else { lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_dec(x_243); -x_276 = lean_mk_empty_array_with_capacity(x_231); -lean_dec(x_231); +x_276 = lean_mk_empty_array_with_capacity(x_234); +lean_dec(x_234); x_277 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_specializePartialApp___closed__4)); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -x_278 = l_Lean_Compiler_LCNF_mkAuxFunDecl(x_276, x_239, x_277, x_224, x_234, x_225, x_226); +x_278 = l_Lean_Compiler_LCNF_mkAuxFunDecl(x_276, x_239, x_277, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_278) == 0) { lean_object* x_279; lean_object* x_280; x_279 = lean_ctor_get(x_278, 0); lean_inc(x_279); lean_dec_ref(x_278); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -x_280 = l_Lean_Compiler_LCNF_FunDecl_etaExpand(x_279, x_224, x_234, x_225, x_226); +x_280 = l_Lean_Compiler_LCNF_FunDecl_etaExpand(x_279, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_280) == 0) { lean_object* x_281; lean_object* x_282; lean_object* x_283; @@ -9130,15 +9130,15 @@ x_281 = lean_ctor_get(x_280, 0); lean_inc(x_281); lean_dec_ref(x_280); x_282 = lean_ctor_get(x_281, 0); -lean_inc(x_226); -lean_inc_ref(x_225); -lean_inc(x_234); +lean_inc(x_236); +lean_inc_ref(x_237); +lean_inc(x_235); lean_inc_ref(x_224); -lean_inc_ref(x_232); -lean_inc(x_228); -lean_inc_ref(x_236); +lean_inc_ref(x_231); +lean_inc(x_229); +lean_inc_ref(x_225); lean_inc(x_282); -x_283 = lean_apply_9(x_229, x_282, x_236, x_228, x_232, x_224, x_234, x_225, x_226, lean_box(0)); +x_283 = lean_apply_9(x_230, x_282, x_225, x_229, x_231, x_224, x_235, x_237, x_236, lean_box(0)); if (lean_obj_tag(x_283) == 0) { lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; @@ -9149,14 +9149,14 @@ x_285 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_285, 0, x_281); x_286 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f___closed__3; x_287 = lean_array_push(x_286, x_285); -x_288 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_287, x_284, x_236, x_228, x_232, x_224, x_234, x_225, x_226); -lean_dec(x_226); -lean_dec_ref(x_225); -lean_dec(x_234); +x_288 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_287, x_284, x_225, x_229, x_231, x_224, x_235, x_237, x_236); +lean_dec(x_236); +lean_dec_ref(x_237); +lean_dec(x_235); lean_dec_ref(x_224); -lean_dec_ref(x_232); -lean_dec(x_228); -lean_dec_ref(x_236); +lean_dec_ref(x_231); +lean_dec(x_229); +lean_dec_ref(x_225); lean_dec_ref(x_287); if (lean_obj_tag(x_288) == 0) { @@ -9210,11 +9210,11 @@ else { lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_dec(x_281); -lean_dec_ref(x_236); -lean_dec(x_234); -lean_dec_ref(x_232); -lean_dec(x_228); -lean_dec(x_226); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); +lean_dec_ref(x_231); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec(x_215); @@ -9239,12 +9239,12 @@ return x_298; else { lean_object* x_299; lean_object* x_300; lean_object* x_301; -lean_dec_ref(x_236); -lean_dec(x_234); -lean_dec_ref(x_232); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec(x_226); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec(x_215); @@ -9269,12 +9269,12 @@ return x_301; else { lean_object* x_302; lean_object* x_303; lean_object* x_304; -lean_dec_ref(x_236); -lean_dec(x_234); -lean_dec_ref(x_232); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec(x_226); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec(x_215); @@ -9301,13 +9301,13 @@ else { lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_dec(x_239); -lean_dec_ref(x_236); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); lean_dec(x_234); -lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec(x_226); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec(x_215); @@ -9332,14 +9332,14 @@ return x_307; else { lean_object* x_308; -lean_dec_ref(x_236); -lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec_ref(x_227); +lean_dec(x_234); +lean_dec_ref(x_233); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); +lean_dec_ref(x_225); lean_dec_ref(x_218); -x_308 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_230, x_239, x_233, x_224, x_234, x_225, x_226); +x_308 = l_Lean_Compiler_LCNF_CompilerM_codeBind(x_228, x_239, x_232, x_224, x_235, x_237, x_236); if (lean_obj_tag(x_308) == 0) { lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; @@ -9393,15 +9393,15 @@ else { lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_dec(x_239); -lean_dec_ref(x_236); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); lean_dec(x_234); lean_dec_ref(x_233); lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec_ref(x_227); -lean_dec(x_226); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec_ref(x_218); @@ -9427,15 +9427,15 @@ return x_318; else { lean_object* x_319; lean_object* x_320; lean_object* x_321; -lean_dec_ref(x_236); +lean_dec_ref(x_237); +lean_dec(x_236); +lean_dec(x_235); lean_dec(x_234); lean_dec_ref(x_233); lean_dec_ref(x_232); -lean_dec(x_231); -lean_dec_ref(x_229); -lean_dec(x_228); -lean_dec_ref(x_227); -lean_dec(x_226); +lean_dec_ref(x_231); +lean_dec_ref(x_230); +lean_dec(x_229); lean_dec_ref(x_225); lean_dec_ref(x_224); lean_dec_ref(x_218); @@ -9515,19 +9515,19 @@ if (x_340 == 0) { lean_dec(x_222); x_224 = x_326; -x_225 = x_328; -x_226 = x_329; -x_227 = x_333; -x_228 = x_324; -x_229 = x_338; -x_230 = x_336; -x_231 = x_331; -x_232 = x_325; -x_233 = x_339; -x_234 = x_327; -x_235 = lean_box(0); -x_236 = x_323; -x_237 = x_335; +x_225 = x_323; +x_226 = x_335; +x_227 = lean_box(0); +x_228 = x_336; +x_229 = x_324; +x_230 = x_338; +x_231 = x_325; +x_232 = x_339; +x_233 = x_333; +x_234 = x_331; +x_235 = x_327; +x_236 = x_329; +x_237 = x_328; goto block_322; } else @@ -9538,19 +9538,19 @@ lean_dec(x_222); if (x_341 == 0) { x_224 = x_326; -x_225 = x_328; -x_226 = x_329; -x_227 = x_333; -x_228 = x_324; -x_229 = x_338; -x_230 = x_336; -x_231 = x_331; -x_232 = x_325; -x_233 = x_339; -x_234 = x_327; -x_235 = lean_box(0); -x_236 = x_323; -x_237 = x_335; +x_225 = x_323; +x_226 = x_335; +x_227 = lean_box(0); +x_228 = x_336; +x_229 = x_324; +x_230 = x_338; +x_231 = x_325; +x_232 = x_339; +x_233 = x_333; +x_234 = x_331; +x_235 = x_327; +x_236 = x_329; +x_237 = x_328; goto block_322; } else @@ -9907,829 +9907,748 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f(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) { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_10 = lean_ctor_get(x_1, 2); -x_11 = lean_st_ref_get(x_3); -x_12 = lean_ctor_get(x_11, 0); -lean_inc_ref(x_12); -lean_dec(x_11); -x_13 = 0; -x_14 = 0; -lean_inc(x_10); -x_15 = l_Lean_Compiler_LCNF_normFVarImp___redArg(x_12, x_10, x_14); -lean_dec_ref(x_12); -if (lean_obj_tag(x_15) == 0) +lean_object* x_10; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; +x_14 = lean_ctor_get(x_1, 0); +x_15 = lean_ctor_get(x_1, 2); +x_16 = lean_st_ref_get(x_3); +x_17 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_17); +lean_dec(x_16); +x_18 = 0; +x_19 = 0; +lean_inc(x_15); +x_20 = l_Lean_Compiler_LCNF_normFVarImp___redArg(x_17, x_15, x_19); +lean_dec_ref(x_17); +if (lean_obj_tag(x_20) == 0) { -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -x_18 = l_Lean_Compiler_LCNF_Simp_findCtor_x3f___redArg(x_17, x_4, x_6, x_8); -lean_dec(x_17); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_18, 0); -if (lean_obj_tag(x_20) == 1) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -lean_free_object(x_18); +lean_object* x_21; lean_object* x_22; x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); -if (lean_is_exclusive(x_20)) { - lean_ctor_release(x_20, 0); - x_22 = x_20; +lean_dec_ref(x_20); +x_22 = l_Lean_Compiler_LCNF_Simp_findCtor_x3f___redArg(x_21, x_4, x_6, x_8); +lean_dec(x_21); +if (lean_obj_tag(x_22) == 0) +{ +uint8_t x_23; +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 0); +if (lean_obj_tag(x_24) == 1) +{ +uint8_t x_25; +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_26 = lean_ctor_get(x_24, 0); +x_27 = lean_st_ref_get(x_8); +x_28 = lean_ctor_get(x_27, 0); +lean_inc_ref(x_28); +lean_dec(x_27); +x_29 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_26); +lean_inc(x_29); +x_30 = l_Lean_Environment_find_x3f(x_28, x_29, x_19); +if (lean_obj_tag(x_30) == 1) +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_32 = x_30; } else { - lean_dec_ref(x_20); - x_22 = lean_box(0); + lean_dec_ref(x_30); + x_32 = lean_box(0); } -x_23 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; -x_24 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_21); -x_25 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_13, x_1, x_24); -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) +if (lean_obj_tag(x_31) == 6) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_25, 0); -x_28 = lean_ctor_get(x_25, 1); -lean_ctor_set_tag(x_15, 4); -lean_ctor_set(x_15, 0, x_28); -x_29 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_13, x_15, x_6); -lean_dec_ref(x_15); -if (lean_obj_tag(x_29) == 0) +uint8_t x_33; +x_33 = !lean_is_exclusive(x_31); +if (x_33 == 0) { -lean_object* x_30; -lean_dec_ref(x_29); -x_30 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); -if (lean_obj_tag(x_30) == 0) +lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_34 = lean_ctor_get(x_31, 0); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +lean_dec_ref(x_34); +x_36 = lean_name_eq(x_14, x_35); +lean_dec(x_35); +if (x_36 == 0) { -lean_dec_ref(x_30); -if (lean_obj_tag(x_27) == 0) -{ -if (lean_obj_tag(x_21) == 0) -{ -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_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; -lean_free_object(x_25); -x_31 = lean_ctor_get(x_27, 1); -lean_inc_ref(x_31); -x_32 = lean_ctor_get(x_27, 2); -lean_inc_ref(x_32); -lean_dec_ref(x_27); -x_33 = lean_ctor_get(x_21, 0); -lean_inc_ref(x_33); -x_34 = lean_ctor_get(x_21, 1); -lean_inc_ref(x_34); -lean_dec_ref(x_21); -x_59 = lean_ctor_get(x_33, 3); -lean_inc(x_59); -lean_dec_ref(x_33); -x_60 = lean_unsigned_to_nat(0u); -x_61 = lean_array_get_size(x_34); -x_62 = lean_nat_dec_le(x_59, x_60); -if (x_62 == 0) -{ -x_35 = x_59; -x_36 = x_61; -goto block_58; +lean_object* x_37; +lean_free_object(x_31); +lean_dec(x_32); +lean_dec(x_29); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_37 = lean_box(0); +lean_ctor_set(x_22, 0, x_37); +return x_22; } else { -lean_dec(x_59); -x_35 = x_60; -x_36 = x_61; -goto block_58; -} -block_58: +lean_object* x_38; lean_object* x_39; uint8_t x_40; +lean_free_object(x_22); +x_38 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; +x_39 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_18, x_1, x_29); +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -lean_object* x_37; size_t x_38; size_t x_39; lean_object* x_40; -x_37 = l_Array_toSubarray___redArg(x_34, x_35, x_36); -x_38 = lean_array_size(x_31); -x_39 = 0; -x_40 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_31, x_38, x_39, x_37, x_3); -if (lean_obj_tag(x_40) == 0) -{ -lean_object* x_41; -lean_dec_ref(x_40); -lean_inc(x_6); -x_41 = l_Lean_Compiler_LCNF_Simp_simp(x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -lean_dec_ref(x_41); -x_43 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_31, x_6); -lean_dec(x_6); +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_ctor_set_tag(x_31, 4); +lean_ctor_set(x_31, 0, x_42); +x_43 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_18, x_31, x_6); lean_dec_ref(x_31); if (lean_obj_tag(x_43) == 0) { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_43); -if (x_44 == 0) +lean_object* x_44; +lean_dec_ref(x_43); +x_44 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); +if (lean_obj_tag(x_44) == 0) { -lean_object* x_45; lean_object* x_46; -x_45 = lean_ctor_get(x_43, 0); -lean_dec(x_45); -if (lean_is_scalar(x_22)) { - x_46 = lean_alloc_ctor(1, 1, 0); -} else { - x_46 = x_22; -} -lean_ctor_set(x_46, 0, x_42); -lean_ctor_set(x_43, 0, x_46); -return x_43; -} -else +lean_dec_ref(x_44); +if (lean_obj_tag(x_41) == 0) { -lean_object* x_47; lean_object* x_48; -lean_dec(x_43); -if (lean_is_scalar(x_22)) { - x_47 = lean_alloc_ctor(1, 1, 0); -} else { - x_47 = x_22; -} -lean_ctor_set(x_47, 0, x_42); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_47); -return x_48; -} -} -else +if (lean_obj_tag(x_26) == 0) { -uint8_t x_49; -lean_dec(x_42); -lean_dec(x_22); -x_49 = !lean_is_exclusive(x_43); -if (x_49 == 0) -{ -return x_43; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_43, 0); -lean_inc(x_50); -lean_dec(x_43); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; -} -} -} -else -{ -uint8_t x_52; -lean_dec_ref(x_31); -lean_dec(x_22); -lean_dec(x_6); -x_52 = !lean_is_exclusive(x_41); -if (x_52 == 0) -{ -return x_41; -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_41, 0); -lean_inc(x_53); -lean_dec(x_41); -x_54 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_54, 0, x_53); -return x_54; -} -} -} -else -{ -uint8_t x_55; -lean_dec_ref(x_32); -lean_dec_ref(x_31); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_55 = !lean_is_exclusive(x_40); -if (x_55 == 0) -{ -return x_40; -} -else -{ -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_40, 0); -lean_inc(x_56); -lean_dec(x_40); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; -} -} -} -} -else -{ -lean_object* x_63; lean_object* x_64; uint8_t x_65; -x_63 = lean_ctor_get(x_27, 1); -lean_inc_ref(x_63); -x_64 = lean_ctor_get(x_27, 2); -lean_inc_ref(x_64); -lean_dec_ref(x_27); -x_65 = !lean_is_exclusive(x_21); -if (x_65 == 0) -{ -lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_66 = lean_ctor_get(x_21, 0); -x_67 = lean_unsigned_to_nat(0u); -x_68 = lean_nat_dec_eq(x_66, x_67); -if (x_68 == 1) -{ -lean_object* x_69; -lean_free_object(x_21); -lean_dec(x_66); -lean_dec_ref(x_63); -lean_free_object(x_25); -x_69 = l_Lean_Compiler_LCNF_Simp_simp(x_64, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_69) == 0) -{ -uint8_t x_70; -x_70 = !lean_is_exclusive(x_69); -if (x_70 == 0) -{ -lean_object* x_71; lean_object* x_72; -x_71 = lean_ctor_get(x_69, 0); -if (lean_is_scalar(x_22)) { - x_72 = lean_alloc_ctor(1, 1, 0); -} else { - x_72 = x_22; -} -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_69, 0, x_72); -return x_69; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_69, 0); +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; +lean_free_object(x_39); +lean_free_object(x_24); +x_45 = lean_ctor_get(x_41, 1); +lean_inc_ref(x_45); +x_46 = lean_ctor_get(x_41, 2); +lean_inc_ref(x_46); +lean_dec_ref(x_41); +x_47 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_47); +x_48 = lean_ctor_get(x_26, 1); +lean_inc_ref(x_48); +lean_dec_ref(x_26); +x_73 = lean_ctor_get(x_47, 3); lean_inc(x_73); -lean_dec(x_69); -if (lean_is_scalar(x_22)) { - x_74 = lean_alloc_ctor(1, 1, 0); -} else { - x_74 = x_22; -} -lean_ctor_set(x_74, 0, x_73); -x_75 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_75, 0, x_74); -return x_75; -} -} -else -{ -uint8_t x_76; -lean_dec(x_22); -x_76 = !lean_is_exclusive(x_69); +lean_dec_ref(x_47); +x_74 = lean_unsigned_to_nat(0u); +x_75 = lean_array_get_size(x_48); +x_76 = lean_nat_dec_le(x_73, x_74); if (x_76 == 0) { -return x_69; +x_49 = x_73; +x_50 = x_75; +goto block_72; } else { -lean_object* x_77; lean_object* x_78; -x_77 = lean_ctor_get(x_69, 0); -lean_inc(x_77); -lean_dec(x_69); -x_78 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_78, 0, x_77); -return x_78; +lean_dec(x_73); +x_49 = x_74; +x_50 = x_75; +goto block_72; } -} -} -else +block_72: { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_79 = lean_unsigned_to_nat(1u); -x_80 = lean_nat_sub(x_66, x_79); -lean_dec(x_66); -lean_ctor_set_tag(x_21, 0); -lean_ctor_set(x_21, 0, x_80); -x_81 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_81, 0, x_21); -x_82 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); -lean_inc(x_8); -lean_inc_ref(x_7); +lean_object* x_51; size_t x_52; size_t x_53; lean_object* x_54; +x_51 = l_Array_toSubarray___redArg(x_48, x_49, x_50); +x_52 = lean_array_size(x_45); +x_53 = 0; +x_54 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_45, x_52, x_53, x_51, x_3); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; +lean_dec_ref(x_54); lean_inc(x_6); -lean_inc_ref(x_5); -x_83 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_13, x_81, x_82, x_5, x_6, x_7, x_8); +x_55 = l_Lean_Compiler_LCNF_Simp_simp(x_46, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +lean_dec_ref(x_55); +x_57 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_45, x_6); +lean_dec(x_6); +lean_dec_ref(x_45); +if (lean_obj_tag(x_57) == 0) +{ +uint8_t x_58; +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_57, 0); +lean_dec(x_59); +if (lean_is_scalar(x_32)) { + x_60 = lean_alloc_ctor(1, 1, 0); +} else { + x_60 = x_32; +} +lean_ctor_set(x_60, 0, x_56); +lean_ctor_set(x_57, 0, x_60); +return x_57; +} +else +{ +lean_object* x_61; lean_object* x_62; +lean_dec(x_57); +if (lean_is_scalar(x_32)) { + x_61 = lean_alloc_ctor(1, 1, 0); +} else { + x_61 = x_32; +} +lean_ctor_set(x_61, 0, x_56); +x_62 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_62, 0, x_61); +return x_62; +} +} +else +{ +uint8_t x_63; +lean_dec(x_56); +lean_dec(x_32); +x_63 = !lean_is_exclusive(x_57); +if (x_63 == 0) +{ +return x_57; +} +else +{ +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_57, 0); +lean_inc(x_64); +lean_dec(x_57); +x_65 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_65, 0, x_64); +return x_65; +} +} +} +else +{ +uint8_t x_66; +lean_dec_ref(x_45); +lean_dec(x_32); +lean_dec(x_6); +x_66 = !lean_is_exclusive(x_55); +if (x_66 == 0) +{ +return x_55; +} +else +{ +lean_object* x_67; lean_object* x_68; +x_67 = lean_ctor_get(x_55, 0); +lean_inc(x_67); +lean_dec(x_55); +x_68 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_68, 0, x_67); +return x_68; +} +} +} +else +{ +uint8_t x_69; +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_32); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_69 = !lean_is_exclusive(x_54); +if (x_69 == 0) +{ +return x_54; +} +else +{ +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_54, 0); +lean_inc(x_70); +lean_dec(x_54); +x_71 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_71, 0, x_70); +return x_71; +} +} +} +} +else +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_77 = lean_ctor_get(x_41, 1); +lean_inc_ref(x_77); +x_78 = lean_ctor_get(x_41, 2); +lean_inc_ref(x_78); +lean_dec_ref(x_41); +x_79 = !lean_is_exclusive(x_26); +if (x_79 == 0) +{ +lean_object* x_80; lean_object* x_81; uint8_t x_82; +x_80 = lean_ctor_get(x_26, 0); +x_81 = lean_unsigned_to_nat(0u); +x_82 = lean_nat_dec_eq(x_80, x_81); +if (x_82 == 1) +{ +lean_object* x_83; +lean_free_object(x_26); +lean_dec(x_80); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_free_object(x_24); +x_83 = l_Lean_Compiler_LCNF_Simp_simp(x_78, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_83) == 0) { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_84 = lean_ctor_get(x_83, 0); -lean_inc(x_84); -lean_dec_ref(x_83); -x_85 = lean_array_get_borrowed(x_23, x_63, x_67); -x_86 = lean_ctor_get(x_85, 0); -x_87 = lean_ctor_get(x_84, 0); +uint8_t x_84; +x_84 = !lean_is_exclusive(x_83); +if (x_84 == 0) +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_83, 0); +if (lean_is_scalar(x_32)) { + x_86 = lean_alloc_ctor(1, 1, 0); +} else { + x_86 = x_32; +} +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_83, 0, x_86); +return x_83; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_83, 0); lean_inc(x_87); -lean_inc(x_86); -x_88 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_86, x_87, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; -lean_dec_ref(x_88); -lean_inc(x_6); -x_89 = l_Lean_Compiler_LCNF_Simp_simp(x_64, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_89) == 0) -{ -lean_object* x_90; lean_object* x_91; -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -lean_dec_ref(x_89); -x_91 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_63, x_6); -lean_dec(x_6); -lean_dec_ref(x_63); -if (lean_obj_tag(x_91) == 0) -{ -uint8_t x_92; -x_92 = !lean_is_exclusive(x_91); -if (x_92 == 0) -{ -lean_object* x_93; lean_object* x_94; -x_93 = lean_ctor_get(x_91, 0); -lean_dec(x_93); -lean_ctor_set(x_25, 1, x_90); -lean_ctor_set(x_25, 0, x_84); -if (lean_is_scalar(x_22)) { - x_94 = lean_alloc_ctor(1, 1, 0); +lean_dec(x_83); +if (lean_is_scalar(x_32)) { + x_88 = lean_alloc_ctor(1, 1, 0); } else { - x_94 = x_22; + x_88 = x_32; } -lean_ctor_set(x_94, 0, x_25); -lean_ctor_set(x_91, 0, x_94); -return x_91; -} -else -{ -lean_object* x_95; lean_object* x_96; -lean_dec(x_91); -lean_ctor_set(x_25, 1, x_90); -lean_ctor_set(x_25, 0, x_84); -if (lean_is_scalar(x_22)) { - x_95 = lean_alloc_ctor(1, 1, 0); -} else { - x_95 = x_22; -} -lean_ctor_set(x_95, 0, x_25); -x_96 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_96, 0, x_95); -return x_96; -} -} -else -{ -uint8_t x_97; -lean_dec(x_90); -lean_dec(x_84); -lean_free_object(x_25); -lean_dec(x_22); -x_97 = !lean_is_exclusive(x_91); -if (x_97 == 0) -{ -return x_91; -} -else -{ -lean_object* x_98; lean_object* x_99; -x_98 = lean_ctor_get(x_91, 0); -lean_inc(x_98); -lean_dec(x_91); -x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_98); -return x_99; -} -} -} -else -{ -uint8_t x_100; -lean_dec(x_84); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_6); -x_100 = !lean_is_exclusive(x_89); -if (x_100 == 0) -{ +lean_ctor_set(x_88, 0, x_87); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_88); return x_89; } -else -{ -lean_object* x_101; lean_object* x_102; -x_101 = lean_ctor_get(x_89, 0); -lean_inc(x_101); -lean_dec(x_89); -x_102 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_102, 0, x_101); -return x_102; -} -} } else { -uint8_t x_103; -lean_dec(x_84); -lean_dec_ref(x_64); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_103 = !lean_is_exclusive(x_88); -if (x_103 == 0) -{ -return x_88; -} -else -{ -lean_object* x_104; lean_object* x_105; -x_104 = lean_ctor_get(x_88, 0); -lean_inc(x_104); -lean_dec(x_88); -x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_104); -return x_105; -} -} -} -else -{ -uint8_t x_106; -lean_dec_ref(x_64); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_106 = !lean_is_exclusive(x_83); -if (x_106 == 0) +uint8_t x_90; +lean_dec(x_32); +x_90 = !lean_is_exclusive(x_83); +if (x_90 == 0) { return x_83; } else { -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_83, 0); -lean_inc(x_107); +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_83, 0); +lean_inc(x_91); lean_dec(x_83); -x_108 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_108, 0, x_107); -return x_108; -} +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +return x_92; } } } else { -lean_object* x_109; lean_object* x_110; uint8_t x_111; -x_109 = lean_ctor_get(x_21, 0); -lean_inc(x_109); -lean_dec(x_21); -x_110 = lean_unsigned_to_nat(0u); -x_111 = lean_nat_dec_eq(x_109, x_110); -if (x_111 == 1) -{ -lean_object* x_112; -lean_dec(x_109); -lean_dec_ref(x_63); -lean_free_object(x_25); -x_112 = l_Lean_Compiler_LCNF_Simp_simp(x_64, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_112) == 0) -{ -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - x_114 = x_112; -} else { - lean_dec_ref(x_112); - x_114 = lean_box(0); -} -if (lean_is_scalar(x_22)) { - x_115 = lean_alloc_ctor(1, 1, 0); -} else { - x_115 = x_22; -} -lean_ctor_set(x_115, 0, x_113); -if (lean_is_scalar(x_114)) { - x_116 = lean_alloc_ctor(0, 1, 0); -} else { - x_116 = x_114; -} -lean_ctor_set(x_116, 0, x_115); -return x_116; -} -else -{ -lean_object* x_117; lean_object* x_118; lean_object* x_119; -lean_dec(x_22); -x_117 = lean_ctor_get(x_112, 0); -lean_inc(x_117); -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - x_118 = x_112; -} else { - lean_dec_ref(x_112); - x_118 = lean_box(0); -} -if (lean_is_scalar(x_118)) { - x_119 = lean_alloc_ctor(1, 1, 0); -} else { - x_119 = x_118; -} -lean_ctor_set(x_119, 0, x_117); -return x_119; -} -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_120 = lean_unsigned_to_nat(1u); -x_121 = lean_nat_sub(x_109, x_120); -lean_dec(x_109); -x_122 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_122, 0, x_121); -x_123 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_123, 0, x_122); -x_124 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_93 = lean_unsigned_to_nat(1u); +x_94 = lean_nat_sub(x_80, x_93); +lean_dec(x_80); +lean_ctor_set_tag(x_26, 0); +lean_ctor_set(x_26, 0, x_94); +lean_ctor_set_tag(x_24, 0); +x_95 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_125 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_13, x_123, x_124, x_5, x_6, x_7, x_8); +x_96 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_24, x_95, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +lean_dec_ref(x_96); +x_98 = lean_array_get_borrowed(x_38, x_77, x_81); +x_99 = lean_ctor_get(x_98, 0); +x_100 = lean_ctor_get(x_97, 0); +lean_inc(x_100); +lean_inc(x_99); +x_101 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_99, x_100, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; +lean_dec_ref(x_101); +lean_inc(x_6); +x_102 = l_Lean_Compiler_LCNF_Simp_simp(x_78, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_102) == 0) +{ +lean_object* x_103; lean_object* x_104; +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +lean_dec_ref(x_102); +x_104 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_77, x_6); +lean_dec(x_6); +lean_dec_ref(x_77); +if (lean_obj_tag(x_104) == 0) +{ +uint8_t x_105; +x_105 = !lean_is_exclusive(x_104); +if (x_105 == 0) +{ +lean_object* x_106; lean_object* x_107; +x_106 = lean_ctor_get(x_104, 0); +lean_dec(x_106); +lean_ctor_set(x_39, 1, x_103); +lean_ctor_set(x_39, 0, x_97); +if (lean_is_scalar(x_32)) { + x_107 = lean_alloc_ctor(1, 1, 0); +} else { + x_107 = x_32; +} +lean_ctor_set(x_107, 0, x_39); +lean_ctor_set(x_104, 0, x_107); +return x_104; +} +else +{ +lean_object* x_108; lean_object* x_109; +lean_dec(x_104); +lean_ctor_set(x_39, 1, x_103); +lean_ctor_set(x_39, 0, x_97); +if (lean_is_scalar(x_32)) { + x_108 = lean_alloc_ctor(1, 1, 0); +} else { + x_108 = x_32; +} +lean_ctor_set(x_108, 0, x_39); +x_109 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +else +{ +uint8_t x_110; +lean_dec(x_103); +lean_dec(x_97); +lean_free_object(x_39); +lean_dec(x_32); +x_110 = !lean_is_exclusive(x_104); +if (x_110 == 0) +{ +return x_104; +} +else +{ +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_104, 0); +lean_inc(x_111); +lean_dec(x_104); +x_112 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_112, 0, x_111); +return x_112; +} +} +} +else +{ +uint8_t x_113; +lean_dec(x_97); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); +lean_dec(x_6); +x_113 = !lean_is_exclusive(x_102); +if (x_113 == 0) +{ +return x_102; +} +else +{ +lean_object* x_114; lean_object* x_115; +x_114 = lean_ctor_get(x_102, 0); +lean_inc(x_114); +lean_dec(x_102); +x_115 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_115, 0, x_114); +return x_115; +} +} +} +else +{ +uint8_t x_116; +lean_dec(x_97); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_116 = !lean_is_exclusive(x_101); +if (x_116 == 0) +{ +return x_101; +} +else +{ +lean_object* x_117; lean_object* x_118; +x_117 = lean_ctor_get(x_101, 0); +lean_inc(x_117); +lean_dec(x_101); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_117); +return x_118; +} +} +} +else +{ +uint8_t x_119; +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_119 = !lean_is_exclusive(x_96); +if (x_119 == 0) +{ +return x_96; +} +else +{ +lean_object* x_120; lean_object* x_121; +x_120 = lean_ctor_get(x_96, 0); +lean_inc(x_120); +lean_dec(x_96); +x_121 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_121, 0, x_120); +return x_121; +} +} +} +} +else +{ +lean_object* x_122; lean_object* x_123; uint8_t x_124; +x_122 = lean_ctor_get(x_26, 0); +lean_inc(x_122); +lean_dec(x_26); +x_123 = lean_unsigned_to_nat(0u); +x_124 = lean_nat_dec_eq(x_122, x_123); +if (x_124 == 1) +{ +lean_object* x_125; +lean_dec(x_122); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_free_object(x_24); +x_125 = l_Lean_Compiler_LCNF_Simp_simp(x_78, x_2, x_3, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_125) == 0) { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; x_126 = lean_ctor_get(x_125, 0); lean_inc(x_126); -lean_dec_ref(x_125); -x_127 = lean_array_get_borrowed(x_23, x_63, x_110); -x_128 = lean_ctor_get(x_127, 0); -x_129 = lean_ctor_get(x_126, 0); -lean_inc(x_129); -lean_inc(x_128); -x_130 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_128, x_129, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_130) == 0) -{ -lean_object* x_131; -lean_dec_ref(x_130); -lean_inc(x_6); -x_131 = l_Lean_Compiler_LCNF_Simp_simp(x_64, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_131) == 0) -{ -lean_object* x_132; lean_object* x_133; -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -lean_dec_ref(x_131); -x_133 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_63, x_6); -lean_dec(x_6); -lean_dec_ref(x_63); -if (lean_obj_tag(x_133) == 0) -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; -if (lean_is_exclusive(x_133)) { - lean_ctor_release(x_133, 0); - x_134 = x_133; -} else { - lean_dec_ref(x_133); - x_134 = lean_box(0); -} -lean_ctor_set(x_25, 1, x_132); -lean_ctor_set(x_25, 0, x_126); -if (lean_is_scalar(x_22)) { - x_135 = lean_alloc_ctor(1, 1, 0); -} else { - x_135 = x_22; -} -lean_ctor_set(x_135, 0, x_25); -if (lean_is_scalar(x_134)) { - x_136 = lean_alloc_ctor(0, 1, 0); -} else { - x_136 = x_134; -} -lean_ctor_set(x_136, 0, x_135); -return x_136; -} -else -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_132); -lean_dec(x_126); -lean_free_object(x_25); -lean_dec(x_22); -x_137 = lean_ctor_get(x_133, 0); -lean_inc(x_137); -if (lean_is_exclusive(x_133)) { - lean_ctor_release(x_133, 0); - x_138 = x_133; -} else { - lean_dec_ref(x_133); - x_138 = lean_box(0); -} -if (lean_is_scalar(x_138)) { - x_139 = lean_alloc_ctor(1, 1, 0); -} else { - x_139 = x_138; -} -lean_ctor_set(x_139, 0, x_137); -return x_139; -} -} -else -{ -lean_object* x_140; lean_object* x_141; lean_object* x_142; -lean_dec(x_126); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_6); -x_140 = lean_ctor_get(x_131, 0); -lean_inc(x_140); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - x_141 = x_131; -} else { - lean_dec_ref(x_131); - x_141 = lean_box(0); -} -if (lean_is_scalar(x_141)) { - x_142 = lean_alloc_ctor(1, 1, 0); -} else { - x_142 = x_141; -} -lean_ctor_set(x_142, 0, x_140); -return x_142; -} -} -else -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -lean_dec(x_126); -lean_dec_ref(x_64); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_143 = lean_ctor_get(x_130, 0); -lean_inc(x_143); -if (lean_is_exclusive(x_130)) { - lean_ctor_release(x_130, 0); - x_144 = x_130; -} else { - lean_dec_ref(x_130); - x_144 = lean_box(0); -} -if (lean_is_scalar(x_144)) { - x_145 = lean_alloc_ctor(1, 1, 0); -} else { - x_145 = x_144; -} -lean_ctor_set(x_145, 0, x_143); -return x_145; -} -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; -lean_dec_ref(x_64); -lean_dec_ref(x_63); -lean_free_object(x_25); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_146 = lean_ctor_get(x_125, 0); -lean_inc(x_146); if (lean_is_exclusive(x_125)) { lean_ctor_release(x_125, 0); - x_147 = x_125; + x_127 = x_125; } else { lean_dec_ref(x_125); - x_147 = lean_box(0); + x_127 = lean_box(0); } -if (lean_is_scalar(x_147)) { - x_148 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_32)) { + x_128 = lean_alloc_ctor(1, 1, 0); } else { - x_148 = x_147; + x_128 = x_32; } -lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_128, 0, x_126); +if (lean_is_scalar(x_127)) { + x_129 = lean_alloc_ctor(0, 1, 0); +} else { + x_129 = x_127; +} +lean_ctor_set(x_129, 0, x_128); +return x_129; +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; +lean_dec(x_32); +x_130 = lean_ctor_get(x_125, 0); +lean_inc(x_130); +if (lean_is_exclusive(x_125)) { + lean_ctor_release(x_125, 0); + x_131 = x_125; +} else { + lean_dec_ref(x_125); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(1, 1, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_130); +return x_132; +} +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_133 = lean_unsigned_to_nat(1u); +x_134 = lean_nat_sub(x_122, x_133); +lean_dec(x_122); +x_135 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set_tag(x_24, 0); +lean_ctor_set(x_24, 0, x_135); +x_136 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_137 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_24, x_136, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_137) == 0) +{ +lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_138 = lean_ctor_get(x_137, 0); +lean_inc(x_138); +lean_dec_ref(x_137); +x_139 = lean_array_get_borrowed(x_38, x_77, x_123); +x_140 = lean_ctor_get(x_139, 0); +x_141 = lean_ctor_get(x_138, 0); +lean_inc(x_141); +lean_inc(x_140); +x_142 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_140, x_141, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_142) == 0) +{ +lean_object* x_143; +lean_dec_ref(x_142); +lean_inc(x_6); +x_143 = l_Lean_Compiler_LCNF_Simp_simp(x_78, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_143) == 0) +{ +lean_object* x_144; lean_object* x_145; +x_144 = lean_ctor_get(x_143, 0); +lean_inc(x_144); +lean_dec_ref(x_143); +x_145 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_77, x_6); +lean_dec(x_6); +lean_dec_ref(x_77); +if (lean_obj_tag(x_145) == 0) +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; +if (lean_is_exclusive(x_145)) { + lean_ctor_release(x_145, 0); + x_146 = x_145; +} else { + lean_dec_ref(x_145); + x_146 = lean_box(0); +} +lean_ctor_set(x_39, 1, x_144); +lean_ctor_set(x_39, 0, x_138); +if (lean_is_scalar(x_32)) { + x_147 = lean_alloc_ctor(1, 1, 0); +} else { + x_147 = x_32; +} +lean_ctor_set(x_147, 0, x_39); +if (lean_is_scalar(x_146)) { + x_148 = lean_alloc_ctor(0, 1, 0); +} else { + x_148 = x_146; +} +lean_ctor_set(x_148, 0, x_147); return x_148; } -} -} -} -} else { -lean_object* x_149; lean_object* x_150; -lean_free_object(x_25); -lean_dec(x_21); -x_149 = lean_ctor_get(x_27, 0); -lean_inc_ref(x_149); -lean_dec_ref(x_27); -x_150 = l_Lean_Compiler_LCNF_Simp_simp(x_149, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_150) == 0) -{ -uint8_t x_151; -x_151 = !lean_is_exclusive(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; -x_152 = lean_ctor_get(x_150, 0); -if (lean_is_scalar(x_22)) { - x_153 = lean_alloc_ctor(1, 1, 0); +lean_object* x_149; lean_object* x_150; lean_object* x_151; +lean_dec(x_144); +lean_dec(x_138); +lean_free_object(x_39); +lean_dec(x_32); +x_149 = lean_ctor_get(x_145, 0); +lean_inc(x_149); +if (lean_is_exclusive(x_145)) { + lean_ctor_release(x_145, 0); + x_150 = x_145; } else { - x_153 = x_22; + lean_dec_ref(x_145); + x_150 = lean_box(0); } -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_150, 0, x_153); -return x_150; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_154 = lean_ctor_get(x_150, 0); -lean_inc(x_154); -lean_dec(x_150); -if (lean_is_scalar(x_22)) { - x_155 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_150)) { + x_151 = lean_alloc_ctor(1, 1, 0); } else { - x_155 = x_22; + x_151 = x_150; } -lean_ctor_set(x_155, 0, x_154); -x_156 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_156, 0, x_155); -return x_156; +lean_ctor_set(x_151, 0, x_149); +return x_151; } } else { -uint8_t x_157; -lean_dec(x_22); -x_157 = !lean_is_exclusive(x_150); -if (x_157 == 0) -{ -return x_150; -} -else -{ -lean_object* x_158; lean_object* x_159; -x_158 = lean_ctor_get(x_150, 0); -lean_inc(x_158); -lean_dec(x_150); -x_159 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_159, 0, x_158); -return x_159; +lean_object* x_152; lean_object* x_153; lean_object* x_154; +lean_dec(x_138); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); +lean_dec(x_6); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +if (lean_is_exclusive(x_143)) { + lean_ctor_release(x_143, 0); + x_153 = x_143; +} else { + lean_dec_ref(x_143); + x_153 = lean_box(0); } +if (lean_is_scalar(x_153)) { + x_154 = lean_alloc_ctor(1, 1, 0); +} else { + x_154 = x_153; } +lean_ctor_set(x_154, 0, x_152); +return x_154; } } else { -uint8_t x_160; -lean_free_object(x_25); -lean_dec(x_27); -lean_dec(x_22); -lean_dec(x_21); +lean_object* x_155; lean_object* x_156; lean_object* x_157; +lean_dec(x_138); +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -10737,207 +10656,133 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_160 = !lean_is_exclusive(x_30); -if (x_160 == 0) +x_155 = lean_ctor_get(x_142, 0); +lean_inc(x_155); +if (lean_is_exclusive(x_142)) { + lean_ctor_release(x_142, 0); + x_156 = x_142; +} else { + lean_dec_ref(x_142); + x_156 = lean_box(0); +} +if (lean_is_scalar(x_156)) { + x_157 = lean_alloc_ctor(1, 1, 0); +} else { + x_157 = x_156; +} +lean_ctor_set(x_157, 0, x_155); +return x_157; +} +} +else { -return x_30; +lean_object* x_158; lean_object* x_159; lean_object* x_160; +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_free_object(x_39); +lean_dec(x_32); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_158 = lean_ctor_get(x_137, 0); +lean_inc(x_158); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + x_159 = x_137; +} else { + lean_dec_ref(x_137); + x_159 = lean_box(0); +} +if (lean_is_scalar(x_159)) { + x_160 = lean_alloc_ctor(1, 1, 0); +} else { + x_160 = x_159; +} +lean_ctor_set(x_160, 0, x_158); +return x_160; +} +} +} +} } else { lean_object* x_161; lean_object* x_162; -x_161 = lean_ctor_get(x_30, 0); -lean_inc(x_161); -lean_dec(x_30); -x_162 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_162, 0, x_161); -return x_162; -} -} -} -else +lean_free_object(x_39); +lean_free_object(x_24); +lean_dec(x_26); +x_161 = lean_ctor_get(x_41, 0); +lean_inc_ref(x_161); +lean_dec_ref(x_41); +x_162 = l_Lean_Compiler_LCNF_Simp_simp(x_161, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_162) == 0) { uint8_t x_163; -lean_free_object(x_25); -lean_dec(x_27); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_163 = !lean_is_exclusive(x_29); +x_163 = !lean_is_exclusive(x_162); if (x_163 == 0) { -return x_29; -} -else -{ lean_object* x_164; lean_object* x_165; -x_164 = lean_ctor_get(x_29, 0); -lean_inc(x_164); -lean_dec(x_29); -x_165 = lean_alloc_ctor(1, 1, 0); +x_164 = lean_ctor_get(x_162, 0); +if (lean_is_scalar(x_32)) { + x_165 = lean_alloc_ctor(1, 1, 0); +} else { + x_165 = x_32; +} lean_ctor_set(x_165, 0, x_164); -return x_165; -} -} +lean_ctor_set(x_162, 0, x_165); +return x_162; } else { lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_166 = lean_ctor_get(x_25, 0); -x_167 = lean_ctor_get(x_25, 1); -lean_inc(x_167); +x_166 = lean_ctor_get(x_162, 0); lean_inc(x_166); -lean_dec(x_25); -lean_ctor_set_tag(x_15, 4); -lean_ctor_set(x_15, 0, x_167); -x_168 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_13, x_15, x_6); -lean_dec_ref(x_15); -if (lean_obj_tag(x_168) == 0) -{ -lean_object* x_169; -lean_dec_ref(x_168); -x_169 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); -if (lean_obj_tag(x_169) == 0) -{ -lean_dec_ref(x_169); -if (lean_obj_tag(x_166) == 0) -{ -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; -x_170 = lean_ctor_get(x_166, 1); -lean_inc_ref(x_170); -x_171 = lean_ctor_get(x_166, 2); -lean_inc_ref(x_171); -lean_dec_ref(x_166); -x_172 = lean_ctor_get(x_21, 0); -lean_inc_ref(x_172); -x_173 = lean_ctor_get(x_21, 1); -lean_inc_ref(x_173); -lean_dec_ref(x_21); -x_196 = lean_ctor_get(x_172, 3); -lean_inc(x_196); -lean_dec_ref(x_172); -x_197 = lean_unsigned_to_nat(0u); -x_198 = lean_array_get_size(x_173); -x_199 = lean_nat_dec_le(x_196, x_197); -if (x_199 == 0) -{ -x_174 = x_196; -x_175 = x_198; -goto block_195; -} -else -{ -lean_dec(x_196); -x_174 = x_197; -x_175 = x_198; -goto block_195; -} -block_195: -{ -lean_object* x_176; size_t x_177; size_t x_178; lean_object* x_179; -x_176 = l_Array_toSubarray___redArg(x_173, x_174, x_175); -x_177 = lean_array_size(x_170); -x_178 = 0; -x_179 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_170, x_177, x_178, x_176, x_3); -if (lean_obj_tag(x_179) == 0) -{ -lean_object* x_180; -lean_dec_ref(x_179); -lean_inc(x_6); -x_180 = l_Lean_Compiler_LCNF_Simp_simp(x_171, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_180) == 0) -{ -lean_object* x_181; lean_object* x_182; -x_181 = lean_ctor_get(x_180, 0); -lean_inc(x_181); -lean_dec_ref(x_180); -x_182 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_170, x_6); -lean_dec(x_6); -lean_dec_ref(x_170); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; lean_object* x_184; lean_object* x_185; -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - x_183 = x_182; +lean_dec(x_162); +if (lean_is_scalar(x_32)) { + x_167 = lean_alloc_ctor(1, 1, 0); } else { - lean_dec_ref(x_182); - x_183 = lean_box(0); + x_167 = x_32; } -if (lean_is_scalar(x_22)) { - x_184 = lean_alloc_ctor(1, 1, 0); -} else { - x_184 = x_22; -} -lean_ctor_set(x_184, 0, x_181); -if (lean_is_scalar(x_183)) { - x_185 = lean_alloc_ctor(0, 1, 0); -} else { - x_185 = x_183; -} -lean_ctor_set(x_185, 0, x_184); -return x_185; -} -else -{ -lean_object* x_186; lean_object* x_187; lean_object* x_188; -lean_dec(x_181); -lean_dec(x_22); -x_186 = lean_ctor_get(x_182, 0); -lean_inc(x_186); -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - x_187 = x_182; -} else { - lean_dec_ref(x_182); - x_187 = lean_box(0); -} -if (lean_is_scalar(x_187)) { - x_188 = lean_alloc_ctor(1, 1, 0); -} else { - x_188 = x_187; -} -lean_ctor_set(x_188, 0, x_186); -return x_188; +lean_ctor_set(x_167, 0, x_166); +x_168 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_168, 0, x_167); +return x_168; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; -lean_dec_ref(x_170); -lean_dec(x_22); -lean_dec(x_6); -x_189 = lean_ctor_get(x_180, 0); -lean_inc(x_189); -if (lean_is_exclusive(x_180)) { - lean_ctor_release(x_180, 0); - x_190 = x_180; -} else { - lean_dec_ref(x_180); - x_190 = lean_box(0); +uint8_t x_169; +lean_dec(x_32); +x_169 = !lean_is_exclusive(x_162); +if (x_169 == 0) +{ +return x_162; +} +else +{ +lean_object* x_170; lean_object* x_171; +x_170 = lean_ctor_get(x_162, 0); +lean_inc(x_170); +lean_dec(x_162); +x_171 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_171, 0, x_170); +return x_171; } -if (lean_is_scalar(x_190)) { - x_191 = lean_alloc_ctor(1, 1, 0); -} else { - x_191 = x_190; } -lean_ctor_set(x_191, 0, x_189); -return x_191; } } else { -lean_object* x_192; lean_object* x_193; lean_object* x_194; -lean_dec_ref(x_171); -lean_dec_ref(x_170); -lean_dec(x_22); +uint8_t x_172; +lean_free_object(x_39); +lean_dec(x_41); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -10945,351 +10790,441 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_192 = lean_ctor_get(x_179, 0); -lean_inc(x_192); -if (lean_is_exclusive(x_179)) { - lean_ctor_release(x_179, 0); - x_193 = x_179; -} else { - lean_dec_ref(x_179); - x_193 = lean_box(0); +x_172 = !lean_is_exclusive(x_44); +if (x_172 == 0) +{ +return x_44; } -if (lean_is_scalar(x_193)) { - x_194 = lean_alloc_ctor(1, 1, 0); -} else { - x_194 = x_193; -} -lean_ctor_set(x_194, 0, x_192); -return x_194; +else +{ +lean_object* x_173; lean_object* x_174; +x_173 = lean_ctor_get(x_44, 0); +lean_inc(x_173); +lean_dec(x_44); +x_174 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_174, 0, x_173); +return x_174; } } } else { -lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; -x_200 = lean_ctor_get(x_166, 1); -lean_inc_ref(x_200); -x_201 = lean_ctor_get(x_166, 2); -lean_inc_ref(x_201); -lean_dec_ref(x_166); -x_202 = lean_ctor_get(x_21, 0); -lean_inc(x_202); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - x_203 = x_21; -} else { - lean_dec_ref(x_21); - x_203 = lean_box(0); -} -x_204 = lean_unsigned_to_nat(0u); -x_205 = lean_nat_dec_eq(x_202, x_204); -if (x_205 == 1) +uint8_t x_175; +lean_free_object(x_39); +lean_dec(x_41); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_206; -lean_dec(x_203); -lean_dec(x_202); -lean_dec_ref(x_200); -x_206 = l_Lean_Compiler_LCNF_Simp_simp(x_201, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_206) == 0) -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_207 = lean_ctor_get(x_206, 0); -lean_inc(x_207); -if (lean_is_exclusive(x_206)) { - lean_ctor_release(x_206, 0); - x_208 = x_206; -} else { - lean_dec_ref(x_206); - x_208 = lean_box(0); -} -if (lean_is_scalar(x_22)) { - x_209 = lean_alloc_ctor(1, 1, 0); -} else { - x_209 = x_22; -} -lean_ctor_set(x_209, 0, x_207); -if (lean_is_scalar(x_208)) { - x_210 = lean_alloc_ctor(0, 1, 0); -} else { - x_210 = x_208; -} -lean_ctor_set(x_210, 0, x_209); -return x_210; +return x_43; } else { -lean_object* x_211; lean_object* x_212; lean_object* x_213; -lean_dec(x_22); -x_211 = lean_ctor_get(x_206, 0); -lean_inc(x_211); -if (lean_is_exclusive(x_206)) { - lean_ctor_release(x_206, 0); - x_212 = x_206; -} else { - lean_dec_ref(x_206); - x_212 = lean_box(0); +lean_object* x_176; lean_object* x_177; +x_176 = lean_ctor_get(x_43, 0); +lean_inc(x_176); +lean_dec(x_43); +x_177 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_177, 0, x_176); +return x_177; } -if (lean_is_scalar(x_212)) { - x_213 = lean_alloc_ctor(1, 1, 0); -} else { - x_213 = x_212; -} -lean_ctor_set(x_213, 0, x_211); -return x_213; } } else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; -x_214 = lean_unsigned_to_nat(1u); -x_215 = lean_nat_sub(x_202, x_214); -lean_dec(x_202); -if (lean_is_scalar(x_203)) { - x_216 = lean_alloc_ctor(0, 1, 0); -} else { - x_216 = x_203; - lean_ctor_set_tag(x_216, 0); +lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_178 = lean_ctor_get(x_39, 0); +x_179 = lean_ctor_get(x_39, 1); +lean_inc(x_179); +lean_inc(x_178); +lean_dec(x_39); +lean_ctor_set_tag(x_31, 4); +lean_ctor_set(x_31, 0, x_179); +x_180 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_18, x_31, x_6); +lean_dec_ref(x_31); +if (lean_obj_tag(x_180) == 0) +{ +lean_object* x_181; +lean_dec_ref(x_180); +x_181 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); +if (lean_obj_tag(x_181) == 0) +{ +lean_dec_ref(x_181); +if (lean_obj_tag(x_178) == 0) +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; +lean_free_object(x_24); +x_182 = lean_ctor_get(x_178, 1); +lean_inc_ref(x_182); +x_183 = lean_ctor_get(x_178, 2); +lean_inc_ref(x_183); +lean_dec_ref(x_178); +x_184 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_184); +x_185 = lean_ctor_get(x_26, 1); +lean_inc_ref(x_185); +lean_dec_ref(x_26); +x_208 = lean_ctor_get(x_184, 3); +lean_inc(x_208); +lean_dec_ref(x_184); +x_209 = lean_unsigned_to_nat(0u); +x_210 = lean_array_get_size(x_185); +x_211 = lean_nat_dec_le(x_208, x_209); +if (x_211 == 0) +{ +x_186 = x_208; +x_187 = x_210; +goto block_207; } -lean_ctor_set(x_216, 0, x_215); -x_217 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_217, 0, x_216); -x_218 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +else +{ +lean_dec(x_208); +x_186 = x_209; +x_187 = x_210; +goto block_207; +} +block_207: +{ +lean_object* x_188; size_t x_189; size_t x_190; lean_object* x_191; +x_188 = l_Array_toSubarray___redArg(x_185, x_186, x_187); +x_189 = lean_array_size(x_182); +x_190 = 0; +x_191 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_182, x_189, x_190, x_188, x_3); +if (lean_obj_tag(x_191) == 0) +{ +lean_object* x_192; +lean_dec_ref(x_191); +lean_inc(x_6); +x_192 = l_Lean_Compiler_LCNF_Simp_simp(x_183, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_192) == 0) +{ +lean_object* x_193; lean_object* x_194; +x_193 = lean_ctor_get(x_192, 0); +lean_inc(x_193); +lean_dec_ref(x_192); +x_194 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_182, x_6); +lean_dec(x_6); +lean_dec_ref(x_182); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_195 = x_194; +} else { + lean_dec_ref(x_194); + x_195 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_196 = lean_alloc_ctor(1, 1, 0); +} else { + x_196 = x_32; +} +lean_ctor_set(x_196, 0, x_193); +if (lean_is_scalar(x_195)) { + x_197 = lean_alloc_ctor(0, 1, 0); +} else { + x_197 = x_195; +} +lean_ctor_set(x_197, 0, x_196); +return x_197; +} +else +{ +lean_object* x_198; lean_object* x_199; lean_object* x_200; +lean_dec(x_193); +lean_dec(x_32); +x_198 = lean_ctor_get(x_194, 0); +lean_inc(x_198); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_199 = x_194; +} else { + lean_dec_ref(x_194); + x_199 = lean_box(0); +} +if (lean_is_scalar(x_199)) { + x_200 = lean_alloc_ctor(1, 1, 0); +} else { + x_200 = x_199; +} +lean_ctor_set(x_200, 0, x_198); +return x_200; +} +} +else +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; +lean_dec_ref(x_182); +lean_dec(x_32); +lean_dec(x_6); +x_201 = lean_ctor_get(x_192, 0); +lean_inc(x_201); +if (lean_is_exclusive(x_192)) { + lean_ctor_release(x_192, 0); + x_202 = x_192; +} else { + lean_dec_ref(x_192); + x_202 = lean_box(0); +} +if (lean_is_scalar(x_202)) { + x_203 = lean_alloc_ctor(1, 1, 0); +} else { + x_203 = x_202; +} +lean_ctor_set(x_203, 0, x_201); +return x_203; +} +} +else +{ +lean_object* x_204; lean_object* x_205; lean_object* x_206; +lean_dec_ref(x_183); +lean_dec_ref(x_182); +lean_dec(x_32); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_204 = lean_ctor_get(x_191, 0); +lean_inc(x_204); +if (lean_is_exclusive(x_191)) { + lean_ctor_release(x_191, 0); + x_205 = x_191; +} else { + lean_dec_ref(x_191); + x_205 = lean_box(0); +} +if (lean_is_scalar(x_205)) { + x_206 = lean_alloc_ctor(1, 1, 0); +} else { + x_206 = x_205; +} +lean_ctor_set(x_206, 0, x_204); +return x_206; +} +} +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; +x_212 = lean_ctor_get(x_178, 1); +lean_inc_ref(x_212); +x_213 = lean_ctor_get(x_178, 2); +lean_inc_ref(x_213); +lean_dec_ref(x_178); +x_214 = lean_ctor_get(x_26, 0); +lean_inc(x_214); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + x_215 = x_26; +} else { + lean_dec_ref(x_26); + x_215 = lean_box(0); +} +x_216 = lean_unsigned_to_nat(0u); +x_217 = lean_nat_dec_eq(x_214, x_216); +if (x_217 == 1) +{ +lean_object* x_218; +lean_dec(x_215); +lean_dec(x_214); +lean_dec_ref(x_212); +lean_free_object(x_24); +x_218 = l_Lean_Compiler_LCNF_Simp_simp(x_213, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + x_220 = x_218; +} else { + lean_dec_ref(x_218); + x_220 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_221 = lean_alloc_ctor(1, 1, 0); +} else { + x_221 = x_32; +} +lean_ctor_set(x_221, 0, x_219); +if (lean_is_scalar(x_220)) { + x_222 = lean_alloc_ctor(0, 1, 0); +} else { + x_222 = x_220; +} +lean_ctor_set(x_222, 0, x_221); +return x_222; +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; +lean_dec(x_32); +x_223 = lean_ctor_get(x_218, 0); +lean_inc(x_223); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + x_224 = x_218; +} else { + lean_dec_ref(x_218); + x_224 = lean_box(0); +} +if (lean_is_scalar(x_224)) { + x_225 = lean_alloc_ctor(1, 1, 0); +} else { + x_225 = x_224; +} +lean_ctor_set(x_225, 0, x_223); +return x_225; +} +} +else +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_226 = lean_unsigned_to_nat(1u); +x_227 = lean_nat_sub(x_214, x_226); +lean_dec(x_214); +if (lean_is_scalar(x_215)) { + x_228 = lean_alloc_ctor(0, 1, 0); +} else { + x_228 = x_215; + lean_ctor_set_tag(x_228, 0); +} +lean_ctor_set(x_228, 0, x_227); +lean_ctor_set_tag(x_24, 0); +lean_ctor_set(x_24, 0, x_228); +x_229 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_219 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_13, x_217, x_218, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_219) == 0) +x_230 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_24, x_229, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_230) == 0) { -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_220 = lean_ctor_get(x_219, 0); -lean_inc(x_220); -lean_dec_ref(x_219); -x_221 = lean_array_get_borrowed(x_23, x_200, x_204); -x_222 = lean_ctor_get(x_221, 0); -x_223 = lean_ctor_get(x_220, 0); -lean_inc(x_223); -lean_inc(x_222); -x_224 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_222, x_223, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_224) == 0) +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_231 = lean_ctor_get(x_230, 0); +lean_inc(x_231); +lean_dec_ref(x_230); +x_232 = lean_array_get_borrowed(x_38, x_212, x_216); +x_233 = lean_ctor_get(x_232, 0); +x_234 = lean_ctor_get(x_231, 0); +lean_inc(x_234); +lean_inc(x_233); +x_235 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_233, x_234, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_235) == 0) { -lean_object* x_225; -lean_dec_ref(x_224); +lean_object* x_236; +lean_dec_ref(x_235); lean_inc(x_6); -x_225 = l_Lean_Compiler_LCNF_Simp_simp(x_201, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_225) == 0) +x_236 = l_Lean_Compiler_LCNF_Simp_simp(x_213, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_236) == 0) { -lean_object* x_226; lean_object* x_227; -x_226 = lean_ctor_get(x_225, 0); -lean_inc(x_226); -lean_dec_ref(x_225); -x_227 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_200, x_6); +lean_object* x_237; lean_object* x_238; +x_237 = lean_ctor_get(x_236, 0); +lean_inc(x_237); +lean_dec_ref(x_236); +x_238 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_212, x_6); lean_dec(x_6); -lean_dec_ref(x_200); -if (lean_obj_tag(x_227) == 0) +lean_dec_ref(x_212); +if (lean_obj_tag(x_238) == 0) { -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; -if (lean_is_exclusive(x_227)) { - lean_ctor_release(x_227, 0); - x_228 = x_227; +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +if (lean_is_exclusive(x_238)) { + lean_ctor_release(x_238, 0); + x_239 = x_238; } else { - lean_dec_ref(x_227); - x_228 = lean_box(0); -} -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_220); -lean_ctor_set(x_229, 1, x_226); -if (lean_is_scalar(x_22)) { - x_230 = lean_alloc_ctor(1, 1, 0); -} else { - x_230 = x_22; -} -lean_ctor_set(x_230, 0, x_229); -if (lean_is_scalar(x_228)) { - x_231 = lean_alloc_ctor(0, 1, 0); -} else { - x_231 = x_228; -} -lean_ctor_set(x_231, 0, x_230); -return x_231; -} -else -{ -lean_object* x_232; lean_object* x_233; lean_object* x_234; -lean_dec(x_226); -lean_dec(x_220); -lean_dec(x_22); -x_232 = lean_ctor_get(x_227, 0); -lean_inc(x_232); -if (lean_is_exclusive(x_227)) { - lean_ctor_release(x_227, 0); - x_233 = x_227; -} else { - lean_dec_ref(x_227); - x_233 = lean_box(0); -} -if (lean_is_scalar(x_233)) { - x_234 = lean_alloc_ctor(1, 1, 0); -} else { - x_234 = x_233; -} -lean_ctor_set(x_234, 0, x_232); -return x_234; -} -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; -lean_dec(x_220); -lean_dec_ref(x_200); -lean_dec(x_22); -lean_dec(x_6); -x_235 = lean_ctor_get(x_225, 0); -lean_inc(x_235); -if (lean_is_exclusive(x_225)) { - lean_ctor_release(x_225, 0); - x_236 = x_225; -} else { - lean_dec_ref(x_225); - x_236 = lean_box(0); -} -if (lean_is_scalar(x_236)) { - x_237 = lean_alloc_ctor(1, 1, 0); -} else { - x_237 = x_236; -} -lean_ctor_set(x_237, 0, x_235); -return x_237; -} -} -else -{ -lean_object* x_238; lean_object* x_239; lean_object* x_240; -lean_dec(x_220); -lean_dec_ref(x_201); -lean_dec_ref(x_200); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_238 = lean_ctor_get(x_224, 0); -lean_inc(x_238); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - x_239 = x_224; -} else { - lean_dec_ref(x_224); + lean_dec_ref(x_238); x_239 = lean_box(0); } +x_240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_240, 0, x_231); +lean_ctor_set(x_240, 1, x_237); +if (lean_is_scalar(x_32)) { + x_241 = lean_alloc_ctor(1, 1, 0); +} else { + x_241 = x_32; +} +lean_ctor_set(x_241, 0, x_240); if (lean_is_scalar(x_239)) { - x_240 = lean_alloc_ctor(1, 1, 0); + x_242 = lean_alloc_ctor(0, 1, 0); } else { - x_240 = x_239; + x_242 = x_239; } -lean_ctor_set(x_240, 0, x_238); -return x_240; +lean_ctor_set(x_242, 0, x_241); +return x_242; +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; +lean_dec(x_237); +lean_dec(x_231); +lean_dec(x_32); +x_243 = lean_ctor_get(x_238, 0); +lean_inc(x_243); +if (lean_is_exclusive(x_238)) { + lean_ctor_release(x_238, 0); + x_244 = x_238; +} else { + lean_dec_ref(x_238); + x_244 = lean_box(0); +} +if (lean_is_scalar(x_244)) { + x_245 = lean_alloc_ctor(1, 1, 0); +} else { + x_245 = x_244; +} +lean_ctor_set(x_245, 0, x_243); +return x_245; } } else { -lean_object* x_241; lean_object* x_242; lean_object* x_243; -lean_dec_ref(x_201); -lean_dec_ref(x_200); -lean_dec(x_22); -lean_dec(x_8); -lean_dec_ref(x_7); +lean_object* x_246; lean_object* x_247; lean_object* x_248; +lean_dec(x_231); +lean_dec_ref(x_212); +lean_dec(x_32); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_241 = lean_ctor_get(x_219, 0); -lean_inc(x_241); -if (lean_is_exclusive(x_219)) { - lean_ctor_release(x_219, 0); - x_242 = x_219; -} else { - lean_dec_ref(x_219); - x_242 = lean_box(0); -} -if (lean_is_scalar(x_242)) { - x_243 = lean_alloc_ctor(1, 1, 0); -} else { - x_243 = x_242; -} -lean_ctor_set(x_243, 0, x_241); -return x_243; -} -} -} -} -else -{ -lean_object* x_244; lean_object* x_245; -lean_dec(x_21); -x_244 = lean_ctor_get(x_166, 0); -lean_inc_ref(x_244); -lean_dec_ref(x_166); -x_245 = l_Lean_Compiler_LCNF_Simp_simp(x_244, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_245) == 0) -{ -lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_246 = lean_ctor_get(x_245, 0); +x_246 = lean_ctor_get(x_236, 0); lean_inc(x_246); -if (lean_is_exclusive(x_245)) { - lean_ctor_release(x_245, 0); - x_247 = x_245; +if (lean_is_exclusive(x_236)) { + lean_ctor_release(x_236, 0); + x_247 = x_236; } else { - lean_dec_ref(x_245); + lean_dec_ref(x_236); x_247 = lean_box(0); } -if (lean_is_scalar(x_22)) { +if (lean_is_scalar(x_247)) { x_248 = lean_alloc_ctor(1, 1, 0); } else { - x_248 = x_22; + x_248 = x_247; } lean_ctor_set(x_248, 0, x_246); -if (lean_is_scalar(x_247)) { - x_249 = lean_alloc_ctor(0, 1, 0); -} else { - x_249 = x_247; -} -lean_ctor_set(x_249, 0, x_248); -return x_249; -} -else -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; -lean_dec(x_22); -x_250 = lean_ctor_get(x_245, 0); -lean_inc(x_250); -if (lean_is_exclusive(x_245)) { - lean_ctor_release(x_245, 0); - x_251 = x_245; -} else { - lean_dec_ref(x_245); - x_251 = lean_box(0); -} -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(1, 1, 0); -} else { - x_252 = x_251; -} -lean_ctor_set(x_252, 0, x_250); -return x_252; -} +return x_248; } } else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; -lean_dec(x_166); -lean_dec(x_22); -lean_dec(x_21); +lean_object* x_249; lean_object* x_250; lean_object* x_251; +lean_dec(x_231); +lean_dec_ref(x_213); +lean_dec_ref(x_212); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11297,30 +11232,30 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_253 = lean_ctor_get(x_169, 0); -lean_inc(x_253); -if (lean_is_exclusive(x_169)) { - lean_ctor_release(x_169, 0); - x_254 = x_169; +x_249 = lean_ctor_get(x_235, 0); +lean_inc(x_249); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + x_250 = x_235; } else { - lean_dec_ref(x_169); - x_254 = lean_box(0); + lean_dec_ref(x_235); + x_250 = lean_box(0); } -if (lean_is_scalar(x_254)) { - x_255 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_250)) { + x_251 = lean_alloc_ctor(1, 1, 0); } else { - x_255 = x_254; + x_251 = x_250; } -lean_ctor_set(x_255, 0, x_253); -return x_255; +lean_ctor_set(x_251, 0, x_249); +return x_251; } } else { -lean_object* x_256; lean_object* x_257; lean_object* x_258; -lean_dec(x_166); -lean_dec(x_22); -lean_dec(x_21); +lean_object* x_252; lean_object* x_253; lean_object* x_254; +lean_dec_ref(x_213); +lean_dec_ref(x_212); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11328,30 +11263,168 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_256 = lean_ctor_get(x_168, 0); -lean_inc(x_256); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - x_257 = x_168; +x_252 = lean_ctor_get(x_230, 0); +lean_inc(x_252); +if (lean_is_exclusive(x_230)) { + lean_ctor_release(x_230, 0); + x_253 = x_230; } else { - lean_dec_ref(x_168); - x_257 = lean_box(0); + lean_dec_ref(x_230); + x_253 = lean_box(0); } -if (lean_is_scalar(x_257)) { - x_258 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 1, 0); } else { - x_258 = x_257; + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_252); +return x_254; } -lean_ctor_set(x_258, 0, x_256); -return x_258; } } } else { -lean_object* x_259; -lean_dec(x_20); -lean_free_object(x_15); +lean_object* x_255; lean_object* x_256; +lean_free_object(x_24); +lean_dec(x_26); +x_255 = lean_ctor_get(x_178, 0); +lean_inc_ref(x_255); +lean_dec_ref(x_178); +x_256 = l_Lean_Compiler_LCNF_Simp_simp(x_255, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_256) == 0) +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; +x_257 = lean_ctor_get(x_256, 0); +lean_inc(x_257); +if (lean_is_exclusive(x_256)) { + lean_ctor_release(x_256, 0); + x_258 = x_256; +} else { + lean_dec_ref(x_256); + x_258 = lean_box(0); +} +if (lean_is_scalar(x_32)) { + x_259 = lean_alloc_ctor(1, 1, 0); +} else { + x_259 = x_32; +} +lean_ctor_set(x_259, 0, x_257); +if (lean_is_scalar(x_258)) { + x_260 = lean_alloc_ctor(0, 1, 0); +} else { + x_260 = x_258; +} +lean_ctor_set(x_260, 0, x_259); +return x_260; +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; +lean_dec(x_32); +x_261 = lean_ctor_get(x_256, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_256)) { + lean_ctor_release(x_256, 0); + x_262 = x_256; +} else { + lean_dec_ref(x_256); + x_262 = lean_box(0); +} +if (lean_is_scalar(x_262)) { + x_263 = lean_alloc_ctor(1, 1, 0); +} else { + x_263 = x_262; +} +lean_ctor_set(x_263, 0, x_261); +return x_263; +} +} +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +lean_dec(x_178); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_264 = lean_ctor_get(x_181, 0); +lean_inc(x_264); +if (lean_is_exclusive(x_181)) { + lean_ctor_release(x_181, 0); + x_265 = x_181; +} else { + lean_dec_ref(x_181); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(1, 1, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_264); +return x_266; +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; +lean_dec(x_178); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_267 = lean_ctor_get(x_180, 0); +lean_inc(x_267); +if (lean_is_exclusive(x_180)) { + lean_ctor_release(x_180, 0); + x_268 = x_180; +} else { + lean_dec_ref(x_180); + x_268 = lean_box(0); +} +if (lean_is_scalar(x_268)) { + x_269 = lean_alloc_ctor(1, 1, 0); +} else { + x_269 = x_268; +} +lean_ctor_set(x_269, 0, x_267); +return x_269; +} +} +} +} +else +{ +lean_object* x_270; lean_object* x_271; uint8_t x_272; +x_270 = lean_ctor_get(x_31, 0); +lean_inc(x_270); +lean_dec(x_31); +x_271 = lean_ctor_get(x_270, 1); +lean_inc(x_271); +lean_dec_ref(x_270); +x_272 = lean_name_eq(x_14, x_271); +lean_dec(x_271); +if (x_272 == 0) +{ +lean_object* x_273; +lean_dec(x_32); +lean_dec(x_29); +lean_free_object(x_24); +lean_dec(x_26); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11360,190 +11433,175 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_259 = lean_box(0); -lean_ctor_set(x_18, 0, x_259); -return x_18; -} +x_273 = lean_box(0); +lean_ctor_set(x_22, 0, x_273); +return x_22; } else { -lean_object* x_260; -x_260 = lean_ctor_get(x_18, 0); -lean_inc(x_260); -lean_dec(x_18); -if (lean_obj_tag(x_260) == 1) -{ -lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; -x_261 = lean_ctor_get(x_260, 0); -lean_inc(x_261); -if (lean_is_exclusive(x_260)) { - lean_ctor_release(x_260, 0); - x_262 = x_260; +lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +lean_free_object(x_22); +x_274 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; +x_275 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_18, x_1, x_29); +x_276 = lean_ctor_get(x_275, 0); +lean_inc(x_276); +x_277 = lean_ctor_get(x_275, 1); +lean_inc(x_277); +if (lean_is_exclusive(x_275)) { + lean_ctor_release(x_275, 0); + lean_ctor_release(x_275, 1); + x_278 = x_275; } else { - lean_dec_ref(x_260); - x_262 = lean_box(0); + lean_dec_ref(x_275); + x_278 = lean_box(0); } -x_263 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; -x_264 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_261); -x_265 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_13, x_1, x_264); -x_266 = lean_ctor_get(x_265, 0); -lean_inc(x_266); -x_267 = lean_ctor_get(x_265, 1); -lean_inc(x_267); -if (lean_is_exclusive(x_265)) { - lean_ctor_release(x_265, 0); - lean_ctor_release(x_265, 1); - x_268 = x_265; -} else { - lean_dec_ref(x_265); - x_268 = lean_box(0); -} -lean_ctor_set_tag(x_15, 4); -lean_ctor_set(x_15, 0, x_267); -x_269 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_13, x_15, x_6); -lean_dec_ref(x_15); -if (lean_obj_tag(x_269) == 0) -{ -lean_object* x_270; -lean_dec_ref(x_269); -x_270 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); -if (lean_obj_tag(x_270) == 0) -{ -lean_dec_ref(x_270); -if (lean_obj_tag(x_266) == 0) -{ -if (lean_obj_tag(x_261) == 0) -{ -lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_297; lean_object* x_298; lean_object* x_299; uint8_t x_300; -lean_dec(x_268); -x_271 = lean_ctor_get(x_266, 1); -lean_inc_ref(x_271); -x_272 = lean_ctor_get(x_266, 2); -lean_inc_ref(x_272); -lean_dec_ref(x_266); -x_273 = lean_ctor_get(x_261, 0); -lean_inc_ref(x_273); -x_274 = lean_ctor_get(x_261, 1); -lean_inc_ref(x_274); -lean_dec_ref(x_261); -x_297 = lean_ctor_get(x_273, 3); -lean_inc(x_297); -lean_dec_ref(x_273); -x_298 = lean_unsigned_to_nat(0u); -x_299 = lean_array_get_size(x_274); -x_300 = lean_nat_dec_le(x_297, x_298); -if (x_300 == 0) -{ -x_275 = x_297; -x_276 = x_299; -goto block_296; -} -else -{ -lean_dec(x_297); -x_275 = x_298; -x_276 = x_299; -goto block_296; -} -block_296: -{ -lean_object* x_277; size_t x_278; size_t x_279; lean_object* x_280; -x_277 = l_Array_toSubarray___redArg(x_274, x_275, x_276); -x_278 = lean_array_size(x_271); -x_279 = 0; -x_280 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_271, x_278, x_279, x_277, x_3); +x_279 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_279, 0, x_277); +x_280 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_18, x_279, x_6); +lean_dec_ref(x_279); if (lean_obj_tag(x_280) == 0) { lean_object* x_281; lean_dec_ref(x_280); -lean_inc(x_6); -x_281 = l_Lean_Compiler_LCNF_Simp_simp(x_272, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_281 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); if (lean_obj_tag(x_281) == 0) { -lean_object* x_282; lean_object* x_283; -x_282 = lean_ctor_get(x_281, 0); -lean_inc(x_282); lean_dec_ref(x_281); -x_283 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_271, x_6); +if (lean_obj_tag(x_276) == 0) +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_308; lean_object* x_309; lean_object* x_310; uint8_t x_311; +lean_dec(x_278); +lean_free_object(x_24); +x_282 = lean_ctor_get(x_276, 1); +lean_inc_ref(x_282); +x_283 = lean_ctor_get(x_276, 2); +lean_inc_ref(x_283); +lean_dec_ref(x_276); +x_284 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_284); +x_285 = lean_ctor_get(x_26, 1); +lean_inc_ref(x_285); +lean_dec_ref(x_26); +x_308 = lean_ctor_get(x_284, 3); +lean_inc(x_308); +lean_dec_ref(x_284); +x_309 = lean_unsigned_to_nat(0u); +x_310 = lean_array_get_size(x_285); +x_311 = lean_nat_dec_le(x_308, x_309); +if (x_311 == 0) +{ +x_286 = x_308; +x_287 = x_310; +goto block_307; +} +else +{ +lean_dec(x_308); +x_286 = x_309; +x_287 = x_310; +goto block_307; +} +block_307: +{ +lean_object* x_288; size_t x_289; size_t x_290; lean_object* x_291; +x_288 = l_Array_toSubarray___redArg(x_285, x_286, x_287); +x_289 = lean_array_size(x_282); +x_290 = 0; +x_291 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_282, x_289, x_290, x_288, x_3); +if (lean_obj_tag(x_291) == 0) +{ +lean_object* x_292; +lean_dec_ref(x_291); +lean_inc(x_6); +x_292 = l_Lean_Compiler_LCNF_Simp_simp(x_283, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_292) == 0) +{ +lean_object* x_293; lean_object* x_294; +x_293 = lean_ctor_get(x_292, 0); +lean_inc(x_293); +lean_dec_ref(x_292); +x_294 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_282, x_6); lean_dec(x_6); -lean_dec_ref(x_271); -if (lean_obj_tag(x_283) == 0) +lean_dec_ref(x_282); +if (lean_obj_tag(x_294) == 0) { -lean_object* x_284; lean_object* x_285; lean_object* x_286; -if (lean_is_exclusive(x_283)) { - lean_ctor_release(x_283, 0); - x_284 = x_283; +lean_object* x_295; lean_object* x_296; lean_object* x_297; +if (lean_is_exclusive(x_294)) { + lean_ctor_release(x_294, 0); + x_295 = x_294; } else { - lean_dec_ref(x_283); - x_284 = lean_box(0); + lean_dec_ref(x_294); + x_295 = lean_box(0); } -if (lean_is_scalar(x_262)) { - x_285 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_32)) { + x_296 = lean_alloc_ctor(1, 1, 0); } else { - x_285 = x_262; + x_296 = x_32; } -lean_ctor_set(x_285, 0, x_282); -if (lean_is_scalar(x_284)) { - x_286 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_296, 0, x_293); +if (lean_is_scalar(x_295)) { + x_297 = lean_alloc_ctor(0, 1, 0); } else { - x_286 = x_284; + x_297 = x_295; } -lean_ctor_set(x_286, 0, x_285); -return x_286; +lean_ctor_set(x_297, 0, x_296); +return x_297; } else { -lean_object* x_287; lean_object* x_288; lean_object* x_289; -lean_dec(x_282); -lean_dec(x_262); -x_287 = lean_ctor_get(x_283, 0); -lean_inc(x_287); -if (lean_is_exclusive(x_283)) { - lean_ctor_release(x_283, 0); - x_288 = x_283; +lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_dec(x_293); +lean_dec(x_32); +x_298 = lean_ctor_get(x_294, 0); +lean_inc(x_298); +if (lean_is_exclusive(x_294)) { + lean_ctor_release(x_294, 0); + x_299 = x_294; } else { - lean_dec_ref(x_283); - x_288 = lean_box(0); + lean_dec_ref(x_294); + x_299 = lean_box(0); } -if (lean_is_scalar(x_288)) { - x_289 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_299)) { + x_300 = lean_alloc_ctor(1, 1, 0); } else { - x_289 = x_288; + x_300 = x_299; } -lean_ctor_set(x_289, 0, x_287); -return x_289; +lean_ctor_set(x_300, 0, x_298); +return x_300; } } else { -lean_object* x_290; lean_object* x_291; lean_object* x_292; -lean_dec_ref(x_271); -lean_dec(x_262); +lean_object* x_301; lean_object* x_302; lean_object* x_303; +lean_dec_ref(x_282); +lean_dec(x_32); lean_dec(x_6); -x_290 = lean_ctor_get(x_281, 0); -lean_inc(x_290); -if (lean_is_exclusive(x_281)) { - lean_ctor_release(x_281, 0); - x_291 = x_281; +x_301 = lean_ctor_get(x_292, 0); +lean_inc(x_301); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + x_302 = x_292; } else { - lean_dec_ref(x_281); - x_291 = lean_box(0); + lean_dec_ref(x_292); + x_302 = lean_box(0); } -if (lean_is_scalar(x_291)) { - x_292 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_302)) { + x_303 = lean_alloc_ctor(1, 1, 0); } else { - x_292 = x_291; + x_303 = x_302; } -lean_ctor_set(x_292, 0, x_290); -return x_292; +lean_ctor_set(x_303, 0, x_301); +return x_303; } } else { -lean_object* x_293; lean_object* x_294; lean_object* x_295; -lean_dec_ref(x_272); -lean_dec_ref(x_271); -lean_dec(x_262); +lean_object* x_304; lean_object* x_305; lean_object* x_306; +lean_dec_ref(x_283); +lean_dec_ref(x_282); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11551,270 +11609,239 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_293 = lean_ctor_get(x_280, 0); -lean_inc(x_293); -if (lean_is_exclusive(x_280)) { - lean_ctor_release(x_280, 0); - x_294 = x_280; +x_304 = lean_ctor_get(x_291, 0); +lean_inc(x_304); +if (lean_is_exclusive(x_291)) { + lean_ctor_release(x_291, 0); + x_305 = x_291; } else { - lean_dec_ref(x_280); - x_294 = lean_box(0); + lean_dec_ref(x_291); + x_305 = lean_box(0); } -if (lean_is_scalar(x_294)) { - x_295 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_305)) { + x_306 = lean_alloc_ctor(1, 1, 0); } else { - x_295 = x_294; + x_306 = x_305; } -lean_ctor_set(x_295, 0, x_293); -return x_295; +lean_ctor_set(x_306, 0, x_304); +return x_306; } } } else { -lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_301 = lean_ctor_get(x_266, 1); -lean_inc_ref(x_301); -x_302 = lean_ctor_get(x_266, 2); -lean_inc_ref(x_302); -lean_dec_ref(x_266); -x_303 = lean_ctor_get(x_261, 0); -lean_inc(x_303); -if (lean_is_exclusive(x_261)) { - lean_ctor_release(x_261, 0); - x_304 = x_261; +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; uint8_t x_317; +x_312 = lean_ctor_get(x_276, 1); +lean_inc_ref(x_312); +x_313 = lean_ctor_get(x_276, 2); +lean_inc_ref(x_313); +lean_dec_ref(x_276); +x_314 = lean_ctor_get(x_26, 0); +lean_inc(x_314); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + x_315 = x_26; } else { - lean_dec_ref(x_261); - x_304 = lean_box(0); + lean_dec_ref(x_26); + x_315 = lean_box(0); } -x_305 = lean_unsigned_to_nat(0u); -x_306 = lean_nat_dec_eq(x_303, x_305); -if (x_306 == 1) +x_316 = lean_unsigned_to_nat(0u); +x_317 = lean_nat_dec_eq(x_314, x_316); +if (x_317 == 1) { -lean_object* x_307; -lean_dec(x_304); -lean_dec(x_303); -lean_dec_ref(x_301); -lean_dec(x_268); -x_307 = l_Lean_Compiler_LCNF_Simp_simp(x_302, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_307) == 0) +lean_object* x_318; +lean_dec(x_315); +lean_dec(x_314); +lean_dec_ref(x_312); +lean_dec(x_278); +lean_free_object(x_24); +x_318 = l_Lean_Compiler_LCNF_Simp_simp(x_313, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_318) == 0) { -lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; -x_308 = lean_ctor_get(x_307, 0); -lean_inc(x_308); -if (lean_is_exclusive(x_307)) { - lean_ctor_release(x_307, 0); - x_309 = x_307; +lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; +x_319 = lean_ctor_get(x_318, 0); +lean_inc(x_319); +if (lean_is_exclusive(x_318)) { + lean_ctor_release(x_318, 0); + x_320 = x_318; } else { - lean_dec_ref(x_307); - x_309 = lean_box(0); + lean_dec_ref(x_318); + x_320 = lean_box(0); } -if (lean_is_scalar(x_262)) { - x_310 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_32)) { + x_321 = lean_alloc_ctor(1, 1, 0); } else { - x_310 = x_262; + x_321 = x_32; } -lean_ctor_set(x_310, 0, x_308); -if (lean_is_scalar(x_309)) { - x_311 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_321, 0, x_319); +if (lean_is_scalar(x_320)) { + x_322 = lean_alloc_ctor(0, 1, 0); } else { - x_311 = x_309; + x_322 = x_320; } -lean_ctor_set(x_311, 0, x_310); -return x_311; +lean_ctor_set(x_322, 0, x_321); +return x_322; } else { -lean_object* x_312; lean_object* x_313; lean_object* x_314; -lean_dec(x_262); -x_312 = lean_ctor_get(x_307, 0); -lean_inc(x_312); -if (lean_is_exclusive(x_307)) { - lean_ctor_release(x_307, 0); - x_313 = x_307; +lean_object* x_323; lean_object* x_324; lean_object* x_325; +lean_dec(x_32); +x_323 = lean_ctor_get(x_318, 0); +lean_inc(x_323); +if (lean_is_exclusive(x_318)) { + lean_ctor_release(x_318, 0); + x_324 = x_318; } else { - lean_dec_ref(x_307); - x_313 = lean_box(0); + lean_dec_ref(x_318); + x_324 = lean_box(0); } -if (lean_is_scalar(x_313)) { - x_314 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_324)) { + x_325 = lean_alloc_ctor(1, 1, 0); } else { - x_314 = x_313; + x_325 = x_324; } -lean_ctor_set(x_314, 0, x_312); -return x_314; +lean_ctor_set(x_325, 0, x_323); +return x_325; } } else { -lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -x_315 = lean_unsigned_to_nat(1u); -x_316 = lean_nat_sub(x_303, x_315); -lean_dec(x_303); -if (lean_is_scalar(x_304)) { - x_317 = lean_alloc_ctor(0, 1, 0); +lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_326 = lean_unsigned_to_nat(1u); +x_327 = lean_nat_sub(x_314, x_326); +lean_dec(x_314); +if (lean_is_scalar(x_315)) { + x_328 = lean_alloc_ctor(0, 1, 0); } else { - x_317 = x_304; - lean_ctor_set_tag(x_317, 0); + x_328 = x_315; + lean_ctor_set_tag(x_328, 0); } -lean_ctor_set(x_317, 0, x_316); -x_318 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_318, 0, x_317); -x_319 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +lean_ctor_set(x_328, 0, x_327); +lean_ctor_set_tag(x_24, 0); +lean_ctor_set(x_24, 0, x_328); +x_329 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_320 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_13, x_318, x_319, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_320) == 0) +x_330 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_24, x_329, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_330) == 0) { -lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; -x_321 = lean_ctor_get(x_320, 0); -lean_inc(x_321); -lean_dec_ref(x_320); -x_322 = lean_array_get_borrowed(x_263, x_301, x_305); -x_323 = lean_ctor_get(x_322, 0); -x_324 = lean_ctor_get(x_321, 0); -lean_inc(x_324); -lean_inc(x_323); -x_325 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_323, x_324, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_325) == 0) -{ -lean_object* x_326; -lean_dec_ref(x_325); -lean_inc(x_6); -x_326 = l_Lean_Compiler_LCNF_Simp_simp(x_302, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_326) == 0) -{ -lean_object* x_327; lean_object* x_328; -x_327 = lean_ctor_get(x_326, 0); -lean_inc(x_327); -lean_dec_ref(x_326); -x_328 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_301, x_6); -lean_dec(x_6); -lean_dec_ref(x_301); -if (lean_obj_tag(x_328) == 0) -{ -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; -if (lean_is_exclusive(x_328)) { - lean_ctor_release(x_328, 0); - x_329 = x_328; -} else { - lean_dec_ref(x_328); - x_329 = lean_box(0); -} -if (lean_is_scalar(x_268)) { - x_330 = lean_alloc_ctor(0, 2, 0); -} else { - x_330 = x_268; -} -lean_ctor_set(x_330, 0, x_321); -lean_ctor_set(x_330, 1, x_327); -if (lean_is_scalar(x_262)) { - x_331 = lean_alloc_ctor(1, 1, 0); -} else { - x_331 = x_262; -} -lean_ctor_set(x_331, 0, x_330); -if (lean_is_scalar(x_329)) { - x_332 = lean_alloc_ctor(0, 1, 0); -} else { - x_332 = x_329; -} -lean_ctor_set(x_332, 0, x_331); -return x_332; -} -else -{ -lean_object* x_333; lean_object* x_334; lean_object* x_335; -lean_dec(x_327); -lean_dec(x_321); -lean_dec(x_268); -lean_dec(x_262); -x_333 = lean_ctor_get(x_328, 0); +lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_331 = lean_ctor_get(x_330, 0); +lean_inc(x_331); +lean_dec_ref(x_330); +x_332 = lean_array_get_borrowed(x_274, x_312, x_316); +x_333 = lean_ctor_get(x_332, 0); +x_334 = lean_ctor_get(x_331, 0); +lean_inc(x_334); lean_inc(x_333); -if (lean_is_exclusive(x_328)) { - lean_ctor_release(x_328, 0); - x_334 = x_328; -} else { - lean_dec_ref(x_328); - x_334 = lean_box(0); -} -if (lean_is_scalar(x_334)) { - x_335 = lean_alloc_ctor(1, 1, 0); -} else { - x_335 = x_334; -} -lean_ctor_set(x_335, 0, x_333); -return x_335; -} -} -else +x_335 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_333, x_334, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_335) == 0) { -lean_object* x_336; lean_object* x_337; lean_object* x_338; -lean_dec(x_321); -lean_dec_ref(x_301); -lean_dec(x_268); -lean_dec(x_262); -lean_dec(x_6); -x_336 = lean_ctor_get(x_326, 0); -lean_inc(x_336); -if (lean_is_exclusive(x_326)) { - lean_ctor_release(x_326, 0); - x_337 = x_326; -} else { - lean_dec_ref(x_326); - x_337 = lean_box(0); -} -if (lean_is_scalar(x_337)) { - x_338 = lean_alloc_ctor(1, 1, 0); -} else { - x_338 = x_337; -} -lean_ctor_set(x_338, 0, x_336); -return x_338; -} -} -else +lean_object* x_336; +lean_dec_ref(x_335); +lean_inc(x_6); +x_336 = l_Lean_Compiler_LCNF_Simp_simp(x_313, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_336) == 0) { -lean_object* x_339; lean_object* x_340; lean_object* x_341; -lean_dec(x_321); -lean_dec_ref(x_302); -lean_dec_ref(x_301); -lean_dec(x_268); -lean_dec(x_262); -lean_dec(x_8); -lean_dec_ref(x_7); +lean_object* x_337; lean_object* x_338; +x_337 = lean_ctor_get(x_336, 0); +lean_inc(x_337); +lean_dec_ref(x_336); +x_338 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_312, x_6); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_339 = lean_ctor_get(x_325, 0); -lean_inc(x_339); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - x_340 = x_325; +lean_dec_ref(x_312); +if (lean_obj_tag(x_338) == 0) +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +if (lean_is_exclusive(x_338)) { + lean_ctor_release(x_338, 0); + x_339 = x_338; } else { - lean_dec_ref(x_325); - x_340 = lean_box(0); + lean_dec_ref(x_338); + x_339 = lean_box(0); } -if (lean_is_scalar(x_340)) { +if (lean_is_scalar(x_278)) { + x_340 = lean_alloc_ctor(0, 2, 0); +} else { + x_340 = x_278; +} +lean_ctor_set(x_340, 0, x_331); +lean_ctor_set(x_340, 1, x_337); +if (lean_is_scalar(x_32)) { x_341 = lean_alloc_ctor(1, 1, 0); } else { - x_341 = x_340; + x_341 = x_32; } -lean_ctor_set(x_341, 0, x_339); -return x_341; +lean_ctor_set(x_341, 0, x_340); +if (lean_is_scalar(x_339)) { + x_342 = lean_alloc_ctor(0, 1, 0); +} else { + x_342 = x_339; +} +lean_ctor_set(x_342, 0, x_341); +return x_342; +} +else +{ +lean_object* x_343; lean_object* x_344; lean_object* x_345; +lean_dec(x_337); +lean_dec(x_331); +lean_dec(x_278); +lean_dec(x_32); +x_343 = lean_ctor_get(x_338, 0); +lean_inc(x_343); +if (lean_is_exclusive(x_338)) { + lean_ctor_release(x_338, 0); + x_344 = x_338; +} else { + lean_dec_ref(x_338); + x_344 = lean_box(0); +} +if (lean_is_scalar(x_344)) { + x_345 = lean_alloc_ctor(1, 1, 0); +} else { + x_345 = x_344; +} +lean_ctor_set(x_345, 0, x_343); +return x_345; } } else { -lean_object* x_342; lean_object* x_343; lean_object* x_344; -lean_dec_ref(x_302); -lean_dec_ref(x_301); -lean_dec(x_268); -lean_dec(x_262); +lean_object* x_346; lean_object* x_347; lean_object* x_348; +lean_dec(x_331); +lean_dec_ref(x_312); +lean_dec(x_278); +lean_dec(x_32); +lean_dec(x_6); +x_346 = lean_ctor_get(x_336, 0); +lean_inc(x_346); +if (lean_is_exclusive(x_336)) { + lean_ctor_release(x_336, 0); + x_347 = x_336; +} else { + lean_dec_ref(x_336); + x_347 = lean_box(0); +} +if (lean_is_scalar(x_347)) { + x_348 = lean_alloc_ctor(1, 1, 0); +} else { + x_348 = x_347; +} +lean_ctor_set(x_348, 0, x_346); +return x_348; +} +} +else +{ +lean_object* x_349; lean_object* x_350; lean_object* x_351; +lean_dec(x_331); +lean_dec_ref(x_313); +lean_dec_ref(x_312); +lean_dec(x_278); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11822,91 +11849,31 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_342 = lean_ctor_get(x_320, 0); -lean_inc(x_342); -if (lean_is_exclusive(x_320)) { - lean_ctor_release(x_320, 0); - x_343 = x_320; +x_349 = lean_ctor_get(x_335, 0); +lean_inc(x_349); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + x_350 = x_335; } else { - lean_dec_ref(x_320); - x_343 = lean_box(0); + lean_dec_ref(x_335); + x_350 = lean_box(0); } -if (lean_is_scalar(x_343)) { - x_344 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_350)) { + x_351 = lean_alloc_ctor(1, 1, 0); } else { - x_344 = x_343; -} -lean_ctor_set(x_344, 0, x_342); -return x_344; -} + x_351 = x_350; } +lean_ctor_set(x_351, 0, x_349); +return x_351; } } else { -lean_object* x_345; lean_object* x_346; -lean_dec(x_268); -lean_dec(x_261); -x_345 = lean_ctor_get(x_266, 0); -lean_inc_ref(x_345); -lean_dec_ref(x_266); -x_346 = l_Lean_Compiler_LCNF_Simp_simp(x_345, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_346) == 0) -{ -lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; -x_347 = lean_ctor_get(x_346, 0); -lean_inc(x_347); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - x_348 = x_346; -} else { - lean_dec_ref(x_346); - x_348 = lean_box(0); -} -if (lean_is_scalar(x_262)) { - x_349 = lean_alloc_ctor(1, 1, 0); -} else { - x_349 = x_262; -} -lean_ctor_set(x_349, 0, x_347); -if (lean_is_scalar(x_348)) { - x_350 = lean_alloc_ctor(0, 1, 0); -} else { - x_350 = x_348; -} -lean_ctor_set(x_350, 0, x_349); -return x_350; -} -else -{ -lean_object* x_351; lean_object* x_352; lean_object* x_353; -lean_dec(x_262); -x_351 = lean_ctor_get(x_346, 0); -lean_inc(x_351); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - x_352 = x_346; -} else { - lean_dec_ref(x_346); - x_352 = lean_box(0); -} -if (lean_is_scalar(x_352)) { - x_353 = lean_alloc_ctor(1, 1, 0); -} else { - x_353 = x_352; -} -lean_ctor_set(x_353, 0, x_351); -return x_353; -} -} -} -else -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; -lean_dec(x_268); -lean_dec(x_266); -lean_dec(x_262); -lean_dec(x_261); +lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_dec_ref(x_313); +lean_dec_ref(x_312); +lean_dec(x_278); +lean_dec(x_32); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -11914,298 +11881,240 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_354 = lean_ctor_get(x_270, 0); -lean_inc(x_354); -if (lean_is_exclusive(x_270)) { - lean_ctor_release(x_270, 0); - x_355 = x_270; +x_352 = lean_ctor_get(x_330, 0); +lean_inc(x_352); +if (lean_is_exclusive(x_330)) { + lean_ctor_release(x_330, 0); + x_353 = x_330; } else { - lean_dec_ref(x_270); - x_355 = lean_box(0); + lean_dec_ref(x_330); + x_353 = lean_box(0); } -if (lean_is_scalar(x_355)) { - x_356 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_353)) { + x_354 = lean_alloc_ctor(1, 1, 0); } else { - x_356 = x_355; + x_354 = x_353; +} +lean_ctor_set(x_354, 0, x_352); +return x_354; +} } -lean_ctor_set(x_356, 0, x_354); -return x_356; } } else { -lean_object* x_357; lean_object* x_358; lean_object* x_359; -lean_dec(x_268); -lean_dec(x_266); -lean_dec(x_262); -lean_dec(x_261); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_357 = lean_ctor_get(x_269, 0); +lean_object* x_355; lean_object* x_356; +lean_dec(x_278); +lean_free_object(x_24); +lean_dec(x_26); +x_355 = lean_ctor_get(x_276, 0); +lean_inc_ref(x_355); +lean_dec_ref(x_276); +x_356 = l_Lean_Compiler_LCNF_Simp_simp(x_355, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_356) == 0) +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; +x_357 = lean_ctor_get(x_356, 0); lean_inc(x_357); -if (lean_is_exclusive(x_269)) { - lean_ctor_release(x_269, 0); - x_358 = x_269; +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + x_358 = x_356; } else { - lean_dec_ref(x_269); + lean_dec_ref(x_356); x_358 = lean_box(0); } -if (lean_is_scalar(x_358)) { +if (lean_is_scalar(x_32)) { x_359 = lean_alloc_ctor(1, 1, 0); } else { - x_359 = x_358; + x_359 = x_32; } lean_ctor_set(x_359, 0, x_357); -return x_359; -} -} -else -{ -lean_object* x_360; lean_object* x_361; -lean_dec(x_260); -lean_free_object(x_15); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_360 = lean_box(0); -x_361 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_361, 0, x_360); -return x_361; -} -} -} -else -{ -uint8_t x_362; -lean_free_object(x_15); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_362 = !lean_is_exclusive(x_18); -if (x_362 == 0) -{ -return x_18; -} -else -{ -lean_object* x_363; lean_object* x_364; -x_363 = lean_ctor_get(x_18, 0); -lean_inc(x_363); -lean_dec(x_18); -x_364 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_364, 0, x_363); -return x_364; -} -} -} -else -{ -lean_object* x_365; lean_object* x_366; -x_365 = lean_ctor_get(x_15, 0); -lean_inc(x_365); -lean_dec(x_15); -x_366 = l_Lean_Compiler_LCNF_Simp_findCtor_x3f___redArg(x_365, x_4, x_6, x_8); -lean_dec(x_365); -if (lean_obj_tag(x_366) == 0) -{ -lean_object* x_367; lean_object* x_368; -x_367 = lean_ctor_get(x_366, 0); -lean_inc(x_367); -if (lean_is_exclusive(x_366)) { - lean_ctor_release(x_366, 0); - x_368 = x_366; +if (lean_is_scalar(x_358)) { + x_360 = lean_alloc_ctor(0, 1, 0); } else { - lean_dec_ref(x_366); + x_360 = x_358; +} +lean_ctor_set(x_360, 0, x_359); +return x_360; +} +else +{ +lean_object* x_361; lean_object* x_362; lean_object* x_363; +lean_dec(x_32); +x_361 = lean_ctor_get(x_356, 0); +lean_inc(x_361); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + x_362 = x_356; +} else { + lean_dec_ref(x_356); + x_362 = lean_box(0); +} +if (lean_is_scalar(x_362)) { + x_363 = lean_alloc_ctor(1, 1, 0); +} else { + x_363 = x_362; +} +lean_ctor_set(x_363, 0, x_361); +return x_363; +} +} +} +else +{ +lean_object* x_364; lean_object* x_365; lean_object* x_366; +lean_dec(x_278); +lean_dec(x_276); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_364 = lean_ctor_get(x_281, 0); +lean_inc(x_364); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + x_365 = x_281; +} else { + lean_dec_ref(x_281); + x_365 = lean_box(0); +} +if (lean_is_scalar(x_365)) { + x_366 = lean_alloc_ctor(1, 1, 0); +} else { + x_366 = x_365; +} +lean_ctor_set(x_366, 0, x_364); +return x_366; +} +} +else +{ +lean_object* x_367; lean_object* x_368; lean_object* x_369; +lean_dec(x_278); +lean_dec(x_276); +lean_dec(x_32); +lean_free_object(x_24); +lean_dec(x_26); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_367 = lean_ctor_get(x_280, 0); +lean_inc(x_367); +if (lean_is_exclusive(x_280)) { + lean_ctor_release(x_280, 0); + x_368 = x_280; +} else { + lean_dec_ref(x_280); x_368 = lean_box(0); } -if (lean_obj_tag(x_367) == 1) -{ -lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; -lean_dec(x_368); -x_369 = lean_ctor_get(x_367, 0); -lean_inc(x_369); -if (lean_is_exclusive(x_367)) { - lean_ctor_release(x_367, 0); - x_370 = x_367; +if (lean_is_scalar(x_368)) { + x_369 = lean_alloc_ctor(1, 1, 0); } else { - lean_dec_ref(x_367); - x_370 = lean_box(0); + x_369 = x_368; } -x_371 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; -x_372 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_369); -x_373 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_13, x_1, x_372); -x_374 = lean_ctor_get(x_373, 0); -lean_inc(x_374); -x_375 = lean_ctor_get(x_373, 1); +lean_ctor_set(x_369, 0, x_367); +return x_369; +} +} +} +} +else +{ +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_29); +lean_free_object(x_24); +lean_dec(x_26); +lean_free_object(x_22); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = lean_box(0); +goto block_13; +} +} +else +{ +lean_dec(x_30); +lean_dec(x_29); +lean_free_object(x_24); +lean_dec(x_26); +lean_free_object(x_22); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = lean_box(0); +goto block_13; +} +} +else +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; +x_370 = lean_ctor_get(x_24, 0); +lean_inc(x_370); +lean_dec(x_24); +x_371 = lean_st_ref_get(x_8); +x_372 = lean_ctor_get(x_371, 0); +lean_inc_ref(x_372); +lean_dec(x_371); +x_373 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_370); +lean_inc(x_373); +x_374 = l_Lean_Environment_find_x3f(x_372, x_373, x_19); +if (lean_obj_tag(x_374) == 1) +{ +lean_object* x_375; lean_object* x_376; +x_375 = lean_ctor_get(x_374, 0); lean_inc(x_375); -if (lean_is_exclusive(x_373)) { - lean_ctor_release(x_373, 0); - lean_ctor_release(x_373, 1); - x_376 = x_373; +if (lean_is_exclusive(x_374)) { + lean_ctor_release(x_374, 0); + x_376 = x_374; } else { - lean_dec_ref(x_373); + lean_dec_ref(x_374); x_376 = lean_box(0); } -x_377 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_377, 0, x_375); -x_378 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_13, x_377, x_6); +if (lean_obj_tag(x_375) == 6) +{ +lean_object* x_377; lean_object* x_378; lean_object* x_379; uint8_t x_380; +x_377 = lean_ctor_get(x_375, 0); +lean_inc_ref(x_377); +if (lean_is_exclusive(x_375)) { + lean_ctor_release(x_375, 0); + x_378 = x_375; +} else { + lean_dec_ref(x_375); + x_378 = lean_box(0); +} +x_379 = lean_ctor_get(x_377, 1); +lean_inc(x_379); lean_dec_ref(x_377); -if (lean_obj_tag(x_378) == 0) +x_380 = lean_name_eq(x_14, x_379); +lean_dec(x_379); +if (x_380 == 0) { -lean_object* x_379; -lean_dec_ref(x_378); -x_379 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); -if (lean_obj_tag(x_379) == 0) -{ -lean_dec_ref(x_379); -if (lean_obj_tag(x_374) == 0) -{ -if (lean_obj_tag(x_369) == 0) -{ -lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_406; lean_object* x_407; lean_object* x_408; uint8_t x_409; +lean_object* x_381; +lean_dec(x_378); lean_dec(x_376); -x_380 = lean_ctor_get(x_374, 1); -lean_inc_ref(x_380); -x_381 = lean_ctor_get(x_374, 2); -lean_inc_ref(x_381); -lean_dec_ref(x_374); -x_382 = lean_ctor_get(x_369, 0); -lean_inc_ref(x_382); -x_383 = lean_ctor_get(x_369, 1); -lean_inc_ref(x_383); -lean_dec_ref(x_369); -x_406 = lean_ctor_get(x_382, 3); -lean_inc(x_406); -lean_dec_ref(x_382); -x_407 = lean_unsigned_to_nat(0u); -x_408 = lean_array_get_size(x_383); -x_409 = lean_nat_dec_le(x_406, x_407); -if (x_409 == 0) -{ -x_384 = x_406; -x_385 = x_408; -goto block_405; -} -else -{ -lean_dec(x_406); -x_384 = x_407; -x_385 = x_408; -goto block_405; -} -block_405: -{ -lean_object* x_386; size_t x_387; size_t x_388; lean_object* x_389; -x_386 = l_Array_toSubarray___redArg(x_383, x_384, x_385); -x_387 = lean_array_size(x_380); -x_388 = 0; -x_389 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_380, x_387, x_388, x_386, x_3); -if (lean_obj_tag(x_389) == 0) -{ -lean_object* x_390; -lean_dec_ref(x_389); -lean_inc(x_6); -x_390 = l_Lean_Compiler_LCNF_Simp_simp(x_381, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_390) == 0) -{ -lean_object* x_391; lean_object* x_392; -x_391 = lean_ctor_get(x_390, 0); -lean_inc(x_391); -lean_dec_ref(x_390); -x_392 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_380, x_6); -lean_dec(x_6); -lean_dec_ref(x_380); -if (lean_obj_tag(x_392) == 0) -{ -lean_object* x_393; lean_object* x_394; lean_object* x_395; -if (lean_is_exclusive(x_392)) { - lean_ctor_release(x_392, 0); - x_393 = x_392; -} else { - lean_dec_ref(x_392); - x_393 = lean_box(0); -} -if (lean_is_scalar(x_370)) { - x_394 = lean_alloc_ctor(1, 1, 0); -} else { - x_394 = x_370; -} -lean_ctor_set(x_394, 0, x_391); -if (lean_is_scalar(x_393)) { - x_395 = lean_alloc_ctor(0, 1, 0); -} else { - x_395 = x_393; -} -lean_ctor_set(x_395, 0, x_394); -return x_395; -} -else -{ -lean_object* x_396; lean_object* x_397; lean_object* x_398; -lean_dec(x_391); -lean_dec(x_370); -x_396 = lean_ctor_get(x_392, 0); -lean_inc(x_396); -if (lean_is_exclusive(x_392)) { - lean_ctor_release(x_392, 0); - x_397 = x_392; -} else { - lean_dec_ref(x_392); - x_397 = lean_box(0); -} -if (lean_is_scalar(x_397)) { - x_398 = lean_alloc_ctor(1, 1, 0); -} else { - x_398 = x_397; -} -lean_ctor_set(x_398, 0, x_396); -return x_398; -} -} -else -{ -lean_object* x_399; lean_object* x_400; lean_object* x_401; -lean_dec_ref(x_380); -lean_dec(x_370); -lean_dec(x_6); -x_399 = lean_ctor_get(x_390, 0); -lean_inc(x_399); -if (lean_is_exclusive(x_390)) { - lean_ctor_release(x_390, 0); - x_400 = x_390; -} else { - lean_dec_ref(x_390); - x_400 = lean_box(0); -} -if (lean_is_scalar(x_400)) { - x_401 = lean_alloc_ctor(1, 1, 0); -} else { - x_401 = x_400; -} -lean_ctor_set(x_401, 0, x_399); -return x_401; -} -} -else -{ -lean_object* x_402; lean_object* x_403; lean_object* x_404; -lean_dec_ref(x_381); -lean_dec_ref(x_380); +lean_dec(x_373); lean_dec(x_370); lean_dec(x_8); lean_dec_ref(x_7); @@ -12214,270 +12123,419 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_402 = lean_ctor_get(x_389, 0); -lean_inc(x_402); -if (lean_is_exclusive(x_389)) { - lean_ctor_release(x_389, 0); - x_403 = x_389; +lean_dec_ref(x_1); +x_381 = lean_box(0); +lean_ctor_set(x_22, 0, x_381); +return x_22; +} +else +{ +lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; +lean_free_object(x_22); +x_382 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; +x_383 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_18, x_1, x_373); +x_384 = lean_ctor_get(x_383, 0); +lean_inc(x_384); +x_385 = lean_ctor_get(x_383, 1); +lean_inc(x_385); +if (lean_is_exclusive(x_383)) { + lean_ctor_release(x_383, 0); + lean_ctor_release(x_383, 1); + x_386 = x_383; } else { - lean_dec_ref(x_389); + lean_dec_ref(x_383); + x_386 = lean_box(0); +} +if (lean_is_scalar(x_378)) { + x_387 = lean_alloc_ctor(4, 1, 0); +} else { + x_387 = x_378; + lean_ctor_set_tag(x_387, 4); +} +lean_ctor_set(x_387, 0, x_385); +x_388 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_18, x_387, x_6); +lean_dec_ref(x_387); +if (lean_obj_tag(x_388) == 0) +{ +lean_object* x_389; +lean_dec_ref(x_388); +x_389 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); +if (lean_obj_tag(x_389) == 0) +{ +lean_dec_ref(x_389); +if (lean_obj_tag(x_384) == 0) +{ +if (lean_obj_tag(x_370) == 0) +{ +lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_416; lean_object* x_417; lean_object* x_418; uint8_t x_419; +lean_dec(x_386); +x_390 = lean_ctor_get(x_384, 1); +lean_inc_ref(x_390); +x_391 = lean_ctor_get(x_384, 2); +lean_inc_ref(x_391); +lean_dec_ref(x_384); +x_392 = lean_ctor_get(x_370, 0); +lean_inc_ref(x_392); +x_393 = lean_ctor_get(x_370, 1); +lean_inc_ref(x_393); +lean_dec_ref(x_370); +x_416 = lean_ctor_get(x_392, 3); +lean_inc(x_416); +lean_dec_ref(x_392); +x_417 = lean_unsigned_to_nat(0u); +x_418 = lean_array_get_size(x_393); +x_419 = lean_nat_dec_le(x_416, x_417); +if (x_419 == 0) +{ +x_394 = x_416; +x_395 = x_418; +goto block_415; +} +else +{ +lean_dec(x_416); +x_394 = x_417; +x_395 = x_418; +goto block_415; +} +block_415: +{ +lean_object* x_396; size_t x_397; size_t x_398; lean_object* x_399; +x_396 = l_Array_toSubarray___redArg(x_393, x_394, x_395); +x_397 = lean_array_size(x_390); +x_398 = 0; +x_399 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_390, x_397, x_398, x_396, x_3); +if (lean_obj_tag(x_399) == 0) +{ +lean_object* x_400; +lean_dec_ref(x_399); +lean_inc(x_6); +x_400 = l_Lean_Compiler_LCNF_Simp_simp(x_391, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_400) == 0) +{ +lean_object* x_401; lean_object* x_402; +x_401 = lean_ctor_get(x_400, 0); +lean_inc(x_401); +lean_dec_ref(x_400); +x_402 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_390, x_6); +lean_dec(x_6); +lean_dec_ref(x_390); +if (lean_obj_tag(x_402) == 0) +{ +lean_object* x_403; lean_object* x_404; lean_object* x_405; +if (lean_is_exclusive(x_402)) { + lean_ctor_release(x_402, 0); + x_403 = x_402; +} else { + lean_dec_ref(x_402); x_403 = lean_box(0); } -if (lean_is_scalar(x_403)) { +if (lean_is_scalar(x_376)) { x_404 = lean_alloc_ctor(1, 1, 0); } else { - x_404 = x_403; + x_404 = x_376; } -lean_ctor_set(x_404, 0, x_402); -return x_404; +lean_ctor_set(x_404, 0, x_401); +if (lean_is_scalar(x_403)) { + x_405 = lean_alloc_ctor(0, 1, 0); +} else { + x_405 = x_403; } +lean_ctor_set(x_405, 0, x_404); +return x_405; +} +else +{ +lean_object* x_406; lean_object* x_407; lean_object* x_408; +lean_dec(x_401); +lean_dec(x_376); +x_406 = lean_ctor_get(x_402, 0); +lean_inc(x_406); +if (lean_is_exclusive(x_402)) { + lean_ctor_release(x_402, 0); + x_407 = x_402; +} else { + lean_dec_ref(x_402); + x_407 = lean_box(0); +} +if (lean_is_scalar(x_407)) { + x_408 = lean_alloc_ctor(1, 1, 0); +} else { + x_408 = x_407; +} +lean_ctor_set(x_408, 0, x_406); +return x_408; } } else { -lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; uint8_t x_415; -x_410 = lean_ctor_get(x_374, 1); -lean_inc_ref(x_410); -x_411 = lean_ctor_get(x_374, 2); -lean_inc_ref(x_411); -lean_dec_ref(x_374); -x_412 = lean_ctor_get(x_369, 0); -lean_inc(x_412); -if (lean_is_exclusive(x_369)) { - lean_ctor_release(x_369, 0); - x_413 = x_369; +lean_object* x_409; lean_object* x_410; lean_object* x_411; +lean_dec_ref(x_390); +lean_dec(x_376); +lean_dec(x_6); +x_409 = lean_ctor_get(x_400, 0); +lean_inc(x_409); +if (lean_is_exclusive(x_400)) { + lean_ctor_release(x_400, 0); + x_410 = x_400; } else { - lean_dec_ref(x_369); + lean_dec_ref(x_400); + x_410 = lean_box(0); +} +if (lean_is_scalar(x_410)) { + x_411 = lean_alloc_ctor(1, 1, 0); +} else { + x_411 = x_410; +} +lean_ctor_set(x_411, 0, x_409); +return x_411; +} +} +else +{ +lean_object* x_412; lean_object* x_413; lean_object* x_414; +lean_dec_ref(x_391); +lean_dec_ref(x_390); +lean_dec(x_376); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_412 = lean_ctor_get(x_399, 0); +lean_inc(x_412); +if (lean_is_exclusive(x_399)) { + lean_ctor_release(x_399, 0); + x_413 = x_399; +} else { + lean_dec_ref(x_399); x_413 = lean_box(0); } -x_414 = lean_unsigned_to_nat(0u); -x_415 = lean_nat_dec_eq(x_412, x_414); -if (x_415 == 1) -{ -lean_object* x_416; -lean_dec(x_413); -lean_dec(x_412); -lean_dec_ref(x_410); -lean_dec(x_376); -x_416 = l_Lean_Compiler_LCNF_Simp_simp(x_411, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_416) == 0) -{ -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; -x_417 = lean_ctor_get(x_416, 0); -lean_inc(x_417); -if (lean_is_exclusive(x_416)) { - lean_ctor_release(x_416, 0); - x_418 = x_416; -} else { - lean_dec_ref(x_416); - x_418 = lean_box(0); -} -if (lean_is_scalar(x_370)) { - x_419 = lean_alloc_ctor(1, 1, 0); -} else { - x_419 = x_370; -} -lean_ctor_set(x_419, 0, x_417); -if (lean_is_scalar(x_418)) { - x_420 = lean_alloc_ctor(0, 1, 0); -} else { - x_420 = x_418; -} -lean_ctor_set(x_420, 0, x_419); -return x_420; -} -else -{ -lean_object* x_421; lean_object* x_422; lean_object* x_423; -lean_dec(x_370); -x_421 = lean_ctor_get(x_416, 0); -lean_inc(x_421); -if (lean_is_exclusive(x_416)) { - lean_ctor_release(x_416, 0); - x_422 = x_416; -} else { - lean_dec_ref(x_416); - x_422 = lean_box(0); -} -if (lean_is_scalar(x_422)) { - x_423 = lean_alloc_ctor(1, 1, 0); -} else { - x_423 = x_422; -} -lean_ctor_set(x_423, 0, x_421); -return x_423; -} -} -else -{ -lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; -x_424 = lean_unsigned_to_nat(1u); -x_425 = lean_nat_sub(x_412, x_424); -lean_dec(x_412); if (lean_is_scalar(x_413)) { - x_426 = lean_alloc_ctor(0, 1, 0); + x_414 = lean_alloc_ctor(1, 1, 0); } else { - x_426 = x_413; - lean_ctor_set_tag(x_426, 0); + x_414 = x_413; } -lean_ctor_set(x_426, 0, x_425); -x_427 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_427, 0, x_426); -x_428 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +lean_ctor_set(x_414, 0, x_412); +return x_414; +} +} +} +else +{ +lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; +x_420 = lean_ctor_get(x_384, 1); +lean_inc_ref(x_420); +x_421 = lean_ctor_get(x_384, 2); +lean_inc_ref(x_421); +lean_dec_ref(x_384); +x_422 = lean_ctor_get(x_370, 0); +lean_inc(x_422); +if (lean_is_exclusive(x_370)) { + lean_ctor_release(x_370, 0); + x_423 = x_370; +} else { + lean_dec_ref(x_370); + x_423 = lean_box(0); +} +x_424 = lean_unsigned_to_nat(0u); +x_425 = lean_nat_dec_eq(x_422, x_424); +if (x_425 == 1) +{ +lean_object* x_426; +lean_dec(x_423); +lean_dec(x_422); +lean_dec_ref(x_420); +lean_dec(x_386); +x_426 = l_Lean_Compiler_LCNF_Simp_simp(x_421, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_426) == 0) +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_427 = lean_ctor_get(x_426, 0); +lean_inc(x_427); +if (lean_is_exclusive(x_426)) { + lean_ctor_release(x_426, 0); + x_428 = x_426; +} else { + lean_dec_ref(x_426); + x_428 = lean_box(0); +} +if (lean_is_scalar(x_376)) { + x_429 = lean_alloc_ctor(1, 1, 0); +} else { + x_429 = x_376; +} +lean_ctor_set(x_429, 0, x_427); +if (lean_is_scalar(x_428)) { + x_430 = lean_alloc_ctor(0, 1, 0); +} else { + x_430 = x_428; +} +lean_ctor_set(x_430, 0, x_429); +return x_430; +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +lean_dec(x_376); +x_431 = lean_ctor_get(x_426, 0); +lean_inc(x_431); +if (lean_is_exclusive(x_426)) { + lean_ctor_release(x_426, 0); + x_432 = x_426; +} else { + lean_dec_ref(x_426); + x_432 = lean_box(0); +} +if (lean_is_scalar(x_432)) { + x_433 = lean_alloc_ctor(1, 1, 0); +} else { + x_433 = x_432; +} +lean_ctor_set(x_433, 0, x_431); +return x_433; +} +} +else +{ +lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; +x_434 = lean_unsigned_to_nat(1u); +x_435 = lean_nat_sub(x_422, x_434); +lean_dec(x_422); +if (lean_is_scalar(x_423)) { + x_436 = lean_alloc_ctor(0, 1, 0); +} else { + x_436 = x_423; + lean_ctor_set_tag(x_436, 0); +} +lean_ctor_set(x_436, 0, x_435); +x_437 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_437, 0, x_436); +x_438 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); -x_429 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_13, x_427, x_428, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_429) == 0) +x_439 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_437, x_438, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_439) == 0) { -lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; -x_430 = lean_ctor_get(x_429, 0); -lean_inc(x_430); -lean_dec_ref(x_429); -x_431 = lean_array_get_borrowed(x_371, x_410, x_414); -x_432 = lean_ctor_get(x_431, 0); -x_433 = lean_ctor_get(x_430, 0); -lean_inc(x_433); -lean_inc(x_432); -x_434 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_432, x_433, x_3, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_434) == 0) -{ -lean_object* x_435; -lean_dec_ref(x_434); -lean_inc(x_6); -x_435 = l_Lean_Compiler_LCNF_Simp_simp(x_411, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_435) == 0) -{ -lean_object* x_436; lean_object* x_437; -x_436 = lean_ctor_get(x_435, 0); -lean_inc(x_436); -lean_dec_ref(x_435); -x_437 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_13, x_410, x_6); -lean_dec(x_6); -lean_dec_ref(x_410); -if (lean_obj_tag(x_437) == 0) -{ -lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; -if (lean_is_exclusive(x_437)) { - lean_ctor_release(x_437, 0); - x_438 = x_437; -} else { - lean_dec_ref(x_437); - x_438 = lean_box(0); -} -if (lean_is_scalar(x_376)) { - x_439 = lean_alloc_ctor(0, 2, 0); -} else { - x_439 = x_376; -} -lean_ctor_set(x_439, 0, x_430); -lean_ctor_set(x_439, 1, x_436); -if (lean_is_scalar(x_370)) { - x_440 = lean_alloc_ctor(1, 1, 0); -} else { - x_440 = x_370; -} -lean_ctor_set(x_440, 0, x_439); -if (lean_is_scalar(x_438)) { - x_441 = lean_alloc_ctor(0, 1, 0); -} else { - x_441 = x_438; -} -lean_ctor_set(x_441, 0, x_440); -return x_441; -} -else -{ -lean_object* x_442; lean_object* x_443; lean_object* x_444; -lean_dec(x_436); -lean_dec(x_430); -lean_dec(x_376); -lean_dec(x_370); -x_442 = lean_ctor_get(x_437, 0); +lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; +x_440 = lean_ctor_get(x_439, 0); +lean_inc(x_440); +lean_dec_ref(x_439); +x_441 = lean_array_get_borrowed(x_382, x_420, x_424); +x_442 = lean_ctor_get(x_441, 0); +x_443 = lean_ctor_get(x_440, 0); +lean_inc(x_443); lean_inc(x_442); -if (lean_is_exclusive(x_437)) { - lean_ctor_release(x_437, 0); - x_443 = x_437; -} else { - lean_dec_ref(x_437); - x_443 = lean_box(0); -} -if (lean_is_scalar(x_443)) { - x_444 = lean_alloc_ctor(1, 1, 0); -} else { - x_444 = x_443; -} -lean_ctor_set(x_444, 0, x_442); -return x_444; -} -} -else +x_444 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_442, x_443, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_444) == 0) { -lean_object* x_445; lean_object* x_446; lean_object* x_447; -lean_dec(x_430); -lean_dec_ref(x_410); -lean_dec(x_376); -lean_dec(x_370); -lean_dec(x_6); -x_445 = lean_ctor_get(x_435, 0); -lean_inc(x_445); -if (lean_is_exclusive(x_435)) { - lean_ctor_release(x_435, 0); - x_446 = x_435; -} else { - lean_dec_ref(x_435); - x_446 = lean_box(0); -} -if (lean_is_scalar(x_446)) { - x_447 = lean_alloc_ctor(1, 1, 0); -} else { - x_447 = x_446; -} -lean_ctor_set(x_447, 0, x_445); -return x_447; -} -} -else +lean_object* x_445; +lean_dec_ref(x_444); +lean_inc(x_6); +x_445 = l_Lean_Compiler_LCNF_Simp_simp(x_421, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_445) == 0) { -lean_object* x_448; lean_object* x_449; lean_object* x_450; -lean_dec(x_430); -lean_dec_ref(x_411); -lean_dec_ref(x_410); -lean_dec(x_376); -lean_dec(x_370); -lean_dec(x_8); -lean_dec_ref(x_7); +lean_object* x_446; lean_object* x_447; +x_446 = lean_ctor_get(x_445, 0); +lean_inc(x_446); +lean_dec_ref(x_445); +x_447 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_420, x_6); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_448 = lean_ctor_get(x_434, 0); -lean_inc(x_448); -if (lean_is_exclusive(x_434)) { - lean_ctor_release(x_434, 0); - x_449 = x_434; +lean_dec_ref(x_420); +if (lean_obj_tag(x_447) == 0) +{ +lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; +if (lean_is_exclusive(x_447)) { + lean_ctor_release(x_447, 0); + x_448 = x_447; } else { - lean_dec_ref(x_434); - x_449 = lean_box(0); + lean_dec_ref(x_447); + x_448 = lean_box(0); } -if (lean_is_scalar(x_449)) { +if (lean_is_scalar(x_386)) { + x_449 = lean_alloc_ctor(0, 2, 0); +} else { + x_449 = x_386; +} +lean_ctor_set(x_449, 0, x_440); +lean_ctor_set(x_449, 1, x_446); +if (lean_is_scalar(x_376)) { x_450 = lean_alloc_ctor(1, 1, 0); } else { - x_450 = x_449; + x_450 = x_376; } -lean_ctor_set(x_450, 0, x_448); -return x_450; +lean_ctor_set(x_450, 0, x_449); +if (lean_is_scalar(x_448)) { + x_451 = lean_alloc_ctor(0, 1, 0); +} else { + x_451 = x_448; +} +lean_ctor_set(x_451, 0, x_450); +return x_451; +} +else +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; +lean_dec(x_446); +lean_dec(x_440); +lean_dec(x_386); +lean_dec(x_376); +x_452 = lean_ctor_get(x_447, 0); +lean_inc(x_452); +if (lean_is_exclusive(x_447)) { + lean_ctor_release(x_447, 0); + x_453 = x_447; +} else { + lean_dec_ref(x_447); + x_453 = lean_box(0); +} +if (lean_is_scalar(x_453)) { + x_454 = lean_alloc_ctor(1, 1, 0); +} else { + x_454 = x_453; +} +lean_ctor_set(x_454, 0, x_452); +return x_454; } } else { -lean_object* x_451; lean_object* x_452; lean_object* x_453; -lean_dec_ref(x_411); -lean_dec_ref(x_410); +lean_object* x_455; lean_object* x_456; lean_object* x_457; +lean_dec(x_440); +lean_dec_ref(x_420); +lean_dec(x_386); +lean_dec(x_376); +lean_dec(x_6); +x_455 = lean_ctor_get(x_445, 0); +lean_inc(x_455); +if (lean_is_exclusive(x_445)) { + lean_ctor_release(x_445, 0); + x_456 = x_445; +} else { + lean_dec_ref(x_445); + x_456 = lean_box(0); +} +if (lean_is_scalar(x_456)) { + x_457 = lean_alloc_ctor(1, 1, 0); +} else { + x_457 = x_456; +} +lean_ctor_set(x_457, 0, x_455); +return x_457; +} +} +else +{ +lean_object* x_458; lean_object* x_459; lean_object* x_460; +lean_dec(x_440); +lean_dec_ref(x_421); +lean_dec_ref(x_420); +lean_dec(x_386); lean_dec(x_376); -lean_dec(x_370); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -12485,91 +12543,31 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_451 = lean_ctor_get(x_429, 0); -lean_inc(x_451); -if (lean_is_exclusive(x_429)) { - lean_ctor_release(x_429, 0); - x_452 = x_429; +x_458 = lean_ctor_get(x_444, 0); +lean_inc(x_458); +if (lean_is_exclusive(x_444)) { + lean_ctor_release(x_444, 0); + x_459 = x_444; } else { - lean_dec_ref(x_429); - x_452 = lean_box(0); + lean_dec_ref(x_444); + x_459 = lean_box(0); } -if (lean_is_scalar(x_452)) { - x_453 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_459)) { + x_460 = lean_alloc_ctor(1, 1, 0); } else { - x_453 = x_452; -} -lean_ctor_set(x_453, 0, x_451); -return x_453; -} + x_460 = x_459; } +lean_ctor_set(x_460, 0, x_458); +return x_460; } } else { -lean_object* x_454; lean_object* x_455; +lean_object* x_461; lean_object* x_462; lean_object* x_463; +lean_dec_ref(x_421); +lean_dec_ref(x_420); +lean_dec(x_386); lean_dec(x_376); -lean_dec(x_369); -x_454 = lean_ctor_get(x_374, 0); -lean_inc_ref(x_454); -lean_dec_ref(x_374); -x_455 = l_Lean_Compiler_LCNF_Simp_simp(x_454, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_455) == 0) -{ -lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; -x_456 = lean_ctor_get(x_455, 0); -lean_inc(x_456); -if (lean_is_exclusive(x_455)) { - lean_ctor_release(x_455, 0); - x_457 = x_455; -} else { - lean_dec_ref(x_455); - x_457 = lean_box(0); -} -if (lean_is_scalar(x_370)) { - x_458 = lean_alloc_ctor(1, 1, 0); -} else { - x_458 = x_370; -} -lean_ctor_set(x_458, 0, x_456); -if (lean_is_scalar(x_457)) { - x_459 = lean_alloc_ctor(0, 1, 0); -} else { - x_459 = x_457; -} -lean_ctor_set(x_459, 0, x_458); -return x_459; -} -else -{ -lean_object* x_460; lean_object* x_461; lean_object* x_462; -lean_dec(x_370); -x_460 = lean_ctor_get(x_455, 0); -lean_inc(x_460); -if (lean_is_exclusive(x_455)) { - lean_ctor_release(x_455, 0); - x_461 = x_455; -} else { - lean_dec_ref(x_455); - x_461 = lean_box(0); -} -if (lean_is_scalar(x_461)) { - x_462 = lean_alloc_ctor(1, 1, 0); -} else { - x_462 = x_461; -} -lean_ctor_set(x_462, 0, x_460); -return x_462; -} -} -} -else -{ -lean_object* x_463; lean_object* x_464; lean_object* x_465; -lean_dec(x_376); -lean_dec(x_374); -lean_dec(x_370); -lean_dec(x_369); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -12577,60 +12575,156 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -x_463 = lean_ctor_get(x_379, 0); -lean_inc(x_463); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - x_464 = x_379; +x_461 = lean_ctor_get(x_439, 0); +lean_inc(x_461); +if (lean_is_exclusive(x_439)) { + lean_ctor_release(x_439, 0); + x_462 = x_439; } else { - lean_dec_ref(x_379); - x_464 = lean_box(0); + lean_dec_ref(x_439); + x_462 = lean_box(0); } -if (lean_is_scalar(x_464)) { - x_465 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_462)) { + x_463 = lean_alloc_ctor(1, 1, 0); } else { - x_465 = x_464; + x_463 = x_462; +} +lean_ctor_set(x_463, 0, x_461); +return x_463; +} } -lean_ctor_set(x_465, 0, x_463); -return x_465; } } else { -lean_object* x_466; lean_object* x_467; lean_object* x_468; -lean_dec(x_376); -lean_dec(x_374); +lean_object* x_464; lean_object* x_465; +lean_dec(x_386); lean_dec(x_370); -lean_dec(x_369); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_466 = lean_ctor_get(x_378, 0); +x_464 = lean_ctor_get(x_384, 0); +lean_inc_ref(x_464); +lean_dec_ref(x_384); +x_465 = l_Lean_Compiler_LCNF_Simp_simp(x_464, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_465) == 0) +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; +x_466 = lean_ctor_get(x_465, 0); lean_inc(x_466); -if (lean_is_exclusive(x_378)) { - lean_ctor_release(x_378, 0); - x_467 = x_378; +if (lean_is_exclusive(x_465)) { + lean_ctor_release(x_465, 0); + x_467 = x_465; } else { - lean_dec_ref(x_378); + lean_dec_ref(x_465); x_467 = lean_box(0); } -if (lean_is_scalar(x_467)) { +if (lean_is_scalar(x_376)) { x_468 = lean_alloc_ctor(1, 1, 0); } else { - x_468 = x_467; + x_468 = x_376; } lean_ctor_set(x_468, 0, x_466); -return x_468; +if (lean_is_scalar(x_467)) { + x_469 = lean_alloc_ctor(0, 1, 0); +} else { + x_469 = x_467; +} +lean_ctor_set(x_469, 0, x_468); +return x_469; +} +else +{ +lean_object* x_470; lean_object* x_471; lean_object* x_472; +lean_dec(x_376); +x_470 = lean_ctor_get(x_465, 0); +lean_inc(x_470); +if (lean_is_exclusive(x_465)) { + lean_ctor_release(x_465, 0); + x_471 = x_465; +} else { + lean_dec_ref(x_465); + x_471 = lean_box(0); +} +if (lean_is_scalar(x_471)) { + x_472 = lean_alloc_ctor(1, 1, 0); +} else { + x_472 = x_471; +} +lean_ctor_set(x_472, 0, x_470); +return x_472; +} } } else { -lean_object* x_469; lean_object* x_470; -lean_dec(x_367); +lean_object* x_473; lean_object* x_474; lean_object* x_475; +lean_dec(x_386); +lean_dec(x_384); +lean_dec(x_376); +lean_dec(x_370); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_473 = lean_ctor_get(x_389, 0); +lean_inc(x_473); +if (lean_is_exclusive(x_389)) { + lean_ctor_release(x_389, 0); + x_474 = x_389; +} else { + lean_dec_ref(x_389); + x_474 = lean_box(0); +} +if (lean_is_scalar(x_474)) { + x_475 = lean_alloc_ctor(1, 1, 0); +} else { + x_475 = x_474; +} +lean_ctor_set(x_475, 0, x_473); +return x_475; +} +} +else +{ +lean_object* x_476; lean_object* x_477; lean_object* x_478; +lean_dec(x_386); +lean_dec(x_384); +lean_dec(x_376); +lean_dec(x_370); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_476 = lean_ctor_get(x_388, 0); +lean_inc(x_476); +if (lean_is_exclusive(x_388)) { + lean_ctor_release(x_388, 0); + x_477 = x_388; +} else { + lean_dec_ref(x_388); + x_477 = lean_box(0); +} +if (lean_is_scalar(x_477)) { + x_478 = lean_alloc_ctor(1, 1, 0); +} else { + x_478 = x_477; +} +lean_ctor_set(x_478, 0, x_476); +return x_478; +} +} +} +else +{ +lean_dec(x_376); +lean_dec(x_375); +lean_dec(x_373); +lean_dec(x_370); +lean_free_object(x_22); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -12639,19 +12733,16 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_469 = lean_box(0); -if (lean_is_scalar(x_368)) { - x_470 = lean_alloc_ctor(0, 1, 0); -} else { - x_470 = x_368; -} -lean_ctor_set(x_470, 0, x_469); -return x_470; +x_10 = lean_box(0); +goto block_13; } } else { -lean_object* x_471; lean_object* x_472; lean_object* x_473; +lean_dec(x_374); +lean_dec(x_373); +lean_dec(x_370); +lean_free_object(x_22); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -12660,82 +12751,851 @@ lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_471 = lean_ctor_get(x_366, 0); -lean_inc(x_471); -if (lean_is_exclusive(x_366)) { - lean_ctor_release(x_366, 0); - x_472 = x_366; -} else { - lean_dec_ref(x_366); - x_472 = lean_box(0); -} -if (lean_is_scalar(x_472)) { - x_473 = lean_alloc_ctor(1, 1, 0); -} else { - x_473 = x_472; -} -lean_ctor_set(x_473, 0, x_471); -return x_473; +x_10 = lean_box(0); +goto block_13; } } } else { -lean_object* x_474; -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_474 = l_Lean_Compiler_LCNF_mkReturnErased(x_13, x_5, x_6, x_7, x_8); +lean_object* x_479; +lean_dec(x_24); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); -if (lean_obj_tag(x_474) == 0) -{ -uint8_t x_475; -x_475 = !lean_is_exclusive(x_474); -if (x_475 == 0) -{ -lean_object* x_476; lean_object* x_477; -x_476 = lean_ctor_get(x_474, 0); -x_477 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_477, 0, x_476); -lean_ctor_set(x_474, 0, x_477); -return x_474; -} -else -{ -lean_object* x_478; lean_object* x_479; lean_object* x_480; -x_478 = lean_ctor_get(x_474, 0); -lean_inc(x_478); -lean_dec(x_474); -x_479 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_479, 0, x_478); -x_480 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_480, 0, x_479); -return x_480; +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_479 = lean_box(0); +lean_ctor_set(x_22, 0, x_479); +return x_22; } } else { -uint8_t x_481; -x_481 = !lean_is_exclusive(x_474); -if (x_481 == 0) +lean_object* x_480; +x_480 = lean_ctor_get(x_22, 0); +lean_inc(x_480); +lean_dec(x_22); +if (lean_obj_tag(x_480) == 1) { -return x_474; +lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; +x_481 = lean_ctor_get(x_480, 0); +lean_inc(x_481); +if (lean_is_exclusive(x_480)) { + lean_ctor_release(x_480, 0); + x_482 = x_480; +} else { + lean_dec_ref(x_480); + x_482 = lean_box(0); +} +x_483 = lean_st_ref_get(x_8); +x_484 = lean_ctor_get(x_483, 0); +lean_inc_ref(x_484); +lean_dec(x_483); +x_485 = l_Lean_Compiler_LCNF_Simp_CtorInfo_getName(x_481); +lean_inc(x_485); +x_486 = l_Lean_Environment_find_x3f(x_484, x_485, x_19); +if (lean_obj_tag(x_486) == 1) +{ +lean_object* x_487; lean_object* x_488; +x_487 = lean_ctor_get(x_486, 0); +lean_inc(x_487); +if (lean_is_exclusive(x_486)) { + lean_ctor_release(x_486, 0); + x_488 = x_486; +} else { + lean_dec_ref(x_486); + x_488 = lean_box(0); +} +if (lean_obj_tag(x_487) == 6) +{ +lean_object* x_489; lean_object* x_490; lean_object* x_491; uint8_t x_492; +x_489 = lean_ctor_get(x_487, 0); +lean_inc_ref(x_489); +if (lean_is_exclusive(x_487)) { + lean_ctor_release(x_487, 0); + x_490 = x_487; +} else { + lean_dec_ref(x_487); + x_490 = lean_box(0); +} +x_491 = lean_ctor_get(x_489, 1); +lean_inc(x_491); +lean_dec_ref(x_489); +x_492 = lean_name_eq(x_14, x_491); +lean_dec(x_491); +if (x_492 == 0) +{ +lean_object* x_493; lean_object* x_494; +lean_dec(x_490); +lean_dec(x_488); +lean_dec(x_485); +lean_dec(x_482); +lean_dec(x_481); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_493 = lean_box(0); +x_494 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_494, 0, x_493); +return x_494; } else { -lean_object* x_482; lean_object* x_483; -x_482 = lean_ctor_get(x_474, 0); -lean_inc(x_482); -lean_dec(x_474); -x_483 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_483, 0, x_482); -return x_483; +lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; +x_495 = l_Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f___closed__0; +x_496 = l_Lean_Compiler_LCNF_Cases_extractAlt_x21(x_18, x_1, x_485); +x_497 = lean_ctor_get(x_496, 0); +lean_inc(x_497); +x_498 = lean_ctor_get(x_496, 1); +lean_inc(x_498); +if (lean_is_exclusive(x_496)) { + lean_ctor_release(x_496, 0); + lean_ctor_release(x_496, 1); + x_499 = x_496; +} else { + lean_dec_ref(x_496); + x_499 = lean_box(0); +} +if (lean_is_scalar(x_490)) { + x_500 = lean_alloc_ctor(4, 1, 0); +} else { + x_500 = x_490; + lean_ctor_set_tag(x_500, 4); +} +lean_ctor_set(x_500, 0, x_498); +x_501 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_18, x_500, x_6); +lean_dec_ref(x_500); +if (lean_obj_tag(x_501) == 0) +{ +lean_object* x_502; +lean_dec_ref(x_501); +x_502 = l_Lean_Compiler_LCNF_Simp_markSimplified___redArg(x_3); +if (lean_obj_tag(x_502) == 0) +{ +lean_dec_ref(x_502); +if (lean_obj_tag(x_497) == 0) +{ +if (lean_obj_tag(x_481) == 0) +{ +lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; +lean_dec(x_499); +lean_dec(x_482); +x_503 = lean_ctor_get(x_497, 1); +lean_inc_ref(x_503); +x_504 = lean_ctor_get(x_497, 2); +lean_inc_ref(x_504); +lean_dec_ref(x_497); +x_505 = lean_ctor_get(x_481, 0); +lean_inc_ref(x_505); +x_506 = lean_ctor_get(x_481, 1); +lean_inc_ref(x_506); +lean_dec_ref(x_481); +x_529 = lean_ctor_get(x_505, 3); +lean_inc(x_529); +lean_dec_ref(x_505); +x_530 = lean_unsigned_to_nat(0u); +x_531 = lean_array_get_size(x_506); +x_532 = lean_nat_dec_le(x_529, x_530); +if (x_532 == 0) +{ +x_507 = x_529; +x_508 = x_531; +goto block_528; +} +else +{ +lean_dec(x_529); +x_507 = x_530; +x_508 = x_531; +goto block_528; +} +block_528: +{ +lean_object* x_509; size_t x_510; size_t x_511; lean_object* x_512; +x_509 = l_Array_toSubarray___redArg(x_506, x_507, x_508); +x_510 = lean_array_size(x_503); +x_511 = 0; +x_512 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Compiler_LCNF_Simp_simpCasesOnCtor_x3f_spec__14___redArg(x_503, x_510, x_511, x_509, x_3); +if (lean_obj_tag(x_512) == 0) +{ +lean_object* x_513; +lean_dec_ref(x_512); +lean_inc(x_6); +x_513 = l_Lean_Compiler_LCNF_Simp_simp(x_504, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_513) == 0) +{ +lean_object* x_514; lean_object* x_515; +x_514 = lean_ctor_get(x_513, 0); +lean_inc(x_514); +lean_dec_ref(x_513); +x_515 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_503, x_6); +lean_dec(x_6); +lean_dec_ref(x_503); +if (lean_obj_tag(x_515) == 0) +{ +lean_object* x_516; lean_object* x_517; lean_object* x_518; +if (lean_is_exclusive(x_515)) { + lean_ctor_release(x_515, 0); + x_516 = x_515; +} else { + lean_dec_ref(x_515); + x_516 = lean_box(0); +} +if (lean_is_scalar(x_488)) { + x_517 = lean_alloc_ctor(1, 1, 0); +} else { + x_517 = x_488; +} +lean_ctor_set(x_517, 0, x_514); +if (lean_is_scalar(x_516)) { + x_518 = lean_alloc_ctor(0, 1, 0); +} else { + x_518 = x_516; +} +lean_ctor_set(x_518, 0, x_517); +return x_518; +} +else +{ +lean_object* x_519; lean_object* x_520; lean_object* x_521; +lean_dec(x_514); +lean_dec(x_488); +x_519 = lean_ctor_get(x_515, 0); +lean_inc(x_519); +if (lean_is_exclusive(x_515)) { + lean_ctor_release(x_515, 0); + x_520 = x_515; +} else { + lean_dec_ref(x_515); + x_520 = lean_box(0); +} +if (lean_is_scalar(x_520)) { + x_521 = lean_alloc_ctor(1, 1, 0); +} else { + x_521 = x_520; +} +lean_ctor_set(x_521, 0, x_519); +return x_521; } } +else +{ +lean_object* x_522; lean_object* x_523; lean_object* x_524; +lean_dec_ref(x_503); +lean_dec(x_488); +lean_dec(x_6); +x_522 = lean_ctor_get(x_513, 0); +lean_inc(x_522); +if (lean_is_exclusive(x_513)) { + lean_ctor_release(x_513, 0); + x_523 = x_513; +} else { + lean_dec_ref(x_513); + x_523 = lean_box(0); +} +if (lean_is_scalar(x_523)) { + x_524 = lean_alloc_ctor(1, 1, 0); +} else { + x_524 = x_523; +} +lean_ctor_set(x_524, 0, x_522); +return x_524; +} +} +else +{ +lean_object* x_525; lean_object* x_526; lean_object* x_527; +lean_dec_ref(x_504); +lean_dec_ref(x_503); +lean_dec(x_488); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_525 = lean_ctor_get(x_512, 0); +lean_inc(x_525); +if (lean_is_exclusive(x_512)) { + lean_ctor_release(x_512, 0); + x_526 = x_512; +} else { + lean_dec_ref(x_512); + x_526 = lean_box(0); +} +if (lean_is_scalar(x_526)) { + x_527 = lean_alloc_ctor(1, 1, 0); +} else { + x_527 = x_526; +} +lean_ctor_set(x_527, 0, x_525); +return x_527; +} +} +} +else +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; uint8_t x_538; +x_533 = lean_ctor_get(x_497, 1); +lean_inc_ref(x_533); +x_534 = lean_ctor_get(x_497, 2); +lean_inc_ref(x_534); +lean_dec_ref(x_497); +x_535 = lean_ctor_get(x_481, 0); +lean_inc(x_535); +if (lean_is_exclusive(x_481)) { + lean_ctor_release(x_481, 0); + x_536 = x_481; +} else { + lean_dec_ref(x_481); + x_536 = lean_box(0); +} +x_537 = lean_unsigned_to_nat(0u); +x_538 = lean_nat_dec_eq(x_535, x_537); +if (x_538 == 1) +{ +lean_object* x_539; +lean_dec(x_536); +lean_dec(x_535); +lean_dec_ref(x_533); +lean_dec(x_499); +lean_dec(x_482); +x_539 = l_Lean_Compiler_LCNF_Simp_simp(x_534, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_539) == 0) +{ +lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; +x_540 = lean_ctor_get(x_539, 0); +lean_inc(x_540); +if (lean_is_exclusive(x_539)) { + lean_ctor_release(x_539, 0); + x_541 = x_539; +} else { + lean_dec_ref(x_539); + x_541 = lean_box(0); +} +if (lean_is_scalar(x_488)) { + x_542 = lean_alloc_ctor(1, 1, 0); +} else { + x_542 = x_488; +} +lean_ctor_set(x_542, 0, x_540); +if (lean_is_scalar(x_541)) { + x_543 = lean_alloc_ctor(0, 1, 0); +} else { + x_543 = x_541; +} +lean_ctor_set(x_543, 0, x_542); +return x_543; +} +else +{ +lean_object* x_544; lean_object* x_545; lean_object* x_546; +lean_dec(x_488); +x_544 = lean_ctor_get(x_539, 0); +lean_inc(x_544); +if (lean_is_exclusive(x_539)) { + lean_ctor_release(x_539, 0); + x_545 = x_539; +} else { + lean_dec_ref(x_539); + x_545 = lean_box(0); +} +if (lean_is_scalar(x_545)) { + x_546 = lean_alloc_ctor(1, 1, 0); +} else { + x_546 = x_545; +} +lean_ctor_set(x_546, 0, x_544); +return x_546; +} +} +else +{ +lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; +x_547 = lean_unsigned_to_nat(1u); +x_548 = lean_nat_sub(x_535, x_547); +lean_dec(x_535); +if (lean_is_scalar(x_536)) { + x_549 = lean_alloc_ctor(0, 1, 0); +} else { + x_549 = x_536; + lean_ctor_set_tag(x_549, 0); +} +lean_ctor_set(x_549, 0, x_548); +if (lean_is_scalar(x_482)) { + x_550 = lean_alloc_ctor(0, 1, 0); +} else { + x_550 = x_482; + lean_ctor_set_tag(x_550, 0); +} +lean_ctor_set(x_550, 0, x_549); +x_551 = ((lean_object*)(l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f___closed__1)); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_552 = l_Lean_Compiler_LCNF_mkAuxLetDecl(x_18, x_550, x_551, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_552) == 0) +{ +lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; +x_553 = lean_ctor_get(x_552, 0); +lean_inc(x_553); +lean_dec_ref(x_552); +x_554 = lean_array_get_borrowed(x_495, x_533, x_537); +x_555 = lean_ctor_get(x_554, 0); +x_556 = lean_ctor_get(x_553, 0); +lean_inc(x_556); +lean_inc(x_555); +x_557 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_555, x_556, x_3, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_557) == 0) +{ +lean_object* x_558; +lean_dec_ref(x_557); +lean_inc(x_6); +x_558 = l_Lean_Compiler_LCNF_Simp_simp(x_534, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_558) == 0) +{ +lean_object* x_559; lean_object* x_560; +x_559 = lean_ctor_get(x_558, 0); +lean_inc(x_559); +lean_dec_ref(x_558); +x_560 = l_Lean_Compiler_LCNF_eraseParams___redArg(x_18, x_533, x_6); +lean_dec(x_6); +lean_dec_ref(x_533); +if (lean_obj_tag(x_560) == 0) +{ +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; +if (lean_is_exclusive(x_560)) { + lean_ctor_release(x_560, 0); + x_561 = x_560; +} else { + lean_dec_ref(x_560); + x_561 = lean_box(0); +} +if (lean_is_scalar(x_499)) { + x_562 = lean_alloc_ctor(0, 2, 0); +} else { + x_562 = x_499; +} +lean_ctor_set(x_562, 0, x_553); +lean_ctor_set(x_562, 1, x_559); +if (lean_is_scalar(x_488)) { + x_563 = lean_alloc_ctor(1, 1, 0); +} else { + x_563 = x_488; +} +lean_ctor_set(x_563, 0, x_562); +if (lean_is_scalar(x_561)) { + x_564 = lean_alloc_ctor(0, 1, 0); +} else { + x_564 = x_561; +} +lean_ctor_set(x_564, 0, x_563); +return x_564; +} +else +{ +lean_object* x_565; lean_object* x_566; lean_object* x_567; +lean_dec(x_559); +lean_dec(x_553); +lean_dec(x_499); +lean_dec(x_488); +x_565 = lean_ctor_get(x_560, 0); +lean_inc(x_565); +if (lean_is_exclusive(x_560)) { + lean_ctor_release(x_560, 0); + x_566 = x_560; +} else { + lean_dec_ref(x_560); + x_566 = lean_box(0); +} +if (lean_is_scalar(x_566)) { + x_567 = lean_alloc_ctor(1, 1, 0); +} else { + x_567 = x_566; +} +lean_ctor_set(x_567, 0, x_565); +return x_567; +} +} +else +{ +lean_object* x_568; lean_object* x_569; lean_object* x_570; +lean_dec(x_553); +lean_dec_ref(x_533); +lean_dec(x_499); +lean_dec(x_488); +lean_dec(x_6); +x_568 = lean_ctor_get(x_558, 0); +lean_inc(x_568); +if (lean_is_exclusive(x_558)) { + lean_ctor_release(x_558, 0); + x_569 = x_558; +} else { + lean_dec_ref(x_558); + x_569 = lean_box(0); +} +if (lean_is_scalar(x_569)) { + x_570 = lean_alloc_ctor(1, 1, 0); +} else { + x_570 = x_569; +} +lean_ctor_set(x_570, 0, x_568); +return x_570; +} +} +else +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; +lean_dec(x_553); +lean_dec_ref(x_534); +lean_dec_ref(x_533); +lean_dec(x_499); +lean_dec(x_488); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_571 = lean_ctor_get(x_557, 0); +lean_inc(x_571); +if (lean_is_exclusive(x_557)) { + lean_ctor_release(x_557, 0); + x_572 = x_557; +} else { + lean_dec_ref(x_557); + x_572 = lean_box(0); +} +if (lean_is_scalar(x_572)) { + x_573 = lean_alloc_ctor(1, 1, 0); +} else { + x_573 = x_572; +} +lean_ctor_set(x_573, 0, x_571); +return x_573; +} +} +else +{ +lean_object* x_574; lean_object* x_575; lean_object* x_576; +lean_dec_ref(x_534); +lean_dec_ref(x_533); +lean_dec(x_499); +lean_dec(x_488); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_574 = lean_ctor_get(x_552, 0); +lean_inc(x_574); +if (lean_is_exclusive(x_552)) { + lean_ctor_release(x_552, 0); + x_575 = x_552; +} else { + lean_dec_ref(x_552); + x_575 = lean_box(0); +} +if (lean_is_scalar(x_575)) { + x_576 = lean_alloc_ctor(1, 1, 0); +} else { + x_576 = x_575; +} +lean_ctor_set(x_576, 0, x_574); +return x_576; +} +} +} +} +else +{ +lean_object* x_577; lean_object* x_578; +lean_dec(x_499); +lean_dec(x_482); +lean_dec(x_481); +x_577 = lean_ctor_get(x_497, 0); +lean_inc_ref(x_577); +lean_dec_ref(x_497); +x_578 = l_Lean_Compiler_LCNF_Simp_simp(x_577, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_578) == 0) +{ +lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; +x_579 = lean_ctor_get(x_578, 0); +lean_inc(x_579); +if (lean_is_exclusive(x_578)) { + lean_ctor_release(x_578, 0); + x_580 = x_578; +} else { + lean_dec_ref(x_578); + x_580 = lean_box(0); +} +if (lean_is_scalar(x_488)) { + x_581 = lean_alloc_ctor(1, 1, 0); +} else { + x_581 = x_488; +} +lean_ctor_set(x_581, 0, x_579); +if (lean_is_scalar(x_580)) { + x_582 = lean_alloc_ctor(0, 1, 0); +} else { + x_582 = x_580; +} +lean_ctor_set(x_582, 0, x_581); +return x_582; +} +else +{ +lean_object* x_583; lean_object* x_584; lean_object* x_585; +lean_dec(x_488); +x_583 = lean_ctor_get(x_578, 0); +lean_inc(x_583); +if (lean_is_exclusive(x_578)) { + lean_ctor_release(x_578, 0); + x_584 = x_578; +} else { + lean_dec_ref(x_578); + x_584 = lean_box(0); +} +if (lean_is_scalar(x_584)) { + x_585 = lean_alloc_ctor(1, 1, 0); +} else { + x_585 = x_584; +} +lean_ctor_set(x_585, 0, x_583); +return x_585; +} +} +} +else +{ +lean_object* x_586; lean_object* x_587; lean_object* x_588; +lean_dec(x_499); +lean_dec(x_497); +lean_dec(x_488); +lean_dec(x_482); +lean_dec(x_481); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_586 = lean_ctor_get(x_502, 0); +lean_inc(x_586); +if (lean_is_exclusive(x_502)) { + lean_ctor_release(x_502, 0); + x_587 = x_502; +} else { + lean_dec_ref(x_502); + x_587 = lean_box(0); +} +if (lean_is_scalar(x_587)) { + x_588 = lean_alloc_ctor(1, 1, 0); +} else { + x_588 = x_587; +} +lean_ctor_set(x_588, 0, x_586); +return x_588; +} +} +else +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; +lean_dec(x_499); +lean_dec(x_497); +lean_dec(x_488); +lean_dec(x_482); +lean_dec(x_481); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_589 = lean_ctor_get(x_501, 0); +lean_inc(x_589); +if (lean_is_exclusive(x_501)) { + lean_ctor_release(x_501, 0); + x_590 = x_501; +} else { + lean_dec_ref(x_501); + x_590 = lean_box(0); +} +if (lean_is_scalar(x_590)) { + x_591 = lean_alloc_ctor(1, 1, 0); +} else { + x_591 = x_590; +} +lean_ctor_set(x_591, 0, x_589); +return x_591; +} +} +} +else +{ +lean_dec(x_488); +lean_dec(x_487); +lean_dec(x_485); +lean_dec(x_482); +lean_dec(x_481); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = lean_box(0); +goto block_13; +} +} +else +{ +lean_dec(x_486); +lean_dec(x_485); +lean_dec(x_482); +lean_dec(x_481); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_10 = lean_box(0); +goto block_13; +} +} +else +{ +lean_object* x_592; lean_object* x_593; +lean_dec(x_480); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_592 = lean_box(0); +x_593 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_593, 0, x_592); +return x_593; +} +} +} +else +{ +uint8_t x_594; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_594 = !lean_is_exclusive(x_22); +if (x_594 == 0) +{ +return x_22; +} +else +{ +lean_object* x_595; lean_object* x_596; +x_595 = lean_ctor_get(x_22, 0); +lean_inc(x_595); +lean_dec(x_22); +x_596 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_596, 0, x_595); +return x_596; +} +} +} +else +{ +lean_object* x_597; +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_597 = l_Lean_Compiler_LCNF_mkReturnErased(x_18, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +if (lean_obj_tag(x_597) == 0) +{ +uint8_t x_598; +x_598 = !lean_is_exclusive(x_597); +if (x_598 == 0) +{ +lean_object* x_599; lean_object* x_600; +x_599 = lean_ctor_get(x_597, 0); +x_600 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_600, 0, x_599); +lean_ctor_set(x_597, 0, x_600); +return x_597; +} +else +{ +lean_object* x_601; lean_object* x_602; lean_object* x_603; +x_601 = lean_ctor_get(x_597, 0); +lean_inc(x_601); +lean_dec(x_597); +x_602 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_602, 0, x_601); +x_603 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_603, 0, x_602); +return x_603; +} +} +else +{ +uint8_t x_604; +x_604 = !lean_is_exclusive(x_597); +if (x_604 == 0) +{ +return x_597; +} +else +{ +lean_object* x_605; lean_object* x_606; +x_605 = lean_ctor_get(x_597, 0); +lean_inc(x_605); +lean_dec(x_597); +x_606 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_606, 0, x_605); +return x_606; +} +} +} +block_13: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; } } } @@ -13194,7 +14054,7 @@ goto _start; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_simp(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) { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_49; uint8_t 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_81; uint8_t 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_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; uint8_t x_122; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t 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; uint8_t 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_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; uint8_t x_122; x_106 = lean_ctor_get(x_7, 0); x_107 = lean_ctor_get(x_7, 1); x_108 = lean_ctor_get(x_7, 2); @@ -13557,12 +14417,12 @@ block_334: if (x_203 == 0) { lean_object* x_204; -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_196); -x_204 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_196, x_197, x_194, x_195, x_201); +lean_inc_ref(x_201); +lean_inc_ref(x_202); +x_204 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_202, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_204) == 0) { lean_object* x_205; @@ -13572,7 +14432,7 @@ lean_dec_ref(x_204); if (lean_obj_tag(x_205) == 1) { lean_object* x_206; lean_object* x_207; -lean_dec_ref(x_196); +lean_dec_ref(x_202); lean_inc_ref(x_193); lean_dec_ref(x_1); x_206 = lean_ctor_get(x_205, 0); @@ -13583,26 +14443,26 @@ if (lean_obj_tag(x_207) == 0) { lean_object* x_208; lean_dec_ref(x_207); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_202); +lean_inc_ref(x_201); +lean_inc_ref(x_200); lean_inc(x_199); lean_inc_ref(x_198); -x_208 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +x_208 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_208) == 0) { lean_object* x_209; lean_object* x_210; x_209 = lean_ctor_get(x_208, 0); lean_inc(x_209); lean_dec_ref(x_208); -x_210 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_206, x_209, x_198, x_199, x_202, x_197, x_194, x_195, x_201); -lean_dec(x_201); +x_210 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_206, x_209, x_198, x_199, x_200, x_201, x_194, x_195, x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); -lean_dec_ref(x_197); -lean_dec_ref(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); lean_dec(x_206); @@ -13611,11 +14471,11 @@ return x_210; else { lean_dec(x_206); -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); return x_208; @@ -13625,11 +14485,11 @@ else { uint8_t x_211; lean_dec(x_206); -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -13654,12 +14514,12 @@ else { lean_object* x_214; lean_dec(x_205); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_196); -x_214 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_196, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +lean_inc_ref(x_201); +lean_inc_ref(x_202); +x_214 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_202, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_214) == 0) { lean_object* x_215; @@ -13669,7 +14529,7 @@ lean_dec_ref(x_214); if (lean_obj_tag(x_215) == 1) { uint8_t x_216; -lean_dec_ref(x_196); +lean_dec_ref(x_202); lean_inc_ref(x_193); x_216 = !lean_is_exclusive(x_1); if (x_216 == 0) @@ -13686,11 +14546,11 @@ lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 0, x_219); x_2 = x_198; x_3 = x_199; -x_4 = x_202; -x_5 = x_197; +x_4 = x_200; +x_5 = x_201; x_6 = x_194; x_7 = x_195; -x_8 = x_201; +x_8 = x_196; goto _start; } else @@ -13706,11 +14566,11 @@ lean_ctor_set(x_222, 1, x_193); x_1 = x_222; x_2 = x_198; x_3 = x_199; -x_4 = x_202; -x_5 = x_197; +x_4 = x_200; +x_5 = x_201; x_6 = x_194; x_7 = x_195; -x_8 = x_201; +x_8 = x_196; goto _start; } } @@ -13718,8 +14578,8 @@ else { lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_dec(x_215); -x_224 = lean_ctor_get(x_196, 0); -x_225 = lean_ctor_get(x_196, 3); +x_224 = lean_ctor_get(x_202, 0); +x_225 = lean_ctor_get(x_202, 3); x_226 = l_Lean_Compiler_LCNF_Simp_elimVar_x3f___redArg(x_225); if (lean_obj_tag(x_226) == 0) { @@ -13736,34 +14596,34 @@ x_228 = lean_ctor_get(x_227, 0); lean_inc(x_228); lean_dec_ref(x_227); lean_inc(x_224); -x_229 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_224, x_228, x_199, x_197, x_194, x_195, x_201); +x_229 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_224, x_228, x_199, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_229) == 0) { lean_object* x_230; lean_dec_ref(x_229); -x_230 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); -lean_dec_ref(x_196); +x_230 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); +lean_dec_ref(x_202); if (lean_obj_tag(x_230) == 0) { lean_dec_ref(x_230); x_1 = x_193; x_2 = x_198; x_3 = x_199; -x_4 = x_202; -x_5 = x_197; +x_4 = x_200; +x_5 = x_201; x_6 = x_194; x_7 = x_195; -x_8 = x_201; +x_8 = x_196; goto _start; } else { uint8_t x_232; -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -13788,11 +14648,11 @@ else { uint8_t x_235; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -13817,16 +14677,16 @@ else { lean_object* x_238; lean_dec(x_227); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_202); +lean_inc_ref(x_201); +lean_inc_ref(x_200); lean_inc(x_199); lean_inc_ref(x_198); lean_inc_ref(x_193); -lean_inc_ref(x_196); -x_238 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_196, x_193, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +lean_inc_ref(x_202); +x_238 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_202, x_193, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_238) == 0) { lean_object* x_239; @@ -13836,19 +14696,19 @@ lean_dec_ref(x_238); if (lean_obj_tag(x_239) == 1) { lean_object* x_240; lean_object* x_241; -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec_ref(x_1); x_240 = lean_ctor_get(x_239, 0); lean_inc(x_240); lean_dec_ref(x_239); -x_241 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); +x_241 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); lean_dec(x_194); lean_dec(x_199); -lean_dec_ref(x_196); +lean_dec_ref(x_202); if (lean_obj_tag(x_241) == 0) { uint8_t x_242; @@ -13895,15 +14755,15 @@ else { lean_object* x_248; lean_dec(x_239); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_202); +lean_inc_ref(x_201); +lean_inc_ref(x_200); lean_inc(x_199); lean_inc_ref(x_198); lean_inc(x_225); -x_248 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_225, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +x_248 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_225, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_248) == 0) { lean_object* x_249; @@ -13924,37 +14784,37 @@ x_252 = lean_ctor_get(x_250, 1); lean_inc(x_252); lean_dec(x_250); lean_inc(x_224); -x_253 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_224, x_252, x_199, x_197, x_194, x_195, x_201); +x_253 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_224, x_252, x_199, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_253) == 0) { lean_object* x_254; lean_dec_ref(x_253); -x_254 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); -lean_dec_ref(x_196); +x_254 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); +lean_dec_ref(x_202); if (lean_obj_tag(x_254) == 0) { lean_object* x_255; lean_dec_ref(x_254); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_202); +lean_inc_ref(x_201); +lean_inc_ref(x_200); lean_inc(x_199); lean_inc_ref(x_198); -x_255 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +x_255 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_255) == 0) { lean_object* x_256; lean_object* x_257; x_256 = lean_ctor_get(x_255, 0); lean_inc(x_256); lean_dec_ref(x_255); -x_257 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_251, x_256, x_198, x_199, x_202, x_197, x_194, x_195, x_201); -lean_dec(x_201); +x_257 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_251, x_256, x_198, x_199, x_200, x_201, x_194, x_195, x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); -lean_dec_ref(x_197); -lean_dec_ref(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); lean_dec(x_251); @@ -13963,11 +14823,11 @@ return x_257; else { lean_dec(x_251); -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); return x_255; @@ -13977,11 +14837,11 @@ else { uint8_t x_258; lean_dec(x_251); -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -14007,11 +14867,11 @@ else uint8_t x_261; lean_dec(x_251); lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -14036,15 +14896,15 @@ else { lean_object* x_264; lean_dec(x_249); -lean_inc(x_201); +lean_inc(x_196); lean_inc_ref(x_195); lean_inc(x_194); -lean_inc_ref(x_197); -lean_inc_ref(x_202); +lean_inc_ref(x_201); +lean_inc_ref(x_200); lean_inc(x_199); lean_inc_ref(x_198); lean_inc_ref(x_193); -x_264 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_202, x_197, x_194, x_195, x_201); +x_264 = l_Lean_Compiler_LCNF_Simp_simp(x_193, x_198, x_199, x_200, x_201, x_194, x_195, x_196); if (lean_obj_tag(x_264) == 0) { lean_object* x_265; lean_object* x_266; @@ -14063,16 +14923,16 @@ lean_dec(x_267); if (x_268 == 0) { lean_object* x_269; -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec_ref(x_1); -x_269 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); +x_269 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); lean_dec(x_194); lean_dec(x_199); -lean_dec_ref(x_196); +lean_dec_ref(x_202); if (lean_obj_tag(x_269) == 0) { uint8_t x_270; @@ -14118,13 +14978,13 @@ return x_275; else { lean_object* x_276; -lean_inc_ref(x_196); -x_276 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_196, x_198, x_199, x_202, x_197, x_194, x_195, x_201); -lean_dec(x_201); +lean_inc_ref(x_202); +x_276 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_202, x_198, x_199, x_200, x_201, x_194, x_195, x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); -lean_dec_ref(x_197); -lean_dec_ref(x_202); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); if (lean_obj_tag(x_276) == 0) @@ -14137,8 +14997,8 @@ x_279 = lean_usize_dec_eq(x_277, x_278); if (x_279 == 0) { x_98 = x_265; -x_99 = x_196; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_202; x_101 = x_279; goto block_105; } @@ -14146,11 +15006,11 @@ else { size_t x_280; size_t x_281; uint8_t x_282; x_280 = lean_ptr_addr(x_192); -x_281 = lean_ptr_addr(x_196); +x_281 = lean_ptr_addr(x_202); x_282 = lean_usize_dec_eq(x_280, x_281); x_98 = x_265; -x_99 = x_196; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_202; x_101 = x_282; goto block_105; } @@ -14159,7 +15019,7 @@ else { uint8_t x_283; lean_dec(x_265); -lean_dec_ref(x_196); +lean_dec_ref(x_202); lean_dec_ref(x_1); x_283 = !lean_is_exclusive(x_276); if (x_283 == 0) @@ -14184,11 +15044,11 @@ else uint8_t x_286; lean_dec(x_265); lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14212,11 +15072,11 @@ return x_288; else { lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14228,11 +15088,11 @@ else { uint8_t x_289; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14258,11 +15118,11 @@ else { uint8_t x_292; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14288,11 +15148,11 @@ else { uint8_t x_295; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14318,11 +15178,11 @@ else { uint8_t x_298; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14348,11 +15208,11 @@ else { uint8_t x_301; lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); -lean_dec_ref(x_196); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_1); @@ -14383,36 +15243,36 @@ x_305 = !lean_is_exclusive(x_304); if (x_305 == 0) { lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; -x_306 = lean_ctor_get(x_196, 0); +x_306 = lean_ctor_get(x_202, 0); x_307 = lean_ctor_get(x_304, 0); x_308 = lean_box(0); lean_inc(x_306); x_309 = l_Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_Compiler_LCNF_Simp_specializePartialApp_spec__0___redArg(x_307, x_306, x_308); lean_ctor_set(x_304, 0, x_309); x_310 = lean_st_ref_set(x_199, x_304); -x_311 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); -lean_dec_ref(x_196); +x_311 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); +lean_dec_ref(x_202); if (lean_obj_tag(x_311) == 0) { lean_dec_ref(x_311); x_1 = x_193; x_2 = x_198; x_3 = x_199; -x_4 = x_202; -x_5 = x_197; +x_4 = x_200; +x_5 = x_201; x_6 = x_194; x_7 = x_195; -x_8 = x_201; +x_8 = x_196; goto _start; } else { uint8_t x_313; -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -14436,7 +15296,7 @@ return x_315; else { lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; -x_316 = lean_ctor_get(x_196, 0); +x_316 = lean_ctor_get(x_202, 0); x_317 = lean_ctor_get(x_304, 0); x_318 = lean_ctor_get(x_304, 1); x_319 = lean_ctor_get(x_304, 2); @@ -14466,29 +15326,29 @@ lean_ctor_set(x_327, 5, x_323); lean_ctor_set(x_327, 6, x_324); lean_ctor_set_uint8(x_327, sizeof(void*)*7, x_321); x_328 = lean_st_ref_set(x_199, x_327); -x_329 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_196, x_199, x_194); -lean_dec_ref(x_196); +x_329 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_202, x_199, x_194); +lean_dec_ref(x_202); if (lean_obj_tag(x_329) == 0) { lean_dec_ref(x_329); x_1 = x_193; x_2 = x_198; x_3 = x_199; -x_4 = x_202; -x_5 = x_197; +x_4 = x_200; +x_5 = x_201; x_6 = x_194; x_7 = x_195; -x_8 = x_201; +x_8 = x_196; goto _start; } else { lean_object* x_331; lean_object* x_332; lean_object* x_333; -lean_dec_ref(x_202); -lean_dec(x_201); +lean_dec_ref(x_201); +lean_dec_ref(x_200); lean_dec(x_199); lean_dec_ref(x_198); -lean_dec_ref(x_197); +lean_dec(x_196); lean_dec_ref(x_195); lean_dec(x_194); lean_dec_ref(x_193); @@ -14522,13 +15382,13 @@ if (x_347 == 0) lean_dec(x_338); x_194 = x_343; x_195 = x_344; -x_196 = x_336; -x_197 = x_342; +x_196 = x_345; +x_197 = lean_box(0); x_198 = x_339; x_199 = x_340; -x_200 = lean_box(0); -x_201 = x_345; -x_202 = x_341; +x_200 = x_341; +x_201 = x_342; +x_202 = x_336; x_203 = x_122; goto block_334; } @@ -14541,13 +15401,13 @@ if (x_349 == 0) { x_194 = x_343; x_195 = x_344; -x_196 = x_336; -x_197 = x_342; +x_196 = x_345; +x_197 = lean_box(0); x_198 = x_339; x_199 = x_340; -x_200 = lean_box(0); -x_201 = x_345; -x_202 = x_341; +x_200 = x_341; +x_201 = x_342; +x_202 = x_336; x_203 = x_347; goto block_334; } @@ -14555,13 +15415,13 @@ else { x_194 = x_343; x_195 = x_344; -x_196 = x_336; -x_197 = x_342; +x_196 = x_345; +x_197 = lean_box(0); x_198 = x_339; x_199 = x_340; -x_200 = lean_box(0); -x_201 = x_345; -x_202 = x_341; +x_200 = x_341; +x_201 = x_342; +x_202 = x_336; x_203 = x_122; goto block_334; } @@ -15446,16 +16306,16 @@ return x_489; block_507: { uint8_t x_498; -x_498 = lean_nat_dec_lt(x_464, x_494); +x_498 = lean_nat_dec_lt(x_464, x_492); if (x_498 == 0) { -lean_dec(x_496); +lean_dec_ref(x_497); +lean_dec_ref(x_496); +lean_dec(x_495); lean_dec(x_494); -lean_dec_ref(x_493); -lean_dec_ref(x_492); -lean_dec(x_491); +lean_dec(x_492); lean_dec(x_469); -x_473 = x_495; +x_473 = x_493; x_474 = lean_box(0); goto block_484; } @@ -15463,18 +16323,18 @@ else { lean_object* x_499; uint8_t x_500; x_499 = lean_box(0); -x_500 = lean_nat_dec_le(x_494, x_494); +x_500 = lean_nat_dec_le(x_492, x_492); if (x_500 == 0) { if (x_498 == 0) { -lean_dec(x_496); +lean_dec_ref(x_497); +lean_dec_ref(x_496); +lean_dec(x_495); lean_dec(x_494); -lean_dec_ref(x_493); -lean_dec_ref(x_492); -lean_dec(x_491); +lean_dec(x_492); lean_dec(x_469); -x_473 = x_495; +x_473 = x_493; x_474 = lean_box(0); goto block_484; } @@ -15482,15 +16342,15 @@ else { size_t x_501; size_t x_502; lean_object* x_503; x_501 = 0; -x_502 = lean_usize_of_nat(x_494); +x_502 = lean_usize_of_nat(x_492); +lean_dec(x_492); +x_503 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_469, x_501, x_502, x_499, x_497, x_494, x_496, x_495); +lean_dec(x_495); +lean_dec_ref(x_496); lean_dec(x_494); -x_503 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_469, x_501, x_502, x_499, x_493, x_496, x_492, x_491); -lean_dec(x_491); -lean_dec_ref(x_492); -lean_dec(x_496); -lean_dec_ref(x_493); +lean_dec_ref(x_497); lean_dec(x_469); -x_485 = x_495; +x_485 = x_493; x_486 = x_503; goto block_490; } @@ -15499,15 +16359,15 @@ else { size_t x_504; size_t x_505; lean_object* x_506; x_504 = 0; -x_505 = lean_usize_of_nat(x_494); +x_505 = lean_usize_of_nat(x_492); +lean_dec(x_492); +x_506 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_469, x_504, x_505, x_499, x_497, x_494, x_496, x_495); +lean_dec(x_495); +lean_dec_ref(x_496); lean_dec(x_494); -x_506 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_469, x_504, x_505, x_499, x_493, x_496, x_492, x_491); -lean_dec(x_491); -lean_dec_ref(x_492); -lean_dec(x_496); -lean_dec_ref(x_493); +lean_dec_ref(x_497); lean_dec(x_469); -x_485 = x_495; +x_485 = x_493; x_486 = x_506; goto block_490; } @@ -15594,13 +16454,13 @@ lean_dec(x_452); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_491 = x_522; -x_492 = x_521; -x_493 = x_519; -x_494 = x_524; -x_495 = x_518; -x_496 = x_520; -x_497 = lean_box(0); +x_491 = lean_box(0); +x_492 = x_524; +x_493 = x_518; +x_494 = x_520; +x_495 = x_522; +x_496 = x_521; +x_497 = x_519; goto block_507; } else @@ -15618,13 +16478,13 @@ lean_dec(x_452); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_491 = x_522; -x_492 = x_521; -x_493 = x_519; -x_494 = x_524; -x_495 = x_518; -x_496 = x_520; -x_497 = lean_box(0); +x_491 = lean_box(0); +x_492 = x_524; +x_493 = x_518; +x_494 = x_520; +x_495 = x_522; +x_496 = x_521; +x_497 = x_519; goto block_507; } else @@ -15646,13 +16506,13 @@ lean_dec(x_454); lean_dec_ref(x_453); lean_dec(x_452); lean_dec_ref(x_1); -x_491 = x_522; -x_492 = x_521; -x_493 = x_519; -x_494 = x_524; -x_495 = x_518; -x_496 = x_520; -x_497 = lean_box(0); +x_491 = lean_box(0); +x_492 = x_524; +x_493 = x_518; +x_494 = x_520; +x_495 = x_522; +x_496 = x_521; +x_497 = x_519; goto block_507; } else @@ -15737,13 +16597,13 @@ lean_dec(x_454); lean_dec_ref(x_453); lean_dec(x_452); lean_dec_ref(x_1); -x_491 = x_522; -x_492 = x_521; -x_493 = x_519; -x_494 = x_524; -x_495 = x_518; -x_496 = x_520; -x_497 = lean_box(0); +x_491 = lean_box(0); +x_492 = x_524; +x_493 = x_518; +x_494 = x_520; +x_495 = x_522; +x_496 = x_521; +x_497 = x_519; goto block_507; } } @@ -16376,16 +17236,16 @@ return x_629; block_647: { uint8_t x_638; -x_638 = lean_nat_dec_lt(x_606, x_634); +x_638 = lean_nat_dec_lt(x_606, x_632); if (x_638 == 0) { -lean_dec(x_636); +lean_dec_ref(x_637); +lean_dec_ref(x_636); +lean_dec(x_635); lean_dec(x_634); -lean_dec_ref(x_633); -lean_dec_ref(x_632); -lean_dec(x_631); +lean_dec(x_632); lean_dec(x_611); -x_615 = x_635; +x_615 = x_633; x_616 = lean_box(0); goto block_624; } @@ -16393,18 +17253,18 @@ else { lean_object* x_639; uint8_t x_640; x_639 = lean_box(0); -x_640 = lean_nat_dec_le(x_634, x_634); +x_640 = lean_nat_dec_le(x_632, x_632); if (x_640 == 0) { if (x_638 == 0) { -lean_dec(x_636); +lean_dec_ref(x_637); +lean_dec_ref(x_636); +lean_dec(x_635); lean_dec(x_634); -lean_dec_ref(x_633); -lean_dec_ref(x_632); -lean_dec(x_631); +lean_dec(x_632); lean_dec(x_611); -x_615 = x_635; +x_615 = x_633; x_616 = lean_box(0); goto block_624; } @@ -16412,15 +17272,15 @@ else { size_t x_641; size_t x_642; lean_object* x_643; x_641 = 0; -x_642 = lean_usize_of_nat(x_634); +x_642 = lean_usize_of_nat(x_632); +lean_dec(x_632); +x_643 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_611, x_641, x_642, x_639, x_637, x_634, x_636, x_635); +lean_dec(x_635); +lean_dec_ref(x_636); lean_dec(x_634); -x_643 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_611, x_641, x_642, x_639, x_633, x_636, x_632, x_631); -lean_dec(x_631); -lean_dec_ref(x_632); -lean_dec(x_636); -lean_dec_ref(x_633); +lean_dec_ref(x_637); lean_dec(x_611); -x_625 = x_635; +x_625 = x_633; x_626 = x_643; goto block_630; } @@ -16429,15 +17289,15 @@ else { size_t x_644; size_t x_645; lean_object* x_646; x_644 = 0; -x_645 = lean_usize_of_nat(x_634); +x_645 = lean_usize_of_nat(x_632); +lean_dec(x_632); +x_646 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_611, x_644, x_645, x_639, x_637, x_634, x_636, x_635); +lean_dec(x_635); +lean_dec_ref(x_636); lean_dec(x_634); -x_646 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_611, x_644, x_645, x_639, x_633, x_636, x_632, x_631); -lean_dec(x_631); -lean_dec_ref(x_632); -lean_dec(x_636); -lean_dec_ref(x_633); +lean_dec_ref(x_637); lean_dec(x_611); -x_625 = x_635; +x_625 = x_633; x_626 = x_646; goto block_630; } @@ -16524,13 +17384,13 @@ lean_dec(x_594); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_631 = x_662; -x_632 = x_661; -x_633 = x_659; -x_634 = x_664; -x_635 = x_658; -x_636 = x_660; -x_637 = lean_box(0); +x_631 = lean_box(0); +x_632 = x_664; +x_633 = x_658; +x_634 = x_660; +x_635 = x_662; +x_636 = x_661; +x_637 = x_659; goto block_647; } else @@ -16548,13 +17408,13 @@ lean_dec(x_594); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_631 = x_662; -x_632 = x_661; -x_633 = x_659; -x_634 = x_664; -x_635 = x_658; -x_636 = x_660; -x_637 = lean_box(0); +x_631 = lean_box(0); +x_632 = x_664; +x_633 = x_658; +x_634 = x_660; +x_635 = x_662; +x_636 = x_661; +x_637 = x_659; goto block_647; } else @@ -16576,13 +17436,13 @@ lean_dec(x_596); lean_dec_ref(x_595); lean_dec(x_594); lean_dec_ref(x_1); -x_631 = x_662; -x_632 = x_661; -x_633 = x_659; -x_634 = x_664; -x_635 = x_658; -x_636 = x_660; -x_637 = lean_box(0); +x_631 = lean_box(0); +x_632 = x_664; +x_633 = x_658; +x_634 = x_660; +x_635 = x_662; +x_636 = x_661; +x_637 = x_659; goto block_647; } else @@ -16668,13 +17528,13 @@ lean_dec(x_596); lean_dec_ref(x_595); lean_dec(x_594); lean_dec_ref(x_1); -x_631 = x_662; -x_632 = x_661; -x_633 = x_659; -x_634 = x_664; -x_635 = x_658; -x_636 = x_660; -x_637 = lean_box(0); +x_631 = lean_box(0); +x_632 = x_664; +x_633 = x_658; +x_634 = x_660; +x_635 = x_662; +x_636 = x_661; +x_637 = x_659; goto block_647; } } @@ -17054,8 +17914,8 @@ if (x_157 == 0) uint8_t x_158; x_158 = lean_unbox(x_154); lean_dec(x_154); -x_81 = x_142; -x_82 = x_158; +x_81 = x_158; +x_82 = x_142; x_83 = x_141; x_84 = x_143; x_85 = x_144; @@ -17077,8 +17937,8 @@ if (x_159 == 0) uint8_t x_160; x_160 = lean_unbox(x_154); lean_dec(x_154); -x_81 = x_142; -x_82 = x_160; +x_81 = x_160; +x_82 = x_142; x_83 = x_141; x_84 = x_143; x_85 = x_144; @@ -17123,8 +17983,8 @@ uint8_t x_168; lean_dec_ref(x_167); x_168 = lean_unbox(x_154); lean_dec(x_154); -x_81 = x_142; -x_82 = x_168; +x_81 = x_168; +x_82 = x_142; x_83 = x_166; x_84 = x_143; x_85 = x_144; @@ -17246,8 +18106,8 @@ lean_inc(x_181); lean_dec_ref(x_180); x_182 = lean_unbox(x_154); lean_dec(x_154); -x_49 = x_142; -x_50 = x_182; +x_49 = x_182; +x_50 = x_142; x_51 = x_181; x_52 = x_143; x_53 = x_144; @@ -17615,12 +18475,12 @@ block_946: if (x_831 == 0) { lean_object* x_832; -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_824); -x_832 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_824, x_825, x_822, x_823, x_829); +lean_inc_ref(x_829); +lean_inc_ref(x_830); +x_832 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_830, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_832) == 0) { lean_object* x_833; @@ -17630,7 +18490,7 @@ lean_dec_ref(x_832); if (lean_obj_tag(x_833) == 1) { lean_object* x_834; lean_object* x_835; -lean_dec_ref(x_824); +lean_dec_ref(x_830); lean_inc_ref(x_821); lean_dec_ref(x_1); x_834 = lean_ctor_get(x_833, 0); @@ -17641,26 +18501,26 @@ if (lean_obj_tag(x_835) == 0) { lean_object* x_836; lean_dec_ref(x_835); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_830); +lean_inc_ref(x_829); +lean_inc_ref(x_828); lean_inc(x_827); lean_inc_ref(x_826); -x_836 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +x_836 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_836) == 0) { lean_object* x_837; lean_object* x_838; x_837 = lean_ctor_get(x_836, 0); lean_inc(x_837); lean_dec_ref(x_836); -x_838 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_834, x_837, x_826, x_827, x_830, x_825, x_822, x_823, x_829); -lean_dec(x_829); +x_838 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_834, x_837, x_826, x_827, x_828, x_829, x_822, x_823, x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); -lean_dec_ref(x_825); -lean_dec_ref(x_830); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); lean_dec(x_834); @@ -17669,11 +18529,11 @@ return x_838; else { lean_dec(x_834); -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); return x_836; @@ -17683,11 +18543,11 @@ else { lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_dec(x_834); -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -17713,12 +18573,12 @@ else { lean_object* x_842; lean_dec(x_833); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_824); -x_842 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_824, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +lean_inc_ref(x_829); +lean_inc_ref(x_830); +x_842 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_830, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_842) == 0) { lean_object* x_843; @@ -17728,7 +18588,7 @@ lean_dec_ref(x_842); if (lean_obj_tag(x_843) == 1) { lean_object* x_844; lean_object* x_845; lean_object* x_846; -lean_dec_ref(x_824); +lean_dec_ref(x_830); lean_inc_ref(x_821); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); @@ -17752,19 +18612,19 @@ lean_ctor_set(x_846, 1, x_821); x_1 = x_846; x_2 = x_826; x_3 = x_827; -x_4 = x_830; -x_5 = x_825; +x_4 = x_828; +x_5 = x_829; x_6 = x_822; x_7 = x_823; -x_8 = x_829; +x_8 = x_824; goto _start; } else { lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_dec(x_843); -x_848 = lean_ctor_get(x_824, 0); -x_849 = lean_ctor_get(x_824, 3); +x_848 = lean_ctor_get(x_830, 0); +x_849 = lean_ctor_get(x_830, 3); x_850 = l_Lean_Compiler_LCNF_Simp_elimVar_x3f___redArg(x_849); if (lean_obj_tag(x_850) == 0) { @@ -17781,34 +18641,34 @@ x_852 = lean_ctor_get(x_851, 0); lean_inc(x_852); lean_dec_ref(x_851); lean_inc(x_848); -x_853 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_848, x_852, x_827, x_825, x_822, x_823, x_829); +x_853 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_848, x_852, x_827, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_853) == 0) { lean_object* x_854; lean_dec_ref(x_853); -x_854 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_824, x_827, x_822); -lean_dec_ref(x_824); +x_854 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_830, x_827, x_822); +lean_dec_ref(x_830); if (lean_obj_tag(x_854) == 0) { lean_dec_ref(x_854); x_1 = x_821; x_2 = x_826; x_3 = x_827; -x_4 = x_830; -x_5 = x_825; +x_4 = x_828; +x_5 = x_829; x_6 = x_822; x_7 = x_823; -x_8 = x_829; +x_8 = x_824; goto _start; } else { lean_object* x_856; lean_object* x_857; lean_object* x_858; -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -17834,11 +18694,11 @@ else { lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -17864,16 +18724,16 @@ else { lean_object* x_862; lean_dec(x_851); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_830); +lean_inc_ref(x_829); +lean_inc_ref(x_828); lean_inc(x_827); lean_inc_ref(x_826); lean_inc_ref(x_821); -lean_inc_ref(x_824); -x_862 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_824, x_821, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +lean_inc_ref(x_830); +x_862 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_830, x_821, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_862) == 0) { lean_object* x_863; @@ -17883,19 +18743,19 @@ lean_dec_ref(x_862); if (lean_obj_tag(x_863) == 1) { lean_object* x_864; lean_object* x_865; -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec_ref(x_1); x_864 = lean_ctor_get(x_863, 0); lean_inc(x_864); lean_dec_ref(x_863); -x_865 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_824, x_827, x_822); +x_865 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_830, x_827, x_822); lean_dec(x_822); lean_dec(x_827); -lean_dec_ref(x_824); +lean_dec_ref(x_830); if (lean_obj_tag(x_865) == 0) { lean_object* x_866; lean_object* x_867; @@ -17940,15 +18800,15 @@ else { lean_object* x_871; lean_dec(x_863); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_830); +lean_inc_ref(x_829); +lean_inc_ref(x_828); lean_inc(x_827); lean_inc_ref(x_826); lean_inc(x_849); -x_871 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_849, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +x_871 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_849, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_871) == 0) { lean_object* x_872; @@ -17969,37 +18829,37 @@ x_875 = lean_ctor_get(x_873, 1); lean_inc(x_875); lean_dec(x_873); lean_inc(x_848); -x_876 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_848, x_875, x_827, x_825, x_822, x_823, x_829); +x_876 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_848, x_875, x_827, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_876) == 0) { lean_object* x_877; lean_dec_ref(x_876); -x_877 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_824, x_827, x_822); -lean_dec_ref(x_824); +x_877 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_830, x_827, x_822); +lean_dec_ref(x_830); if (lean_obj_tag(x_877) == 0) { lean_object* x_878; lean_dec_ref(x_877); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_830); +lean_inc_ref(x_829); +lean_inc_ref(x_828); lean_inc(x_827); lean_inc_ref(x_826); -x_878 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +x_878 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_878) == 0) { lean_object* x_879; lean_object* x_880; x_879 = lean_ctor_get(x_878, 0); lean_inc(x_879); lean_dec_ref(x_878); -x_880 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_874, x_879, x_826, x_827, x_830, x_825, x_822, x_823, x_829); -lean_dec(x_829); +x_880 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_874, x_879, x_826, x_827, x_828, x_829, x_822, x_823, x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); -lean_dec_ref(x_825); -lean_dec_ref(x_830); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); lean_dec(x_874); @@ -18008,11 +18868,11 @@ return x_880; else { lean_dec(x_874); -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); return x_878; @@ -18022,11 +18882,11 @@ else { lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_dec(x_874); -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -18053,11 +18913,11 @@ else lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_dec(x_874); lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -18083,15 +18943,15 @@ else { lean_object* x_887; lean_dec(x_872); -lean_inc(x_829); +lean_inc(x_824); lean_inc_ref(x_823); lean_inc(x_822); -lean_inc_ref(x_825); -lean_inc_ref(x_830); +lean_inc_ref(x_829); +lean_inc_ref(x_828); lean_inc(x_827); lean_inc_ref(x_826); lean_inc_ref(x_821); -x_887 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_830, x_825, x_822, x_823, x_829); +x_887 = l_Lean_Compiler_LCNF_Simp_simp(x_821, x_826, x_827, x_828, x_829, x_822, x_823, x_824); if (lean_obj_tag(x_887) == 0) { lean_object* x_888; lean_object* x_889; @@ -18110,16 +18970,16 @@ lean_dec(x_890); if (x_891 == 0) { lean_object* x_892; -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec_ref(x_1); -x_892 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_824, x_827, x_822); +x_892 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_830, x_827, x_822); lean_dec(x_822); lean_dec(x_827); -lean_dec_ref(x_824); +lean_dec_ref(x_830); if (lean_obj_tag(x_892) == 0) { lean_object* x_893; lean_object* x_894; @@ -18163,13 +19023,13 @@ return x_897; else { lean_object* x_898; -lean_inc_ref(x_824); -x_898 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_824, x_826, x_827, x_830, x_825, x_822, x_823, x_829); -lean_dec(x_829); +lean_inc_ref(x_830); +x_898 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_830, x_826, x_827, x_828, x_829, x_822, x_823, x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); -lean_dec_ref(x_825); -lean_dec_ref(x_830); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); if (lean_obj_tag(x_898) == 0) @@ -18182,8 +19042,8 @@ x_901 = lean_usize_dec_eq(x_899, x_900); if (x_901 == 0) { x_98 = x_888; -x_99 = x_824; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_830; x_101 = x_901; goto block_105; } @@ -18191,11 +19051,11 @@ else { size_t x_902; size_t x_903; uint8_t x_904; x_902 = lean_ptr_addr(x_820); -x_903 = lean_ptr_addr(x_824); +x_903 = lean_ptr_addr(x_830); x_904 = lean_usize_dec_eq(x_902, x_903); x_98 = x_888; -x_99 = x_824; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_830; x_101 = x_904; goto block_105; } @@ -18204,7 +19064,7 @@ else { lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_dec(x_888); -lean_dec_ref(x_824); +lean_dec_ref(x_830); lean_dec_ref(x_1); x_905 = lean_ctor_get(x_898, 0); lean_inc(x_905); @@ -18230,11 +19090,11 @@ else lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_dec(x_888); lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18259,11 +19119,11 @@ return x_910; else { lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18275,11 +19135,11 @@ else { lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18306,11 +19166,11 @@ else { lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18337,11 +19197,11 @@ else { lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18368,11 +19228,11 @@ else { lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18399,11 +19259,11 @@ else { lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); -lean_dec_ref(x_824); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_1); @@ -18431,7 +19291,7 @@ lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_inc_ref(x_821); lean_dec_ref(x_1); x_926 = lean_st_ref_take(x_827); -x_927 = lean_ctor_get(x_824, 0); +x_927 = lean_ctor_get(x_830, 0); x_928 = lean_ctor_get(x_926, 0); lean_inc_ref(x_928); x_929 = lean_ctor_get(x_926, 1); @@ -18477,29 +19337,29 @@ lean_ctor_set(x_939, 5, x_934); lean_ctor_set(x_939, 6, x_935); lean_ctor_set_uint8(x_939, sizeof(void*)*7, x_932); x_940 = lean_st_ref_set(x_827, x_939); -x_941 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_824, x_827, x_822); -lean_dec_ref(x_824); +x_941 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_830, x_827, x_822); +lean_dec_ref(x_830); if (lean_obj_tag(x_941) == 0) { lean_dec_ref(x_941); x_1 = x_821; x_2 = x_826; x_3 = x_827; -x_4 = x_830; -x_5 = x_825; +x_4 = x_828; +x_5 = x_829; x_6 = x_822; x_7 = x_823; -x_8 = x_829; +x_8 = x_824; goto _start; } else { lean_object* x_943; lean_object* x_944; lean_object* x_945; -lean_dec_ref(x_830); -lean_dec(x_829); +lean_dec_ref(x_829); +lean_dec_ref(x_828); lean_dec(x_827); lean_dec_ref(x_826); -lean_dec_ref(x_825); +lean_dec(x_824); lean_dec_ref(x_823); lean_dec(x_822); lean_dec_ref(x_821); @@ -18532,13 +19392,13 @@ if (x_959 == 0) lean_dec(x_950); x_822 = x_955; x_823 = x_956; -x_824 = x_948; -x_825 = x_954; +x_824 = x_957; +x_825 = lean_box(0); x_826 = x_951; x_827 = x_952; -x_828 = lean_box(0); -x_829 = x_957; -x_830 = x_953; +x_828 = x_953; +x_829 = x_954; +x_830 = x_948; x_831 = x_122; goto block_946; } @@ -18551,13 +19411,13 @@ if (x_961 == 0) { x_822 = x_955; x_823 = x_956; -x_824 = x_948; -x_825 = x_954; +x_824 = x_957; +x_825 = lean_box(0); x_826 = x_951; x_827 = x_952; -x_828 = lean_box(0); -x_829 = x_957; -x_830 = x_953; +x_828 = x_953; +x_829 = x_954; +x_830 = x_948; x_831 = x_959; goto block_946; } @@ -18565,13 +19425,13 @@ else { x_822 = x_955; x_823 = x_956; -x_824 = x_948; -x_825 = x_954; +x_824 = x_957; +x_825 = lean_box(0); x_826 = x_951; x_827 = x_952; -x_828 = lean_box(0); -x_829 = x_957; -x_830 = x_953; +x_828 = x_953; +x_829 = x_954; +x_830 = x_948; x_831 = x_122; goto block_946; } @@ -19453,16 +20313,16 @@ return x_1097; block_1115: { uint8_t x_1106; -x_1106 = lean_nat_dec_lt(x_1074, x_1102); +x_1106 = lean_nat_dec_lt(x_1074, x_1100); if (x_1106 == 0) { -lean_dec(x_1104); +lean_dec_ref(x_1105); +lean_dec_ref(x_1104); +lean_dec(x_1103); lean_dec(x_1102); -lean_dec_ref(x_1101); -lean_dec_ref(x_1100); -lean_dec(x_1099); +lean_dec(x_1100); lean_dec(x_1079); -x_1083 = x_1103; +x_1083 = x_1101; x_1084 = lean_box(0); goto block_1092; } @@ -19470,18 +20330,18 @@ else { lean_object* x_1107; uint8_t x_1108; x_1107 = lean_box(0); -x_1108 = lean_nat_dec_le(x_1102, x_1102); +x_1108 = lean_nat_dec_le(x_1100, x_1100); if (x_1108 == 0) { if (x_1106 == 0) { -lean_dec(x_1104); +lean_dec_ref(x_1105); +lean_dec_ref(x_1104); +lean_dec(x_1103); lean_dec(x_1102); -lean_dec_ref(x_1101); -lean_dec_ref(x_1100); -lean_dec(x_1099); +lean_dec(x_1100); lean_dec(x_1079); -x_1083 = x_1103; +x_1083 = x_1101; x_1084 = lean_box(0); goto block_1092; } @@ -19489,15 +20349,15 @@ else { size_t x_1109; size_t x_1110; lean_object* x_1111; x_1109 = 0; -x_1110 = lean_usize_of_nat(x_1102); +x_1110 = lean_usize_of_nat(x_1100); +lean_dec(x_1100); +x_1111 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1079, x_1109, x_1110, x_1107, x_1105, x_1102, x_1104, x_1103); +lean_dec(x_1103); +lean_dec_ref(x_1104); lean_dec(x_1102); -x_1111 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1079, x_1109, x_1110, x_1107, x_1101, x_1104, x_1100, x_1099); -lean_dec(x_1099); -lean_dec_ref(x_1100); -lean_dec(x_1104); -lean_dec_ref(x_1101); +lean_dec_ref(x_1105); lean_dec(x_1079); -x_1093 = x_1103; +x_1093 = x_1101; x_1094 = x_1111; goto block_1098; } @@ -19506,15 +20366,15 @@ else { size_t x_1112; size_t x_1113; lean_object* x_1114; x_1112 = 0; -x_1113 = lean_usize_of_nat(x_1102); +x_1113 = lean_usize_of_nat(x_1100); +lean_dec(x_1100); +x_1114 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1079, x_1112, x_1113, x_1107, x_1105, x_1102, x_1104, x_1103); +lean_dec(x_1103); +lean_dec_ref(x_1104); lean_dec(x_1102); -x_1114 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1079, x_1112, x_1113, x_1107, x_1101, x_1104, x_1100, x_1099); -lean_dec(x_1099); -lean_dec_ref(x_1100); -lean_dec(x_1104); -lean_dec_ref(x_1101); +lean_dec_ref(x_1105); lean_dec(x_1079); -x_1093 = x_1103; +x_1093 = x_1101; x_1094 = x_1114; goto block_1098; } @@ -19601,13 +20461,13 @@ lean_dec(x_1062); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_1099 = x_1130; -x_1100 = x_1129; -x_1101 = x_1127; -x_1102 = x_1132; -x_1103 = x_1126; -x_1104 = x_1128; -x_1105 = lean_box(0); +x_1099 = lean_box(0); +x_1100 = x_1132; +x_1101 = x_1126; +x_1102 = x_1128; +x_1103 = x_1130; +x_1104 = x_1129; +x_1105 = x_1127; goto block_1115; } else @@ -19625,13 +20485,13 @@ lean_dec(x_1062); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_1099 = x_1130; -x_1100 = x_1129; -x_1101 = x_1127; -x_1102 = x_1132; -x_1103 = x_1126; -x_1104 = x_1128; -x_1105 = lean_box(0); +x_1099 = lean_box(0); +x_1100 = x_1132; +x_1101 = x_1126; +x_1102 = x_1128; +x_1103 = x_1130; +x_1104 = x_1129; +x_1105 = x_1127; goto block_1115; } else @@ -19653,13 +20513,13 @@ lean_dec(x_1064); lean_dec_ref(x_1063); lean_dec(x_1062); lean_dec_ref(x_1); -x_1099 = x_1130; -x_1100 = x_1129; -x_1101 = x_1127; -x_1102 = x_1132; -x_1103 = x_1126; -x_1104 = x_1128; -x_1105 = lean_box(0); +x_1099 = lean_box(0); +x_1100 = x_1132; +x_1101 = x_1126; +x_1102 = x_1128; +x_1103 = x_1130; +x_1104 = x_1129; +x_1105 = x_1127; goto block_1115; } else @@ -19745,13 +20605,13 @@ lean_dec(x_1064); lean_dec_ref(x_1063); lean_dec(x_1062); lean_dec_ref(x_1); -x_1099 = x_1130; -x_1100 = x_1129; -x_1101 = x_1127; -x_1102 = x_1132; -x_1103 = x_1126; -x_1104 = x_1128; -x_1105 = lean_box(0); +x_1099 = lean_box(0); +x_1100 = x_1132; +x_1101 = x_1126; +x_1102 = x_1128; +x_1103 = x_1130; +x_1104 = x_1129; +x_1105 = x_1127; goto block_1115; } } @@ -20105,8 +20965,8 @@ if (x_785 == 0) uint8_t x_786; x_786 = lean_unbox(x_782); lean_dec(x_782); -x_81 = x_770; -x_82 = x_786; +x_81 = x_786; +x_82 = x_770; x_83 = x_769; x_84 = x_771; x_85 = x_772; @@ -20128,8 +20988,8 @@ if (x_787 == 0) uint8_t x_788; x_788 = lean_unbox(x_782); lean_dec(x_782); -x_81 = x_770; -x_82 = x_788; +x_81 = x_788; +x_82 = x_770; x_83 = x_769; x_84 = x_771; x_85 = x_772; @@ -20174,8 +21034,8 @@ uint8_t x_796; lean_dec_ref(x_795); x_796 = lean_unbox(x_782); lean_dec(x_782); -x_81 = x_770; -x_82 = x_796; +x_81 = x_796; +x_82 = x_770; x_83 = x_794; x_84 = x_771; x_85 = x_772; @@ -20300,8 +21160,8 @@ lean_inc(x_809); lean_dec_ref(x_808); x_810 = lean_unbox(x_782); lean_dec(x_782); -x_49 = x_770; -x_50 = x_810; +x_49 = x_810; +x_50 = x_770; x_51 = x_809; x_52 = x_771; x_53 = x_772; @@ -20742,12 +21602,12 @@ block_1416: if (x_1301 == 0) { lean_object* x_1302; -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1294); -x_1302 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_1294, x_1295, x_1292, x_1293, x_1299); +lean_inc_ref(x_1299); +lean_inc_ref(x_1300); +x_1302 = l_Lean_Compiler_LCNF_Simp_ConstantFold_foldConstants(x_1300, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1302) == 0) { lean_object* x_1303; @@ -20757,7 +21617,7 @@ lean_dec_ref(x_1302); if (lean_obj_tag(x_1303) == 1) { lean_object* x_1304; lean_object* x_1305; -lean_dec_ref(x_1294); +lean_dec_ref(x_1300); lean_inc_ref(x_1291); lean_dec_ref(x_1); x_1304 = lean_ctor_get(x_1303, 0); @@ -20768,26 +21628,26 @@ if (lean_obj_tag(x_1305) == 0) { lean_object* x_1306; lean_dec_ref(x_1305); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1300); +lean_inc_ref(x_1299); +lean_inc_ref(x_1298); lean_inc(x_1297); lean_inc_ref(x_1296); -x_1306 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +x_1306 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1306) == 0) { lean_object* x_1307; lean_object* x_1308; x_1307 = lean_ctor_get(x_1306, 0); lean_inc(x_1307); lean_dec_ref(x_1306); -x_1308 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_1304, x_1307, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); -lean_dec(x_1299); +x_1308 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_1304, x_1307, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); -lean_dec_ref(x_1295); -lean_dec_ref(x_1300); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); lean_dec(x_1304); @@ -20796,11 +21656,11 @@ return x_1308; else { lean_dec(x_1304); -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); return x_1306; @@ -20810,11 +21670,11 @@ else { lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_dec(x_1304); -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -20840,12 +21700,12 @@ else { lean_object* x_1312; lean_dec(x_1303); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1294); -x_1312 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_1294, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +lean_inc_ref(x_1299); +lean_inc_ref(x_1300); +x_1312 = l_Lean_Compiler_LCNF_Simp_etaPolyApp_x3f(x_1300, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1312) == 0) { lean_object* x_1313; @@ -20855,7 +21715,7 @@ lean_dec_ref(x_1312); if (lean_obj_tag(x_1313) == 1) { lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; -lean_dec_ref(x_1294); +lean_dec_ref(x_1300); lean_inc_ref(x_1291); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); @@ -20879,19 +21739,19 @@ lean_ctor_set(x_1316, 1, x_1291); x_1 = x_1316; x_2 = x_1296; x_3 = x_1297; -x_4 = x_1300; -x_5 = x_1295; +x_4 = x_1298; +x_5 = x_1299; x_6 = x_1292; x_7 = x_1293; -x_8 = x_1299; +x_8 = x_1294; goto _start; } else { lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_dec(x_1313); -x_1318 = lean_ctor_get(x_1294, 0); -x_1319 = lean_ctor_get(x_1294, 3); +x_1318 = lean_ctor_get(x_1300, 0); +x_1319 = lean_ctor_get(x_1300, 3); x_1320 = l_Lean_Compiler_LCNF_Simp_elimVar_x3f___redArg(x_1319); if (lean_obj_tag(x_1320) == 0) { @@ -20908,34 +21768,34 @@ x_1322 = lean_ctor_get(x_1321, 0); lean_inc(x_1322); lean_dec_ref(x_1321); lean_inc(x_1318); -x_1323 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_1318, x_1322, x_1297, x_1295, x_1292, x_1293, x_1299); +x_1323 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_1318, x_1322, x_1297, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1323) == 0) { lean_object* x_1324; lean_dec_ref(x_1323); -x_1324 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1294, x_1297, x_1292); -lean_dec_ref(x_1294); +x_1324 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1300, x_1297, x_1292); +lean_dec_ref(x_1300); if (lean_obj_tag(x_1324) == 0) { lean_dec_ref(x_1324); x_1 = x_1291; x_2 = x_1296; x_3 = x_1297; -x_4 = x_1300; -x_5 = x_1295; +x_4 = x_1298; +x_5 = x_1299; x_6 = x_1292; x_7 = x_1293; -x_8 = x_1299; +x_8 = x_1294; goto _start; } else { lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -20961,11 +21821,11 @@ else { lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -20991,16 +21851,16 @@ else { lean_object* x_1332; lean_dec(x_1321); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1300); +lean_inc_ref(x_1299); +lean_inc_ref(x_1298); lean_inc(x_1297); lean_inc_ref(x_1296); lean_inc_ref(x_1291); -lean_inc_ref(x_1294); -x_1332 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_1294, x_1291, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +lean_inc_ref(x_1300); +x_1332 = l_Lean_Compiler_LCNF_Simp_inlineApp_x3f(x_1300, x_1291, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1332) == 0) { lean_object* x_1333; @@ -21010,19 +21870,19 @@ lean_dec_ref(x_1332); if (lean_obj_tag(x_1333) == 1) { lean_object* x_1334; lean_object* x_1335; -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec_ref(x_1); x_1334 = lean_ctor_get(x_1333, 0); lean_inc(x_1334); lean_dec_ref(x_1333); -x_1335 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1294, x_1297, x_1292); +x_1335 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1300, x_1297, x_1292); lean_dec(x_1292); lean_dec(x_1297); -lean_dec_ref(x_1294); +lean_dec_ref(x_1300); if (lean_obj_tag(x_1335) == 0) { lean_object* x_1336; lean_object* x_1337; @@ -21067,15 +21927,15 @@ else { lean_object* x_1341; lean_dec(x_1333); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1300); +lean_inc_ref(x_1299); +lean_inc_ref(x_1298); lean_inc(x_1297); lean_inc_ref(x_1296); lean_inc(x_1319); -x_1341 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_1319, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +x_1341 = l_Lean_Compiler_LCNF_Simp_inlineProjInst_x3f(x_1319, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1341) == 0) { lean_object* x_1342; @@ -21096,37 +21956,37 @@ x_1345 = lean_ctor_get(x_1343, 1); lean_inc(x_1345); lean_dec(x_1343); lean_inc(x_1318); -x_1346 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_1318, x_1345, x_1297, x_1295, x_1292, x_1293, x_1299); +x_1346 = l_Lean_Compiler_LCNF_Simp_addFVarSubst___redArg(x_1318, x_1345, x_1297, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1346) == 0) { lean_object* x_1347; lean_dec_ref(x_1346); -x_1347 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1294, x_1297, x_1292); -lean_dec_ref(x_1294); +x_1347 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1300, x_1297, x_1292); +lean_dec_ref(x_1300); if (lean_obj_tag(x_1347) == 0) { lean_object* x_1348; lean_dec_ref(x_1347); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1300); +lean_inc_ref(x_1299); +lean_inc_ref(x_1298); lean_inc(x_1297); lean_inc_ref(x_1296); -x_1348 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +x_1348 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1348) == 0) { lean_object* x_1349; lean_object* x_1350; x_1349 = lean_ctor_get(x_1348, 0); lean_inc(x_1349); lean_dec_ref(x_1348); -x_1350 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_1344, x_1349, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); -lean_dec(x_1299); +x_1350 = l_Lean_Compiler_LCNF_Simp_attachCodeDecls(x_1344, x_1349, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); -lean_dec_ref(x_1295); -lean_dec_ref(x_1300); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); lean_dec(x_1344); @@ -21135,11 +21995,11 @@ return x_1350; else { lean_dec(x_1344); -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); return x_1348; @@ -21149,11 +22009,11 @@ else { lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_dec(x_1344); -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -21180,11 +22040,11 @@ else lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_dec(x_1344); lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -21210,15 +22070,15 @@ else { lean_object* x_1357; lean_dec(x_1342); -lean_inc(x_1299); +lean_inc(x_1294); lean_inc_ref(x_1293); lean_inc(x_1292); -lean_inc_ref(x_1295); -lean_inc_ref(x_1300); +lean_inc_ref(x_1299); +lean_inc_ref(x_1298); lean_inc(x_1297); lean_inc_ref(x_1296); lean_inc_ref(x_1291); -x_1357 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); +x_1357 = l_Lean_Compiler_LCNF_Simp_simp(x_1291, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); if (lean_obj_tag(x_1357) == 0) { lean_object* x_1358; lean_object* x_1359; @@ -21237,16 +22097,16 @@ lean_dec(x_1360); if (x_1361 == 0) { lean_object* x_1362; -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec_ref(x_1); -x_1362 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1294, x_1297, x_1292); +x_1362 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1300, x_1297, x_1292); lean_dec(x_1292); lean_dec(x_1297); -lean_dec_ref(x_1294); +lean_dec_ref(x_1300); if (lean_obj_tag(x_1362) == 0) { lean_object* x_1363; lean_object* x_1364; @@ -21290,13 +22150,13 @@ return x_1367; else { lean_object* x_1368; -lean_inc_ref(x_1294); -x_1368 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_1294, x_1296, x_1297, x_1300, x_1295, x_1292, x_1293, x_1299); -lean_dec(x_1299); +lean_inc_ref(x_1300); +x_1368 = l_Lean_Compiler_LCNF_Simp_markUsedLetDecl(x_1300, x_1296, x_1297, x_1298, x_1299, x_1292, x_1293, x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); -lean_dec_ref(x_1295); -lean_dec_ref(x_1300); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); if (lean_obj_tag(x_1368) == 0) @@ -21309,8 +22169,8 @@ x_1371 = lean_usize_dec_eq(x_1369, x_1370); if (x_1371 == 0) { x_98 = x_1358; -x_99 = x_1294; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_1300; x_101 = x_1371; goto block_105; } @@ -21318,11 +22178,11 @@ else { size_t x_1372; size_t x_1373; uint8_t x_1374; x_1372 = lean_ptr_addr(x_1290); -x_1373 = lean_ptr_addr(x_1294); +x_1373 = lean_ptr_addr(x_1300); x_1374 = lean_usize_dec_eq(x_1372, x_1373); x_98 = x_1358; -x_99 = x_1294; -x_100 = lean_box(0); +x_99 = lean_box(0); +x_100 = x_1300; x_101 = x_1374; goto block_105; } @@ -21331,7 +22191,7 @@ else { lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_dec(x_1358); -lean_dec_ref(x_1294); +lean_dec_ref(x_1300); lean_dec_ref(x_1); x_1375 = lean_ctor_get(x_1368, 0); lean_inc(x_1375); @@ -21357,11 +22217,11 @@ else lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_dec(x_1358); lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21386,11 +22246,11 @@ return x_1380; else { lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21402,11 +22262,11 @@ else { lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21433,11 +22293,11 @@ else { lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21464,11 +22324,11 @@ else { lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21495,11 +22355,11 @@ else { lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21526,11 +22386,11 @@ else { lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); -lean_dec_ref(x_1294); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1); @@ -21558,7 +22418,7 @@ lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_13 lean_inc_ref(x_1291); lean_dec_ref(x_1); x_1396 = lean_st_ref_take(x_1297); -x_1397 = lean_ctor_get(x_1294, 0); +x_1397 = lean_ctor_get(x_1300, 0); x_1398 = lean_ctor_get(x_1396, 0); lean_inc_ref(x_1398); x_1399 = lean_ctor_get(x_1396, 1); @@ -21604,29 +22464,29 @@ lean_ctor_set(x_1409, 5, x_1404); lean_ctor_set(x_1409, 6, x_1405); lean_ctor_set_uint8(x_1409, sizeof(void*)*7, x_1402); x_1410 = lean_st_ref_set(x_1297, x_1409); -x_1411 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1294, x_1297, x_1292); -lean_dec_ref(x_1294); +x_1411 = l_Lean_Compiler_LCNF_Simp_eraseLetDecl___redArg(x_1300, x_1297, x_1292); +lean_dec_ref(x_1300); if (lean_obj_tag(x_1411) == 0) { lean_dec_ref(x_1411); x_1 = x_1291; x_2 = x_1296; x_3 = x_1297; -x_4 = x_1300; -x_5 = x_1295; +x_4 = x_1298; +x_5 = x_1299; x_6 = x_1292; x_7 = x_1293; -x_8 = x_1299; +x_8 = x_1294; goto _start; } else { lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; -lean_dec_ref(x_1300); -lean_dec(x_1299); +lean_dec_ref(x_1299); +lean_dec_ref(x_1298); lean_dec(x_1297); lean_dec_ref(x_1296); -lean_dec_ref(x_1295); +lean_dec(x_1294); lean_dec_ref(x_1293); lean_dec(x_1292); lean_dec_ref(x_1291); @@ -21659,13 +22519,13 @@ if (x_1429 == 0) lean_dec(x_1420); x_1292 = x_1425; x_1293 = x_1426; -x_1294 = x_1418; -x_1295 = x_1424; +x_1294 = x_1427; +x_1295 = lean_box(0); x_1296 = x_1421; x_1297 = x_1422; -x_1298 = lean_box(0); -x_1299 = x_1427; -x_1300 = x_1423; +x_1298 = x_1423; +x_1299 = x_1424; +x_1300 = x_1418; x_1301 = x_122; goto block_1416; } @@ -21678,13 +22538,13 @@ if (x_1431 == 0) { x_1292 = x_1425; x_1293 = x_1426; -x_1294 = x_1418; -x_1295 = x_1424; +x_1294 = x_1427; +x_1295 = lean_box(0); x_1296 = x_1421; x_1297 = x_1422; -x_1298 = lean_box(0); -x_1299 = x_1427; -x_1300 = x_1423; +x_1298 = x_1423; +x_1299 = x_1424; +x_1300 = x_1418; x_1301 = x_1429; goto block_1416; } @@ -21692,13 +22552,13 @@ else { x_1292 = x_1425; x_1293 = x_1426; -x_1294 = x_1418; -x_1295 = x_1424; +x_1294 = x_1427; +x_1295 = lean_box(0); x_1296 = x_1421; x_1297 = x_1422; -x_1298 = lean_box(0); -x_1299 = x_1427; -x_1300 = x_1423; +x_1298 = x_1423; +x_1299 = x_1424; +x_1300 = x_1418; x_1301 = x_122; goto block_1416; } @@ -22583,16 +23443,16 @@ return x_1567; block_1585: { uint8_t x_1576; -x_1576 = lean_nat_dec_lt(x_1544, x_1572); +x_1576 = lean_nat_dec_lt(x_1544, x_1570); if (x_1576 == 0) { -lean_dec(x_1574); +lean_dec_ref(x_1575); +lean_dec_ref(x_1574); +lean_dec(x_1573); lean_dec(x_1572); -lean_dec_ref(x_1571); -lean_dec_ref(x_1570); -lean_dec(x_1569); +lean_dec(x_1570); lean_dec(x_1549); -x_1553 = x_1573; +x_1553 = x_1571; x_1554 = lean_box(0); goto block_1562; } @@ -22600,18 +23460,18 @@ else { lean_object* x_1577; uint8_t x_1578; x_1577 = lean_box(0); -x_1578 = lean_nat_dec_le(x_1572, x_1572); +x_1578 = lean_nat_dec_le(x_1570, x_1570); if (x_1578 == 0) { if (x_1576 == 0) { -lean_dec(x_1574); +lean_dec_ref(x_1575); +lean_dec_ref(x_1574); +lean_dec(x_1573); lean_dec(x_1572); -lean_dec_ref(x_1571); -lean_dec_ref(x_1570); -lean_dec(x_1569); +lean_dec(x_1570); lean_dec(x_1549); -x_1553 = x_1573; +x_1553 = x_1571; x_1554 = lean_box(0); goto block_1562; } @@ -22619,15 +23479,15 @@ else { size_t x_1579; size_t x_1580; lean_object* x_1581; x_1579 = 0; -x_1580 = lean_usize_of_nat(x_1572); +x_1580 = lean_usize_of_nat(x_1570); +lean_dec(x_1570); +x_1581 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1549, x_1579, x_1580, x_1577, x_1575, x_1572, x_1574, x_1573); +lean_dec(x_1573); +lean_dec_ref(x_1574); lean_dec(x_1572); -x_1581 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1549, x_1579, x_1580, x_1577, x_1571, x_1574, x_1570, x_1569); -lean_dec(x_1569); -lean_dec_ref(x_1570); -lean_dec(x_1574); -lean_dec_ref(x_1571); +lean_dec_ref(x_1575); lean_dec(x_1549); -x_1563 = x_1573; +x_1563 = x_1571; x_1564 = x_1581; goto block_1568; } @@ -22636,15 +23496,15 @@ else { size_t x_1582; size_t x_1583; lean_object* x_1584; x_1582 = 0; -x_1583 = lean_usize_of_nat(x_1572); +x_1583 = lean_usize_of_nat(x_1570); +lean_dec(x_1570); +x_1584 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1549, x_1582, x_1583, x_1577, x_1575, x_1572, x_1574, x_1573); +lean_dec(x_1573); +lean_dec_ref(x_1574); lean_dec(x_1572); -x_1584 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Compiler_LCNF_Simp_simp_spec__9___redArg(x_1549, x_1582, x_1583, x_1577, x_1571, x_1574, x_1570, x_1569); -lean_dec(x_1569); -lean_dec_ref(x_1570); -lean_dec(x_1574); -lean_dec_ref(x_1571); +lean_dec_ref(x_1575); lean_dec(x_1549); -x_1563 = x_1573; +x_1563 = x_1571; x_1564 = x_1584; goto block_1568; } @@ -22731,13 +23591,13 @@ lean_dec(x_1532); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_1569 = x_1600; -x_1570 = x_1599; -x_1571 = x_1597; -x_1572 = x_1602; -x_1573 = x_1596; -x_1574 = x_1598; -x_1575 = lean_box(0); +x_1569 = lean_box(0); +x_1570 = x_1602; +x_1571 = x_1596; +x_1572 = x_1598; +x_1573 = x_1600; +x_1574 = x_1599; +x_1575 = x_1597; goto block_1585; } else @@ -22755,13 +23615,13 @@ lean_dec(x_1532); lean_dec(x_110); lean_dec(x_109); lean_dec_ref(x_1); -x_1569 = x_1600; -x_1570 = x_1599; -x_1571 = x_1597; -x_1572 = x_1602; -x_1573 = x_1596; -x_1574 = x_1598; -x_1575 = lean_box(0); +x_1569 = lean_box(0); +x_1570 = x_1602; +x_1571 = x_1596; +x_1572 = x_1598; +x_1573 = x_1600; +x_1574 = x_1599; +x_1575 = x_1597; goto block_1585; } else @@ -22783,13 +23643,13 @@ lean_dec(x_1534); lean_dec_ref(x_1533); lean_dec(x_1532); lean_dec_ref(x_1); -x_1569 = x_1600; -x_1570 = x_1599; -x_1571 = x_1597; -x_1572 = x_1602; -x_1573 = x_1596; -x_1574 = x_1598; -x_1575 = lean_box(0); +x_1569 = lean_box(0); +x_1570 = x_1602; +x_1571 = x_1596; +x_1572 = x_1598; +x_1573 = x_1600; +x_1574 = x_1599; +x_1575 = x_1597; goto block_1585; } else @@ -22875,13 +23735,13 @@ lean_dec(x_1534); lean_dec_ref(x_1533); lean_dec(x_1532); lean_dec_ref(x_1); -x_1569 = x_1600; -x_1570 = x_1599; -x_1571 = x_1597; -x_1572 = x_1602; -x_1573 = x_1596; -x_1574 = x_1598; -x_1575 = lean_box(0); +x_1569 = lean_box(0); +x_1570 = x_1602; +x_1571 = x_1596; +x_1572 = x_1598; +x_1573 = x_1600; +x_1574 = x_1599; +x_1575 = x_1597; goto block_1585; } } @@ -23245,8 +24105,8 @@ if (x_1254 == 0) uint8_t x_1255; x_1255 = lean_unbox(x_1251); lean_dec(x_1251); -x_81 = x_1239; -x_82 = x_1255; +x_81 = x_1255; +x_82 = x_1239; x_83 = x_1238; x_84 = x_1240; x_85 = x_1241; @@ -23268,8 +24128,8 @@ if (x_1256 == 0) uint8_t x_1257; x_1257 = lean_unbox(x_1251); lean_dec(x_1251); -x_81 = x_1239; -x_82 = x_1257; +x_81 = x_1257; +x_82 = x_1239; x_83 = x_1238; x_84 = x_1240; x_85 = x_1241; @@ -23314,8 +24174,8 @@ uint8_t x_1265; lean_dec_ref(x_1264); x_1265 = lean_unbox(x_1251); lean_dec(x_1251); -x_81 = x_1239; -x_82 = x_1265; +x_81 = x_1265; +x_82 = x_1239; x_83 = x_1263; x_84 = x_1240; x_85 = x_1241; @@ -23440,8 +24300,8 @@ lean_inc(x_1278); lean_dec_ref(x_1277); x_1279 = lean_unbox(x_1251); lean_dec(x_1251); -x_49 = x_1239; -x_50 = x_1279; +x_49 = x_1279; +x_50 = x_1239; x_51 = x_1278; x_52 = x_1240; x_53 = x_1241; @@ -23704,7 +24564,7 @@ lean_inc_ref(x_55); lean_inc_ref(x_54); lean_inc(x_53); lean_inc_ref(x_52); -x_60 = l_Lean_Compiler_LCNF_Simp_simp(x_49, x_52, x_53, x_54, x_55, x_56, x_57, x_58); +x_60 = l_Lean_Compiler_LCNF_Simp_simp(x_50, x_52, x_53, x_54, x_55, x_56, x_57, x_58); if (lean_obj_tag(x_60) == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; @@ -23778,7 +24638,7 @@ return x_72; } else { -if (x_50 == 0) +if (x_49 == 0) { lean_dec(x_58); lean_dec_ref(x_57); @@ -23921,7 +24781,7 @@ lean_dec_ref(x_87); lean_dec_ref(x_86); lean_dec(x_85); lean_dec_ref(x_84); -lean_dec_ref(x_81); +lean_dec_ref(x_82); lean_dec_ref(x_1); x_94 = !lean_is_exclusive(x_92); if (x_94 == 0) @@ -23947,7 +24807,7 @@ if (x_101 == 0) lean_object* x_102; lean_object* x_103; lean_dec_ref(x_1); x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 0, x_100); lean_ctor_set(x_102, 1, x_98); x_103 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_103, 0, x_102); @@ -23956,7 +24816,7 @@ return x_103; else { lean_object* x_104; -lean_dec_ref(x_99); +lean_dec_ref(x_100); lean_dec_ref(x_98); x_104 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_104, 0, x_1); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/SimpCase.c b/stage0/stdlib/Lean/Compiler/LCNF/SimpCase.c new file mode 100644 index 0000000000..7dfcf3c501 --- /dev/null +++ b/stage0/stdlib/Lean/Compiler/LCNF/SimpCase.c @@ -0,0 +1,2919 @@ +// Lean compiler output +// Module: Lean.Compiler.LCNF.SimpCase +// Imports: public import Lean.Compiler.LCNF.CompilerM public import Lean.Compiler.LCNF.PassManager import Lean.Compiler.LCNF.AlphaEqv import Init.Omega +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Compiler_LCNF_Code_alphaEqv(uint8_t, lean_object*, lean_object*); +lean_object* lean_array_fget_borrowed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Compiler_LCNF_instInhabitedAlt_default__1(uint8_t); +static lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0; +lean_object* lean_array_get_size(lean_object*); +lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs___boxed(lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instMonadEST(lean_object*, lean_object*); +static lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0; +lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Core_instMonadCoreM___lam__0___boxed, .m_arity = 5, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1 = (const lean_object*)&l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1_value; +lean_object* l_Lean_Core_instMonadCoreM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Core_instMonadCoreM___lam__1___boxed, .m_arity = 7, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2 = (const lean_object*)&l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2_value; +lean_object* l_ReaderT_instMonad___redArg(lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instInhabitedOfMonad___redArg(lean_object*, lean_object*); +lean_object* l_instInhabitedForall___redArg___lam__0___boxed(lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 28, .m_capacity = 28, .m_length = 27, .m_data = "Lean.Compiler.LCNF.SimpCase"}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__0_value; +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 72, .m_capacity = 72, .m_length = 71, .m_data = "_private.Lean.Compiler.LCNF.SimpCase.0.Lean.Compiler.LCNF.addDefaultAlt"}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__1 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__1_value; +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 34, .m_capacity = 34, .m_length = 33, .m_data = "unreachable code has been reached"}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__2 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__2_value; +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3; +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* lean_array_uget(lean_object*, size_t); +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* l_Lean_Compiler_LCNF_eraseCode___redArg(uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_eq(size_t, size_t); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2(lean_object*, lean_object*, size_t, size_t); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0; +static lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1; +size_t lean_array_size(lean_object*); +size_t lean_usize_of_nat(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable___boxed(lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Compiler_LCNF_Basic_0__Lean_Compiler_LCNF_updateAltCodeImp___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_ptr_addr(lean_object*); +lean_object* l___private_Lean_Compiler_LCNF_CompilerM_0__Lean_Compiler_LCNF_updateFunDeclImp___redArg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase___boxed, .m_arity = 6, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___closed__0 = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___closed__0_value; +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Compiler_LCNF_simpCase___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "simpCase"}; +static const lean_object* l_Lean_Compiler_LCNF_simpCase___closed__0 = (const lean_object*)&l_Lean_Compiler_LCNF_simpCase___closed__0_value; +lean_object* l_Lean_Name_mkStr1(lean_object*); +static const lean_ctor_object l_Lean_Compiler_LCNF_simpCase___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Compiler_LCNF_simpCase___closed__0_value),LEAN_SCALAR_PTR_LITERAL(68, 92, 41, 80, 34, 13, 30, 2)}}; +static const lean_object* l_Lean_Compiler_LCNF_simpCase___closed__1 = (const lean_object*)&l_Lean_Compiler_LCNF_simpCase___closed__1_value; +static const lean_closure_object l_Lean_Compiler_LCNF_simpCase___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___boxed, .m_arity = 6, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Compiler_LCNF_simpCase___closed__2 = (const lean_object*)&l_Lean_Compiler_LCNF_simpCase___closed__2_value; +lean_object* l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_simpCase___closed__3; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_simpCase; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Compiler"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(253, 55, 142, 128, 91, 63, 88, 28)}}; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value_aux_0),((lean_object*)&l_Lean_Compiler_LCNF_simpCase___closed__0_value),LEAN_SCALAR_PTR_LITERAL(90, 115, 95, 67, 81, 150, 198, 169)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__2_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "_private"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__2_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__2_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__3_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__2_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(103, 214, 75, 80, 34, 198, 193, 153)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__3_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__3_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__5_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__3_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(90, 18, 126, 130, 18, 214, 172, 143)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__5_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__5_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__6_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__5_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(72, 245, 227, 28, 172, 102, 215, 20)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__6_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__6_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "LCNF"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__8_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__6_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(225, 25, 15, 1, 146, 18, 87, 58)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__8_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__8_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__9_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "SimpCase"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__9_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__9_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__8_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__9_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(148, 85, 95, 162, 237, 93, 136, 210)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__11_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 2}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__10_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)(((size_t)(0) << 1) | 1)),LEAN_SCALAR_PTR_LITERAL(149, 85, 1, 1, 249, 114, 201, 242)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__11_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__11_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__12_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__11_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(128, 195, 27, 71, 70, 238, 5, 249)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__12_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__12_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__13_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__12_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(218, 73, 79, 143, 6, 98, 132, 204)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__13_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__13_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__14_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__13_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(59, 66, 31, 97, 69, 225, 237, 3)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__14_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__14_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__15_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "initFn"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__15_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__15_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__16_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__14_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__15_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(10, 203, 5, 135, 216, 0, 147, 100)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__16_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__16_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__17_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "_@"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__17_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__17_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__18_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__16_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__17_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(99, 166, 14, 190, 157, 30, 192, 24)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__18_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__18_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__19_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__18_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__4_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(174, 200, 250, 209, 136, 24, 111, 216)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__19_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__19_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__20_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__19_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__0_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(12, 208, 198, 202, 11, 103, 204, 69)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__20_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__20_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__21_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__20_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__7_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(205, 185, 0, 153, 59, 162, 228, 227)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__21_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__21_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__22_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__21_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__9_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(136, 14, 40, 21, 139, 206, 91, 108)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__22_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__22_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__23_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 2}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__22_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)(((size_t)(1808010913) << 1) | 1)),LEAN_SCALAR_PTR_LITERAL(44, 138, 246, 18, 227, 5, 112, 193)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__23_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__23_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__24_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "_hygCtx"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__24_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__24_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__25_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__23_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__24_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(227, 122, 251, 129, 187, 139, 157, 59)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__25_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__25_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__26_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "_hyg"}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__26_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__26_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__27_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__25_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__26_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(131, 16, 117, 131, 59, 32, 143, 15)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__27_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__27_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__28_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 2}, .m_objs = {((lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__27_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value),((lean_object*)(((size_t)(2) << 1) | 1)),LEAN_SCALAR_PTR_LITERAL(70, 179, 246, 216, 56, 171, 143, 161)}}; +static const lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__28_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__28_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2__value; +lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_(); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2____boxed(lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = lean_nat_dec_lt(x_4, x_1); +if (x_6 == 0) +{ +lean_dec(x_4); +lean_dec_ref(x_3); +return x_5; +} +else +{ +uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_13; lean_object* x_17; +x_7 = 1; +x_8 = lean_unsigned_to_nat(1u); +x_17 = lean_array_fget_borrowed(x_2, x_4); +switch (lean_obj_tag(x_17)) { +case 0: +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_17, 2); +lean_inc_ref(x_18); +x_13 = x_18; +goto block_16; +} +case 1: +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_17, 1); +lean_inc_ref(x_19); +x_13 = x_19; +goto block_16; +} +default: +{ +lean_object* x_20; +x_20 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_20); +x_13 = x_20; +goto block_16; +} +} +block_12: +{ +lean_object* x_10; +x_10 = lean_nat_add(x_4, x_8); +lean_dec(x_4); +x_4 = x_10; +x_5 = x_9; +goto _start; +} +block_16: +{ +uint8_t x_14; +lean_inc_ref(x_3); +x_14 = l_Lean_Compiler_LCNF_Code_alphaEqv(x_7, x_13, x_3); +if (x_14 == 0) +{ +x_9 = x_5; +goto block_12; +} +else +{ +lean_object* x_15; +x_15 = lean_nat_add(x_5, x_8); +lean_dec(x_5); +x_9 = x_15; +goto block_12; +} +} +} +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0() { +_start: +{ +uint8_t x_1; lean_object* x_2; +x_1 = 1; +x_2 = l_Lean_Compiler_LCNF_instInhabitedAlt_default__1(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0; +x_4 = lean_unsigned_to_nat(1u); +x_5 = lean_nat_add(x_2, x_4); +x_6 = lean_array_get_size(x_1); +x_7 = lean_array_get_borrowed(x_3, x_1, x_2); +switch (lean_obj_tag(x_7)) { +case 0: +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_ctor_get(x_7, 2); +lean_inc_ref(x_8); +x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(x_6, x_1, x_8, x_5, x_4); +return x_9; +} +case 1: +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_7, 1); +lean_inc_ref(x_10); +x_11 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(x_6, x_1, x_10, x_5, x_4); +return x_11; +} +default: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_12); +x_13 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(x_6, x_1, x_12, x_5, x_4); +return x_13; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(x_1, x_2); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0(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) { +_start: +{ +lean_object* x_9; +x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___redArg(x_1, x_2, x_3, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_10; +x_10 = lean_nat_dec_lt(x_3, x_1); +if (x_10 == 0) +{ +lean_dec(x_3); +return x_4; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_4); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = lean_ctor_get(x_4, 0); +x_13 = lean_ctor_get(x_4, 1); +x_14 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(x_2, x_3); +x_15 = lean_nat_dec_lt(x_12, x_14); +if (x_15 == 0) +{ +lean_dec(x_14); +x_5 = x_4; +goto block_9; +} +else +{ +lean_object* x_16; +lean_dec(x_13); +lean_dec(x_12); +x_16 = lean_array_fget_borrowed(x_2, x_3); +lean_inc(x_16); +lean_ctor_set(x_4, 1, x_16); +lean_ctor_set(x_4, 0, x_14); +x_5 = x_4; +goto block_9; +} +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_ctor_get(x_4, 0); +x_18 = lean_ctor_get(x_4, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_4); +x_19 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(x_2, x_3); +x_20 = lean_nat_dec_lt(x_17, x_19); +if (x_20 == 0) +{ +lean_object* x_21; +lean_dec(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_17); +lean_ctor_set(x_21, 1, x_18); +x_5 = x_21; +goto block_9; +} +else +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_18); +lean_dec(x_17); +x_22 = lean_array_fget_borrowed(x_2, x_3); +lean_inc(x_22); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_19); +lean_ctor_set(x_23, 1, x_22); +x_5 = x_23; +goto block_9; +} +} +} +block_9: +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_add(x_3, x_6); +lean_dec(x_3); +x_3 = x_7; +x_4 = x_5; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg(x_1, x_2, x_3, x_4); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs(lean_object* x_1) { +_start: +{ +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; uint8_t x_10; +x_2 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0; +x_3 = lean_unsigned_to_nat(1u); +x_4 = lean_array_get_size(x_1); +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_array_get_borrowed(x_2, x_1, x_5); +x_7 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf(x_1, x_5); +lean_inc(x_6); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +x_9 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg(x_4, x_1, x_3, x_8); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_ctor_set(x_9, 1, x_11); +lean_ctor_set(x_9, 0, x_12); +return x_9; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_9, 0); +x_14 = lean_ctor_get(x_9, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_9); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0(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) { +_start: +{ +lean_object* x_8; +x_8 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___redArg(x_1, x_2, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0___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) { +_start: +{ +lean_object* x_8; +x_8 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_8; +} +} +static lean_object* _init_l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_instMonadEST(lean_box(0), lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0; +x_8 = l_ReaderT_instMonad___redArg(x_7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_object* x_13; 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; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; +x_13 = lean_ctor_get(x_10, 0); +x_14 = lean_ctor_get(x_10, 2); +x_15 = lean_ctor_get(x_10, 3); +x_16 = lean_ctor_get(x_10, 4); +x_17 = lean_ctor_get(x_10, 1); +lean_dec(x_17); +x_18 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1)); +x_19 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2)); +lean_inc_ref(x_13); +x_20 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_20, 0, x_13); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_21, 0, x_13); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_23, 0, x_16); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_24, 0, x_15); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_25, 0, x_14); +lean_ctor_set(x_10, 4, x_23); +lean_ctor_set(x_10, 3, x_24); +lean_ctor_set(x_10, 2, x_25); +lean_ctor_set(x_10, 1, x_18); +lean_ctor_set(x_10, 0, x_22); +lean_ctor_set(x_8, 1, x_19); +x_26 = l_ReaderT_instMonad___redArg(x_8); +x_27 = lean_box(0); +x_28 = l_instInhabitedOfMonad___redArg(x_26, x_27); +x_29 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_29, 0, x_28); +x_30 = lean_panic_fn(x_29, x_1); +x_31 = lean_apply_5(x_30, x_2, x_3, x_4, x_5, lean_box(0)); +return x_31; +} +else +{ +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; 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_32 = lean_ctor_get(x_10, 0); +x_33 = lean_ctor_get(x_10, 2); +x_34 = lean_ctor_get(x_10, 3); +x_35 = lean_ctor_get(x_10, 4); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_10); +x_36 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1)); +x_37 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2)); +lean_inc_ref(x_32); +x_38 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_38, 0, x_32); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_39, 0, x_32); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_41, 0, x_35); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_42, 0, x_34); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_43, 0, x_33); +x_44 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_44, 0, x_40); +lean_ctor_set(x_44, 1, x_36); +lean_ctor_set(x_44, 2, x_43); +lean_ctor_set(x_44, 3, x_42); +lean_ctor_set(x_44, 4, x_41); +lean_ctor_set(x_8, 1, x_37); +lean_ctor_set(x_8, 0, x_44); +x_45 = l_ReaderT_instMonad___redArg(x_8); +x_46 = lean_box(0); +x_47 = l_instInhabitedOfMonad___redArg(x_45, x_46); +x_48 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_48, 0, x_47); +x_49 = lean_panic_fn(x_48, x_1); +x_50 = lean_apply_5(x_49, x_2, x_3, x_4, x_5, lean_box(0)); +return x_50; +} +} +else +{ +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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_51 = lean_ctor_get(x_8, 0); +lean_inc(x_51); +lean_dec(x_8); +x_52 = lean_ctor_get(x_51, 0); +lean_inc_ref(x_52); +x_53 = lean_ctor_get(x_51, 2); +lean_inc(x_53); +x_54 = lean_ctor_get(x_51, 3); +lean_inc(x_54); +x_55 = lean_ctor_get(x_51, 4); +lean_inc(x_55); +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + lean_ctor_release(x_51, 2); + lean_ctor_release(x_51, 3); + lean_ctor_release(x_51, 4); + x_56 = x_51; +} else { + lean_dec_ref(x_51); + x_56 = lean_box(0); +} +x_57 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__1)); +x_58 = ((lean_object*)(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__2)); +lean_inc_ref(x_52); +x_59 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_59, 0, x_52); +x_60 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_60, 0, x_52); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_62, 0, x_55); +x_63 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_63, 0, x_54); +x_64 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_64, 0, x_53); +if (lean_is_scalar(x_56)) { + x_65 = lean_alloc_ctor(0, 5, 0); +} else { + x_65 = x_56; +} +lean_ctor_set(x_65, 0, x_61); +lean_ctor_set(x_65, 1, x_57); +lean_ctor_set(x_65, 2, x_64); +lean_ctor_set(x_65, 3, x_63); +lean_ctor_set(x_65, 4, x_62); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_58); +x_67 = l_ReaderT_instMonad___redArg(x_66); +x_68 = lean_box(0); +x_69 = l_instInhabitedOfMonad___redArg(x_67, x_68); +x_70 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); +lean_closure_set(x_70, 0, x_69); +x_71 = lean_panic_fn(x_70, x_1); +x_72 = lean_apply_5(x_71, x_2, x_3, x_4, x_5, lean_box(0)); +return x_72; +} +} +} +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3() { +_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 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__2)); +x_2 = lean_unsigned_to_nat(36u); +x_3 = lean_unsigned_to_nat(77u); +x_4 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__1)); +x_5 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__0)); +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t 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_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_5, x_4); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_6); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_49; +x_20 = lean_ctor_get(x_6, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_6, 1); +lean_inc(x_21); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + x_22 = x_6; +} else { + lean_dec_ref(x_6); + x_22 = lean_box(0); +} +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_dec_eq(x_1, x_23); +x_29 = lean_array_uget(x_3, x_5); +x_30 = 1; +switch (lean_obj_tag(x_29)) { +case 0: +{ +lean_object* x_54; +x_54 = lean_ctor_get(x_29, 2); +lean_inc_ref(x_54); +x_49 = x_54; +goto block_53; +} +case 1: +{ +lean_object* x_55; +x_55 = lean_ctor_get(x_29, 1); +lean_inc_ref(x_55); +x_49 = x_55; +goto block_53; +} +default: +{ +lean_object* x_56; +x_56 = lean_ctor_get(x_29, 0); +lean_inc_ref(x_56); +x_49 = x_56; +goto block_53; +} +} +block_28: +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_box(x_24); +if (lean_is_scalar(x_22)) { + x_27 = lean_alloc_ctor(0, 2, 0); +} else { + x_27 = x_22; +} +lean_ctor_set(x_27, 0, x_20); +lean_ctor_set(x_27, 1, x_26); +x_12 = x_27; +x_13 = lean_box(0); +goto block_17; +} +block_48: +{ +uint8_t x_33; +x_33 = l_Lean_Compiler_LCNF_Code_alphaEqv(x_30, x_31, x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; +lean_dec(x_22); +x_34 = lean_array_push(x_20, x_29); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_21); +x_12 = x_35; +x_13 = lean_box(0); +goto block_17; +} +else +{ +if (lean_obj_tag(x_29) == 1) +{ +uint8_t x_36; +x_36 = lean_unbox(x_21); +lean_dec(x_21); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_29, 1); +lean_inc_ref(x_37); +lean_dec_ref(x_29); +x_38 = l_Lean_Compiler_LCNF_eraseCode___redArg(x_30, x_37, x_8); +lean_dec_ref(x_37); +if (lean_obj_tag(x_38) == 0) +{ +lean_dec_ref(x_38); +x_25 = lean_box(0); +goto block_28; +} +else +{ +uint8_t x_39; +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +return x_38; +} +else +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_40); +return x_41; +} +} +} +else +{ +lean_dec_ref(x_29); +x_25 = lean_box(0); +goto block_28; +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_29); +lean_dec(x_22); +x_42 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +x_43 = l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0(x_42, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_43) == 0) +{ +lean_object* x_44; +lean_dec_ref(x_43); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_20); +lean_ctor_set(x_44, 1, x_21); +x_12 = x_44; +x_13 = lean_box(0); +goto block_17; +} +else +{ +uint8_t x_45; +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_2); +x_45 = !lean_is_exclusive(x_43); +if (x_45 == 0) +{ +return x_43; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_43, 0); +lean_inc(x_46); +lean_dec(x_43); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +} +} +} +block_53: +{ +switch (lean_obj_tag(x_2)) { +case 0: +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_50); +x_31 = x_49; +x_32 = x_50; +goto block_48; +} +case 1: +{ +lean_object* x_51; +x_51 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_51); +x_31 = x_49; +x_32 = x_51; +goto block_48; +} +default: +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_52); +x_31 = x_49; +x_32 = x_52; +goto block_48; +} +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_5, x_14); +x_5 = x_15; +x_6 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1(x_1, x_2, x_3, x_12, x_13, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_3, x_4); +if (x_5 == 0) +{ +uint8_t x_6; lean_object* x_7; +x_6 = 1; +x_7 = lean_array_uget(x_2, x_3); +if (lean_obj_tag(x_7) == 2) +{ +lean_dec_ref(x_7); +return x_6; +} +else +{ +lean_object* x_8; uint8_t x_9; +lean_dec(x_7); +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_dec_le(x_1, x_8); +if (x_9 == 0) +{ +size_t x_10; size_t x_11; +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +x_3 = x_11; +goto _start; +} +else +{ +return x_6; +} +} +} +else +{ +uint8_t x_13; +x_13 = 0; +return x_13; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_7 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2(x_1, x_2, x_5, x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +x_8 = lean_box(x_7); +return x_8; +} +} +static lean_object* _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0; +x_3 = lean_box(x_1); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_2); +lean_ctor_set(x_4, 1, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_38; +x_14 = lean_array_get_size(x_1); +x_15 = lean_unsigned_to_nat(1u); +x_38 = lean_nat_dec_le(x_14, x_15); +if (x_38 == 0) +{ +lean_object* x_39; uint8_t x_40; +x_39 = lean_unsigned_to_nat(0u); +x_40 = lean_nat_dec_lt(x_39, x_14); +if (x_40 == 0) +{ +x_16 = x_38; +goto block_37; +} +else +{ +if (x_40 == 0) +{ +x_16 = x_38; +goto block_37; +} +else +{ +size_t x_41; size_t x_42; uint8_t x_43; +x_41 = 0; +x_42 = lean_usize_of_nat(x_14); +x_43 = l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__2(x_14, x_1, x_41, x_42); +x_16 = x_43; +goto block_37; +} +} +} +else +{ +x_16 = x_38; +goto block_37; +} +block_13: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = lean_array_push(x_8, x_10); +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; +} +block_37: +{ +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs(x_1); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec_ref(x_17); +x_20 = lean_nat_dec_eq(x_19, x_15); +if (x_20 == 0) +{ +lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; +x_21 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1; +x_22 = lean_array_size(x_1); +x_23 = 0; +lean_inc(x_18); +x_24 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1(x_19, x_18, x_1, x_22, x_23, x_21, x_2, x_3, x_4, x_5); +lean_dec_ref(x_1); +lean_dec(x_19); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +lean_dec_ref(x_24); +switch (lean_obj_tag(x_18)) { +case 0: +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec(x_25); +x_27 = lean_ctor_get(x_18, 2); +lean_inc_ref(x_27); +lean_dec_ref(x_18); +x_7 = lean_box(0); +x_8 = x_26; +x_9 = x_27; +goto block_13; +} +case 1: +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_25, 0); +lean_inc(x_28); +lean_dec(x_25); +x_29 = lean_ctor_get(x_18, 1); +lean_inc_ref(x_29); +lean_dec_ref(x_18); +x_7 = lean_box(0); +x_8 = x_28; +x_9 = x_29; +goto block_13; +} +default: +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +lean_dec(x_25); +x_31 = lean_ctor_get(x_18, 0); +lean_inc_ref(x_31); +lean_dec_ref(x_18); +x_7 = lean_box(0); +x_8 = x_30; +x_9 = x_31; +goto block_13; +} +} +} +else +{ +uint8_t x_32; +lean_dec(x_18); +x_32 = !lean_is_exclusive(x_24); +if (x_32 == 0) +{ +return x_24; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_24, 0); +lean_inc(x_33); +lean_dec(x_24); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +else +{ +lean_object* x_35; +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_1); +return x_35; +} +} +else +{ +lean_object* x_36; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_36 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_36, 0, x_1); +return x_36; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_10; +x_10 = lean_usize_dec_eq(x_2, x_3); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_array_uget(x_1, x_2); +switch (lean_obj_tag(x_11)) { +case 0: +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_11, 2); +lean_inc_ref(x_15); +x_12 = x_15; +goto block_14; +} +case 1: +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_11, 1); +lean_inc_ref(x_16); +x_12 = x_16; +goto block_14; +} +default: +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_11, 0); +lean_inc_ref(x_17); +x_12 = x_17; +goto block_14; +} +} +block_14: +{ +if (lean_obj_tag(x_12) == 6) +{ +lean_dec_ref(x_12); +lean_dec(x_11); +x_5 = x_4; +goto block_9; +} +else +{ +lean_object* x_13; +lean_dec_ref(x_12); +x_13 = lean_array_push(x_4, x_11); +x_5 = x_13; +goto block_9; +} +} +} +else +{ +return x_4; +} +block_9: +{ +size_t x_6; size_t x_7; +x_6 = 1; +x_7 = lean_usize_add(x_2, x_6); +x_2 = x_7; +x_4 = x_5; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0(x_1, x_5, x_6, x_4); +lean_dec_ref(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_array_get_size(x_1); +x_4 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0; +x_5 = lean_nat_dec_lt(x_2, x_3); +if (x_5 == 0) +{ +return x_4; +} +else +{ +uint8_t x_6; +x_6 = lean_nat_dec_le(x_3, x_3); +if (x_6 == 0) +{ +if (x_5 == 0) +{ +return x_4; +} +else +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = 0; +x_8 = lean_usize_of_nat(x_3); +x_9 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0(x_1, x_7, x_8, x_4); +return x_9; +} +} +else +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = 0; +x_11 = lean_usize_of_nat(x_3); +x_12 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable_spec__0(x_1, x_10, x_11, x_4); +return x_12; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = lean_ctor_get(x_1, 3); +x_12 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable(x_11); +lean_dec_ref(x_11); +x_13 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt(x_12, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_13, 0); +x_16 = lean_array_get_size(x_15); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_nat_dec_eq(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_dec_eq(x_16, x_19); +if (x_20 == 0) +{ +lean_object* x_21; +lean_ctor_set(x_1, 3, x_15); +x_21 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_13, 0, x_21); +return x_13; +} +else +{ +lean_object* x_22; +lean_free_object(x_1); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +x_22 = lean_array_fget(x_15, x_17); +lean_dec(x_15); +switch (lean_obj_tag(x_22)) { +case 0: +{ +lean_object* x_23; +x_23 = lean_ctor_get(x_22, 2); +lean_inc_ref(x_23); +lean_dec_ref(x_22); +lean_ctor_set(x_13, 0, x_23); +return x_13; +} +case 1: +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 1); +lean_inc_ref(x_24); +lean_dec_ref(x_22); +lean_ctor_set(x_13, 0, x_24); +return x_13; +} +default: +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_22, 0); +lean_inc_ref(x_25); +lean_dec_ref(x_22); +lean_ctor_set(x_13, 0, x_25); +return x_13; +} +} +} +} +else +{ +lean_object* x_26; +lean_dec(x_15); +lean_free_object(x_1); +lean_dec(x_10); +lean_dec(x_8); +x_26 = lean_alloc_ctor(6, 1, 0); +lean_ctor_set(x_26, 0, x_9); +lean_ctor_set(x_13, 0, x_26); +return x_13; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_13, 0); +lean_inc(x_27); +lean_dec(x_13); +x_28 = lean_array_get_size(x_27); +x_29 = lean_unsigned_to_nat(0u); +x_30 = lean_nat_dec_eq(x_28, x_29); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_unsigned_to_nat(1u); +x_32 = lean_nat_dec_eq(x_28, x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_ctor_set(x_1, 3, x_27); +x_33 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_33, 0, x_1); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +else +{ +lean_object* x_35; +lean_free_object(x_1); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +x_35 = lean_array_fget(x_27, x_29); +lean_dec(x_27); +switch (lean_obj_tag(x_35)) { +case 0: +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_35, 2); +lean_inc_ref(x_36); +lean_dec_ref(x_35); +x_37 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_37, 0, x_36); +return x_37; +} +case 1: +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_35, 1); +lean_inc_ref(x_38); +lean_dec_ref(x_35); +x_39 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_39, 0, x_38); +return x_39; +} +default: +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_35, 0); +lean_inc_ref(x_40); +lean_dec_ref(x_35); +x_41 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_41, 0, x_40); +return x_41; +} +} +} +} +else +{ +lean_object* x_42; lean_object* x_43; +lean_dec(x_27); +lean_free_object(x_1); +lean_dec(x_10); +lean_dec(x_8); +x_42 = lean_alloc_ctor(6, 1, 0); +lean_ctor_set(x_42, 0, x_9); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +return x_43; +} +} +} +else +{ +uint8_t x_44; +lean_free_object(x_1); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +x_44 = !lean_is_exclusive(x_13); +if (x_44 == 0) +{ +return x_13; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_13, 0); +lean_inc(x_45); +lean_dec(x_13); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +return x_46; +} +} +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_1, 0); +x_48 = lean_ctor_get(x_1, 1); +x_49 = lean_ctor_get(x_1, 2); +x_50 = lean_ctor_get(x_1, 3); +lean_inc(x_50); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_1); +x_51 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_filterUnreachable(x_50); +lean_dec_ref(x_50); +x_52 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt(x_51, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + x_54 = x_52; +} else { + lean_dec_ref(x_52); + x_54 = lean_box(0); +} +x_55 = lean_array_get_size(x_53); +x_56 = lean_unsigned_to_nat(0u); +x_57 = lean_nat_dec_eq(x_55, x_56); +if (x_57 == 0) +{ +lean_object* x_58; uint8_t x_59; +x_58 = lean_unsigned_to_nat(1u); +x_59 = lean_nat_dec_eq(x_55, x_58); +if (x_59 == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_60, 0, x_47); +lean_ctor_set(x_60, 1, x_48); +lean_ctor_set(x_60, 2, x_49); +lean_ctor_set(x_60, 3, x_53); +x_61 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_61, 0, x_60); +if (lean_is_scalar(x_54)) { + x_62 = lean_alloc_ctor(0, 1, 0); +} else { + x_62 = x_54; +} +lean_ctor_set(x_62, 0, x_61); +return x_62; +} +else +{ +lean_object* x_63; +lean_dec(x_49); +lean_dec_ref(x_48); +lean_dec(x_47); +x_63 = lean_array_fget(x_53, x_56); +lean_dec(x_53); +switch (lean_obj_tag(x_63)) { +case 0: +{ +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_63, 2); +lean_inc_ref(x_64); +lean_dec_ref(x_63); +if (lean_is_scalar(x_54)) { + x_65 = lean_alloc_ctor(0, 1, 0); +} else { + x_65 = x_54; +} +lean_ctor_set(x_65, 0, x_64); +return x_65; +} +case 1: +{ +lean_object* x_66; lean_object* x_67; +x_66 = lean_ctor_get(x_63, 1); +lean_inc_ref(x_66); +lean_dec_ref(x_63); +if (lean_is_scalar(x_54)) { + x_67 = lean_alloc_ctor(0, 1, 0); +} else { + x_67 = x_54; +} +lean_ctor_set(x_67, 0, x_66); +return x_67; +} +default: +{ +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_63, 0); +lean_inc_ref(x_68); +lean_dec_ref(x_63); +if (lean_is_scalar(x_54)) { + x_69 = lean_alloc_ctor(0, 1, 0); +} else { + x_69 = x_54; +} +lean_ctor_set(x_69, 0, x_68); +return x_69; +} +} +} +} +else +{ +lean_object* x_70; lean_object* x_71; +lean_dec(x_53); +lean_dec(x_49); +lean_dec(x_47); +x_70 = lean_alloc_ctor(6, 1, 0); +lean_ctor_set(x_70, 0, x_48); +if (lean_is_scalar(x_54)) { + x_71 = lean_alloc_ctor(0, 1, 0); +} else { + x_71 = x_54; +} +lean_ctor_set(x_71, 0, x_70); +return x_71; +} +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_dec(x_49); +lean_dec_ref(x_48); +lean_dec(x_47); +x_72 = lean_ctor_get(x_52, 0); +lean_inc(x_72); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + x_73 = x_52; +} else { + lean_dec_ref(x_52); + x_73 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(1, 1, 0); +} else { + x_74 = x_73; +} +lean_ctor_set(x_74, 0, x_72); +return x_74; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_20; +x_20 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_20); +x_8 = x_20; +goto block_19; +} +case 1: +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_21); +x_8 = x_21; +goto block_19; +} +default: +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_22); +x_8 = x_22; +goto block_19; +} +} +block_19: +{ +lean_object* x_9; +x_9 = lean_apply_6(x_2, x_8, x_3, x_4, x_5, x_6, lean_box(0)); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +x_12 = l___private_Lean_Compiler_LCNF_Basic_0__Lean_Compiler_LCNF_updateAltCodeImp___redArg(x_1, x_11); +lean_ctor_set(x_9, 0, x_12); +return x_9; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_9, 0); +lean_inc(x_13); +lean_dec(x_9); +x_14 = l___private_Lean_Compiler_LCNF_Basic_0__Lean_Compiler_LCNF_updateAltCodeImp___redArg(x_1, x_13); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +else +{ +uint8_t x_16; +lean_dec_ref(x_1); +x_16 = !lean_is_exclusive(x_9); +if (x_16 == 0) +{ +return x_9; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_9, 0); +lean_inc(x_17); +lean_dec(x_9); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0(uint8_t 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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0(x_9, x_2, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_1, 0); +x_8 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_8); +x_9 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_8, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; size_t x_12; size_t x_13; uint8_t x_14; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ptr_addr(x_8); +x_13 = lean_ptr_addr(x_11); +x_14 = lean_usize_dec_eq(x_12, x_13); +if (x_14 == 0) +{ +uint8_t x_15; +lean_inc_ref(x_7); +x_15 = !lean_is_exclusive(x_1); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_1, 1); +lean_dec(x_16); +x_17 = lean_ctor_get(x_1, 0); +lean_dec(x_17); +lean_ctor_set(x_1, 1, x_11); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +else +{ +lean_object* x_18; +lean_dec(x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_7); +lean_ctor_set(x_18, 1, x_11); +lean_ctor_set(x_9, 0, x_18); +return x_9; +} +} +else +{ +lean_dec(x_11); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +} +else +{ +lean_object* x_19; size_t x_20; size_t x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_9, 0); +lean_inc(x_19); +lean_dec(x_9); +x_20 = lean_ptr_addr(x_8); +x_21 = lean_ptr_addr(x_19); +x_22 = lean_usize_dec_eq(x_20, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_inc_ref(x_7); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_23 = x_1; +} else { + lean_dec_ref(x_1); + x_23 = lean_box(0); +} +if (lean_is_scalar(x_23)) { + x_24 = lean_alloc_ctor(0, 2, 0); +} else { + x_24 = x_23; +} +lean_ctor_set(x_24, 0, x_7); +lean_ctor_set(x_24, 1, x_19); +x_25 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_25, 0, x_24); +return x_25; +} +else +{ +lean_object* x_26; +lean_dec(x_19); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_1); +return x_26; +} +} +} +else +{ +lean_dec_ref(x_1); +return x_9; +} +} +case 2: +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_27 = lean_ctor_get(x_1, 0); +x_28 = lean_ctor_get(x_1, 1); +x_29 = lean_ctor_get(x_27, 2); +x_30 = lean_ctor_get(x_27, 3); +x_31 = lean_ctor_get(x_27, 4); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +lean_inc_ref(x_31); +x_32 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_31, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; uint8_t x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +x_34 = 1; +lean_inc_ref(x_29); +lean_inc_ref(x_30); +lean_inc_ref(x_27); +x_35 = l___private_Lean_Compiler_LCNF_CompilerM_0__Lean_Compiler_LCNF_updateFunDeclImp___redArg(x_34, x_27, x_30, x_29, x_33, x_3); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +lean_dec_ref(x_35); +lean_inc_ref(x_28); +x_37 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_28, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; size_t x_49; size_t x_50; uint8_t x_51; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +if (lean_is_exclusive(x_37)) { + lean_ctor_release(x_37, 0); + x_39 = x_37; +} else { + lean_dec_ref(x_37); + x_39 = lean_box(0); +} +x_49 = lean_ptr_addr(x_28); +x_50 = lean_ptr_addr(x_38); +x_51 = lean_usize_dec_eq(x_49, x_50); +if (x_51 == 0) +{ +x_40 = x_51; +goto block_48; +} +else +{ +size_t x_52; size_t x_53; uint8_t x_54; +x_52 = lean_ptr_addr(x_27); +x_53 = lean_ptr_addr(x_36); +x_54 = lean_usize_dec_eq(x_52, x_53); +x_40 = x_54; +goto block_48; +} +block_48: +{ +if (x_40 == 0) +{ +uint8_t x_41; +x_41 = !lean_is_exclusive(x_1); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_1, 1); +lean_dec(x_42); +x_43 = lean_ctor_get(x_1, 0); +lean_dec(x_43); +lean_ctor_set(x_1, 1, x_38); +lean_ctor_set(x_1, 0, x_36); +if (lean_is_scalar(x_39)) { + x_44 = lean_alloc_ctor(0, 1, 0); +} else { + x_44 = x_39; +} +lean_ctor_set(x_44, 0, x_1); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; +lean_dec(x_1); +x_45 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_45, 0, x_36); +lean_ctor_set(x_45, 1, x_38); +if (lean_is_scalar(x_39)) { + x_46 = lean_alloc_ctor(0, 1, 0); +} else { + x_46 = x_39; +} +lean_ctor_set(x_46, 0, x_45); +return x_46; +} +} +else +{ +lean_object* x_47; +lean_dec(x_38); +lean_dec(x_36); +if (lean_is_scalar(x_39)) { + x_47 = lean_alloc_ctor(0, 1, 0); +} else { + x_47 = x_39; +} +lean_ctor_set(x_47, 0, x_1); +return x_47; +} +} +} +else +{ +lean_dec(x_36); +lean_dec_ref(x_1); +return x_37; +} +} +else +{ +uint8_t x_55; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_55 = !lean_is_exclusive(x_35); +if (x_55 == 0) +{ +return x_35; +} +else +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_35, 0); +lean_inc(x_56); +lean_dec(x_35); +x_57 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_57, 0, x_56); +return x_57; +} +} +} +else +{ +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_32; +} +} +case 4: +{ +lean_object* x_58; uint8_t x_59; +x_58 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_58); +lean_dec_ref(x_1); +x_59 = !lean_is_exclusive(x_58); +if (x_59 == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_60 = lean_ctor_get(x_58, 0); +x_61 = lean_ctor_get(x_58, 1); +x_62 = lean_ctor_get(x_58, 2); +x_63 = lean_ctor_get(x_58, 3); +x_64 = lean_unsigned_to_nat(0u); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +x_65 = l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__1(x_64, x_63, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +lean_dec_ref(x_65); +lean_ctor_set(x_58, 3, x_66); +x_67 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases(x_58, x_2, x_3, x_4, x_5); +return x_67; +} +else +{ +uint8_t x_68; +lean_free_object(x_58); +lean_dec(x_62); +lean_dec_ref(x_61); +lean_dec(x_60); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_68 = !lean_is_exclusive(x_65); +if (x_68 == 0) +{ +return x_65; +} +else +{ +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_65, 0); +lean_inc(x_69); +lean_dec(x_65); +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; +} +} +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_71 = lean_ctor_get(x_58, 0); +x_72 = lean_ctor_get(x_58, 1); +x_73 = lean_ctor_get(x_58, 2); +x_74 = lean_ctor_get(x_58, 3); +lean_inc(x_74); +lean_inc(x_73); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_58); +x_75 = lean_unsigned_to_nat(0u); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +x_76 = l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__1(x_75, x_74, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +lean_dec_ref(x_76); +x_78 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_78, 0, x_71); +lean_ctor_set(x_78, 1, x_72); +lean_ctor_set(x_78, 2, x_73); +lean_ctor_set(x_78, 3, x_77); +x_79 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_simplifyCases(x_78, x_2, x_3, x_4, x_5); +return x_79; +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_71); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_80 = lean_ctor_get(x_76, 0); +lean_inc(x_80); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + x_81 = x_76; +} else { + lean_dec_ref(x_76); + x_81 = lean_box(0); +} +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(1, 1, 0); +} else { + x_82 = x_81; +} +lean_ctor_set(x_82, 0, x_80); +return x_82; +} +} +} +case 7: +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_83 = lean_ctor_get(x_1, 0); +x_84 = lean_ctor_get(x_1, 1); +x_85 = lean_ctor_get(x_1, 2); +x_86 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_86); +x_87 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_86, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_87) == 0) +{ +uint8_t x_88; +x_88 = !lean_is_exclusive(x_87); +if (x_88 == 0) +{ +lean_object* x_89; size_t x_90; size_t x_91; uint8_t x_92; +x_89 = lean_ctor_get(x_87, 0); +x_90 = lean_ptr_addr(x_86); +x_91 = lean_ptr_addr(x_89); +x_92 = lean_usize_dec_eq(x_90, x_91); +if (x_92 == 0) +{ +uint8_t x_93; +lean_inc(x_85); +lean_inc(x_84); +lean_inc(x_83); +x_93 = !lean_is_exclusive(x_1); +if (x_93 == 0) +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_94 = lean_ctor_get(x_1, 3); +lean_dec(x_94); +x_95 = lean_ctor_get(x_1, 2); +lean_dec(x_95); +x_96 = lean_ctor_get(x_1, 1); +lean_dec(x_96); +x_97 = lean_ctor_get(x_1, 0); +lean_dec(x_97); +lean_ctor_set(x_1, 3, x_89); +lean_ctor_set(x_87, 0, x_1); +return x_87; +} +else +{ +lean_object* x_98; +lean_dec(x_1); +x_98 = lean_alloc_ctor(7, 4, 0); +lean_ctor_set(x_98, 0, x_83); +lean_ctor_set(x_98, 1, x_84); +lean_ctor_set(x_98, 2, x_85); +lean_ctor_set(x_98, 3, x_89); +lean_ctor_set(x_87, 0, x_98); +return x_87; +} +} +else +{ +lean_dec(x_89); +lean_ctor_set(x_87, 0, x_1); +return x_87; +} +} +else +{ +lean_object* x_99; size_t x_100; size_t x_101; uint8_t x_102; +x_99 = lean_ctor_get(x_87, 0); +lean_inc(x_99); +lean_dec(x_87); +x_100 = lean_ptr_addr(x_86); +x_101 = lean_ptr_addr(x_99); +x_102 = lean_usize_dec_eq(x_100, x_101); +if (x_102 == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_inc(x_85); +lean_inc(x_84); +lean_inc(x_83); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + lean_ctor_release(x_1, 2); + lean_ctor_release(x_1, 3); + x_103 = x_1; +} else { + lean_dec_ref(x_1); + x_103 = lean_box(0); +} +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(7, 4, 0); +} else { + x_104 = x_103; +} +lean_ctor_set(x_104, 0, x_83); +lean_ctor_set(x_104, 1, x_84); +lean_ctor_set(x_104, 2, x_85); +lean_ctor_set(x_104, 3, x_99); +x_105 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; +} +else +{ +lean_object* x_106; +lean_dec(x_99); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_1); +return x_106; +} +} +} +else +{ +lean_dec_ref(x_1); +return x_87; +} +} +case 8: +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_107 = lean_ctor_get(x_1, 0); +x_108 = lean_ctor_get(x_1, 1); +x_109 = lean_ctor_get(x_1, 2); +x_110 = lean_ctor_get(x_1, 3); +x_111 = lean_ctor_get(x_1, 4); +x_112 = lean_ctor_get(x_1, 5); +lean_inc_ref(x_112); +x_113 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_112, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_113) == 0) +{ +uint8_t x_114; +x_114 = !lean_is_exclusive(x_113); +if (x_114 == 0) +{ +lean_object* x_115; size_t x_116; size_t x_117; uint8_t x_118; +x_115 = lean_ctor_get(x_113, 0); +x_116 = lean_ptr_addr(x_112); +x_117 = lean_ptr_addr(x_115); +x_118 = lean_usize_dec_eq(x_116, x_117); +if (x_118 == 0) +{ +uint8_t x_119; +lean_inc_ref(x_111); +lean_inc(x_110); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_107); +x_119 = !lean_is_exclusive(x_1); +if (x_119 == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_120 = lean_ctor_get(x_1, 5); +lean_dec(x_120); +x_121 = lean_ctor_get(x_1, 4); +lean_dec(x_121); +x_122 = lean_ctor_get(x_1, 3); +lean_dec(x_122); +x_123 = lean_ctor_get(x_1, 2); +lean_dec(x_123); +x_124 = lean_ctor_get(x_1, 1); +lean_dec(x_124); +x_125 = lean_ctor_get(x_1, 0); +lean_dec(x_125); +lean_ctor_set(x_1, 5, x_115); +lean_ctor_set(x_113, 0, x_1); +return x_113; +} +else +{ +lean_object* x_126; +lean_dec(x_1); +x_126 = lean_alloc_ctor(8, 6, 0); +lean_ctor_set(x_126, 0, x_107); +lean_ctor_set(x_126, 1, x_108); +lean_ctor_set(x_126, 2, x_109); +lean_ctor_set(x_126, 3, x_110); +lean_ctor_set(x_126, 4, x_111); +lean_ctor_set(x_126, 5, x_115); +lean_ctor_set(x_113, 0, x_126); +return x_113; +} +} +else +{ +lean_dec(x_115); +lean_ctor_set(x_113, 0, x_1); +return x_113; +} +} +else +{ +lean_object* x_127; size_t x_128; size_t x_129; uint8_t x_130; +x_127 = lean_ctor_get(x_113, 0); +lean_inc(x_127); +lean_dec(x_113); +x_128 = lean_ptr_addr(x_112); +x_129 = lean_ptr_addr(x_127); +x_130 = lean_usize_dec_eq(x_128, x_129); +if (x_130 == 0) +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_inc_ref(x_111); +lean_inc(x_110); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_107); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + lean_ctor_release(x_1, 2); + lean_ctor_release(x_1, 3); + lean_ctor_release(x_1, 4); + lean_ctor_release(x_1, 5); + x_131 = x_1; +} else { + lean_dec_ref(x_1); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(8, 6, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_107); +lean_ctor_set(x_132, 1, x_108); +lean_ctor_set(x_132, 2, x_109); +lean_ctor_set(x_132, 3, x_110); +lean_ctor_set(x_132, 4, x_111); +lean_ctor_set(x_132, 5, x_127); +x_133 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_133, 0, x_132); +return x_133; +} +else +{ +lean_object* x_134; +lean_dec(x_127); +x_134 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_134, 0, x_1); +return x_134; +} +} +} +else +{ +lean_dec_ref(x_1); +return x_113; +} +} +default: +{ +lean_object* x_135; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_135 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_135, 0, x_1); +return x_135; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_array_get_size(x_2); +x_9 = lean_nat_dec_lt(x_1, x_8); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +x_10 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_10, 0, x_2); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_alloc_closure((void*)(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase___boxed), 6, 0); +x_12 = lean_array_fget_borrowed(x_2, x_1); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_12); +x_13 = l_Lean_Compiler_LCNF_Alt_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__0___redArg(x_12, x_11, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; size_t x_15; size_t x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = lean_ptr_addr(x_12); +x_16 = lean_ptr_addr(x_14); +x_17 = lean_usize_dec_eq(x_15, x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_add(x_1, x_18); +x_20 = lean_array_fset(x_2, x_1, x_14); +lean_dec(x_1); +x_1 = x_19; +x_2 = x_20; +goto _start; +} +else +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_14); +x_22 = lean_unsigned_to_nat(1u); +x_23 = lean_nat_add(x_1, x_22); +lean_dec(x_1); +x_1 = x_23; +goto _start; +} +} +else +{ +uint8_t x_25; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_13); +if (x_25 == 0) +{ +return x_13; +} +else +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_13, 0); +lean_inc(x_26); +lean_dec(x_13); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +return x_27; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Code_simpCase_spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_2); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_2, 0); +x_10 = lean_apply_6(x_1, x_9, x_3, x_4, x_5, x_6, lean_box(0)); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_10, 0); +lean_ctor_set(x_2, 0, x_12); +lean_ctor_set(x_10, 0, x_2); +return x_10; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +lean_ctor_set(x_2, 0, x_13); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_2); +return x_14; +} +} +else +{ +uint8_t x_15; +lean_free_object(x_2); +x_15 = !lean_is_exclusive(x_10); +if (x_15 == 0) +{ +return x_10; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_10, 0); +lean_inc(x_16); +lean_dec(x_10); +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_16); +return x_17; +} +} +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_2, 0); +lean_inc(x_18); +lean_dec(x_2); +x_19 = lean_apply_6(x_1, x_18, x_3, x_4, x_5, x_6, lean_box(0)); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_21 = x_19; +} else { + lean_dec_ref(x_19); + x_21 = lean_box(0); +} +x_22 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_22, 0, x_20); +if (lean_is_scalar(x_21)) { + x_23 = lean_alloc_ctor(0, 1, 0); +} else { + x_23 = x_21; +} +lean_ctor_set(x_23, 0, x_22); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_19, 0); +lean_inc(x_24); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + x_25 = x_19; +} else { + lean_dec_ref(x_19); + x_25 = lean_box(0); +} +if (lean_is_scalar(x_25)) { + x_26 = lean_alloc_ctor(1, 1, 0); +} else { + x_26 = x_25; +} +lean_ctor_set(x_26, 0, x_24); +return x_26; +} +} +} +else +{ +lean_object* x_27; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_2); +return x_27; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0(uint8_t 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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0(x_9, x_2, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_1); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +x_10 = lean_ctor_get(x_1, 2); +x_11 = ((lean_object*)(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___closed__0)); +x_12 = l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(x_11, x_9, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_12, 0); +lean_ctor_set(x_1, 1, x_14); +lean_ctor_set(x_12, 0, x_1); +return x_12; +} +else +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_12, 0); +lean_inc(x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 1, x_15); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_1); +return x_16; +} +} +else +{ +uint8_t x_17; +lean_free_object(x_1); +lean_dec(x_10); +lean_dec_ref(x_8); +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) +{ +return x_12; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_12, 0); +lean_inc(x_18); +lean_dec(x_12); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_20 = lean_ctor_get(x_1, 0); +x_21 = lean_ctor_get(x_1, 1); +x_22 = lean_ctor_get_uint8(x_1, sizeof(void*)*3); +x_23 = lean_ctor_get(x_1, 2); +lean_inc(x_23); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_1); +x_24 = ((lean_object*)(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___closed__0)); +x_25 = l_Lean_Compiler_LCNF_DeclValue_mapCodeM___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase_spec__0___redArg(x_24, x_21, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + x_27 = x_25; +} else { + lean_dec_ref(x_25); + x_27 = lean_box(0); +} +x_28 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_28, 0, x_20); +lean_ctor_set(x_28, 1, x_26); +lean_ctor_set(x_28, 2, x_23); +lean_ctor_set_uint8(x_28, sizeof(void*)*3, x_22); +if (lean_is_scalar(x_27)) { + x_29 = lean_alloc_ctor(0, 1, 0); +} else { + x_29 = x_27; +} +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_23); +lean_dec_ref(x_20); +x_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +if (lean_is_exclusive(x_25)) { + lean_ctor_release(x_25, 0); + x_31 = x_25; +} else { + lean_dec_ref(x_25); + x_31 = lean_box(0); +} +if (lean_is_scalar(x_31)) { + x_32 = lean_alloc_ctor(1, 1, 0); +} else { + x_32 = x_31; +} +lean_ctor_set(x_32, 0, x_30); +return x_32; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase___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) { +_start: +{ +lean_object* x_7; +x_7 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_Decl_simpCase(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_simpCase___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_1 = lean_unsigned_to_nat(0u); +x_2 = ((lean_object*)(l_Lean_Compiler_LCNF_simpCase___closed__2)); +x_3 = 2; +x_4 = ((lean_object*)(l_Lean_Compiler_LCNF_simpCase___closed__1)); +x_5 = l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(x_4, x_3, x_2, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_simpCase() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Compiler_LCNF_simpCase___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; +x_2 = ((lean_object*)(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__1_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_)); +x_3 = 1; +x_4 = ((lean_object*)(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn___closed__28_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_)); +x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2____boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_(); +return x_2; +} +} +lean_object* initialize_Lean_Compiler_LCNF_CompilerM(uint8_t builtin); +lean_object* initialize_Lean_Compiler_LCNF_PassManager(uint8_t builtin); +lean_object* initialize_Lean_Compiler_LCNF_AlphaEqv(uint8_t builtin); +lean_object* initialize_Init_Omega(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Compiler_LCNF_SimpCase(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Compiler_LCNF_CompilerM(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_PassManager(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_AlphaEqv(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Omega(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0 = _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_getMaxOccs_getNumOccsOf___closed__0); +l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0 = _init_l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0(); +lean_mark_persistent(l_panic___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__0___closed__0); +l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3(); +lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt_spec__1___closed__3); +l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0 = _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__0); +l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1 = _init_l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_addDefaultAlt___closed__1); +l_Lean_Compiler_LCNF_simpCase___closed__3 = _init_l_Lean_Compiler_LCNF_simpCase___closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_simpCase___closed__3); +l_Lean_Compiler_LCNF_simpCase = _init_l_Lean_Compiler_LCNF_simpCase(); +lean_mark_persistent(l_Lean_Compiler_LCNF_simpCase); +if (builtin) {res = l___private_Lean_Compiler_LCNF_SimpCase_0__Lean_Compiler_LCNF_initFn_00___x40_Lean_Compiler_LCNF_SimpCase_1808010913____hygCtx___hyg_2_(); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Compiler/LCNF/ToImpure.c b/stage0/stdlib/Lean/Compiler/LCNF/ToImpure.c index 21e130713d..8d3111ad51 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/ToImpure.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/ToImpure.c @@ -4658,6 +4658,7 @@ lean_object* x_175; lean_object* x_176; x_175 = lean_ctor_get(x_174, 0); lean_inc(x_175); lean_dec_ref(x_174); +lean_inc(x_170); x_176 = l_Lean_Compiler_LCNF_getImpureSignature_x3f___redArg(x_170, x_7); if (lean_obj_tag(x_176) == 0) { diff --git a/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c b/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c index ae52c38262..80770094c4 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c @@ -725,7 +725,7 @@ LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Compiler static const lean_string_object l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 80, .m_capacity = 80, .m_length = 79, .m_data = "_private.Lean.Compiler.LCNF.ToLCNF.0.Lean.Compiler.LCNF.ToLCNF.toLCNF.visitCtor"}; static const lean_object* l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__0 = (const lean_object*)&l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__0_value; static lean_object* l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__1; -lean_object* l_Lean_Compiler_CSimp_replaceConstants(lean_object*, lean_object*); +lean_object* l_Lean_Compiler_CSimp_replaceConstant(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_hasNeverExtractAttribute(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -21165,7 +21165,7 @@ lean_inc(x_13); x_19 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__10(x_1, x_2, x_3, x_12, x_13, x_14, x_15, x_16, x_17); if (lean_obj_tag(x_19) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t 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_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_182; lean_object* x_183; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t 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_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; lean_object* x_182; lean_object* x_183; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); lean_dec_ref(x_19); @@ -21285,7 +21285,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean x_45 = lean_ctor_get(x_4, 0); x_46 = lean_ctor_get(x_4, 1); x_47 = lean_array_get_size(x_5); -x_48 = l_Array_toSubarray___redArg(x_5, x_33, x_47); +x_48 = l_Array_toSubarray___redArg(x_5, x_32, x_47); lean_ctor_set(x_4, 1, x_35); lean_ctor_set(x_4, 0, x_34); x_49 = lean_alloc_ctor(0, 2, 0); @@ -21321,7 +21321,7 @@ lean_ctor_set(x_57, 0, x_7); lean_ctor_set(x_57, 1, x_55); lean_ctor_set(x_57, 2, x_36); lean_ctor_set(x_57, 3, x_54); -x_58 = l_Lean_Compiler_LCNF_mkAuxParam(x_56, x_55, x_32, x_39, x_40, x_41, x_42); +x_58 = l_Lean_Compiler_LCNF_mkAuxParam(x_56, x_55, x_33, x_39, x_40, x_41, x_42); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_40); @@ -21428,7 +21428,7 @@ lean_ctor_set(x_77, 0, x_7); lean_ctor_set(x_77, 1, x_75); lean_ctor_set(x_77, 2, x_36); lean_ctor_set(x_77, 3, x_74); -x_78 = l_Lean_Compiler_LCNF_mkAuxParam(x_76, x_75, x_32, x_39, x_40, x_41, x_42); +x_78 = l_Lean_Compiler_LCNF_mkAuxParam(x_76, x_75, x_33, x_39, x_40, x_41, x_42); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_40); @@ -21550,7 +21550,7 @@ lean_inc(x_96); lean_inc(x_95); lean_dec(x_4); x_97 = lean_array_get_size(x_5); -x_98 = l_Array_toSubarray___redArg(x_5, x_33, x_97); +x_98 = l_Array_toSubarray___redArg(x_5, x_32, x_97); x_99 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_99, 0, x_34); lean_ctor_set(x_99, 1, x_35); @@ -21593,7 +21593,7 @@ lean_ctor_set(x_108, 0, x_7); lean_ctor_set(x_108, 1, x_105); lean_ctor_set(x_108, 2, x_36); lean_ctor_set(x_108, 3, x_104); -x_109 = l_Lean_Compiler_LCNF_mkAuxParam(x_107, x_105, x_32, x_39, x_40, x_41, x_42); +x_109 = l_Lean_Compiler_LCNF_mkAuxParam(x_107, x_105, x_33, x_39, x_40, x_41, x_42); lean_dec(x_42); lean_dec_ref(x_41); lean_dec(x_40); @@ -21718,10 +21718,10 @@ block_181: if (x_135 == 0) { lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_134); -lean_dec_ref(x_132); +lean_dec_ref(x_134); +lean_dec(x_132); lean_dec_ref(x_130); -lean_dec_ref(x_128); +lean_dec_ref(x_129); lean_dec(x_127); x_137 = l_Lean_instInhabitedExpr; x_138 = lean_array_get_borrowed(x_137, x_6, x_9); @@ -21745,10 +21745,10 @@ lean_object* x_142; x_142 = lean_ctor_get(x_140, 0); lean_inc(x_142); lean_dec_ref(x_140); -x_32 = x_129; -x_33 = x_131; +x_32 = x_131; +x_33 = x_133; x_34 = x_141; -x_35 = x_133; +x_35 = x_128; x_36 = x_142; x_37 = x_12; x_38 = x_13; @@ -21776,10 +21776,10 @@ lean_object* x_146; x_146 = lean_ctor_get(x_145, 0); lean_inc(x_146); lean_dec_ref(x_145); -x_32 = x_129; -x_33 = x_131; +x_32 = x_131; +x_33 = x_133; x_34 = x_141; -x_35 = x_133; +x_35 = x_128; x_36 = x_146; x_37 = x_12; x_38 = x_13; @@ -21794,8 +21794,8 @@ else { uint8_t x_147; lean_dec_ref(x_141); -lean_dec_ref(x_133); lean_dec(x_131); +lean_dec_ref(x_128); lean_dec(x_20); lean_dec(x_17); lean_dec_ref(x_16); @@ -21826,8 +21826,8 @@ return x_149; } else { -lean_dec_ref(x_133); lean_dec(x_131); +lean_dec_ref(x_128); lean_dec(x_20); lean_dec(x_17); lean_dec_ref(x_16); @@ -21844,16 +21844,16 @@ return x_139; else { uint8_t x_150; -lean_dec_ref(x_133); -x_150 = lean_nat_dec_eq(x_134, x_10); -lean_dec(x_134); +lean_dec_ref(x_128); +x_150 = lean_nat_dec_eq(x_132, x_10); +lean_dec(x_132); if (x_150 == 0) { lean_object* x_151; lean_object* x_152; -lean_dec_ref(x_132); +lean_dec_ref(x_134); lean_dec(x_131); lean_dec_ref(x_130); -lean_dec_ref(x_128); +lean_dec_ref(x_129); lean_dec(x_127); lean_dec(x_20); lean_dec(x_7); @@ -21867,11 +21867,11 @@ return x_152; else { lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_153 = lean_ctor_get(x_132, 1); +x_153 = lean_ctor_get(x_129, 1); lean_inc(x_153); -x_154 = lean_ctor_get(x_132, 4); +x_154 = lean_ctor_get(x_129, 4); lean_inc(x_154); -lean_dec_ref(x_132); +lean_dec_ref(x_129); x_155 = lean_box(0); lean_inc(x_131); x_156 = l_List_get_x21Internal___redArg(x_155, x_154, x_131); @@ -21900,7 +21900,7 @@ lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; x_162 = lean_ctor_get(x_161, 1); lean_inc(x_162); lean_dec_ref(x_161); -x_163 = lean_st_mk_ref(x_130); +x_163 = lean_st_mk_ref(x_134); x_164 = lean_ctor_get(x_159, 0); lean_inc_ref(x_164); lean_dec_ref(x_159); @@ -21917,7 +21917,7 @@ lean_closure_set(x_166, 4, x_127); lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_163); -x_167 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitNoConfusion_spec__21___redArg(x_165, x_166, x_129, x_128, x_163, x_16, x_17); +x_167 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitNoConfusion_spec__21___redArg(x_165, x_166, x_133, x_130, x_163, x_16, x_17); if (lean_obj_tag(x_167) == 0) { lean_object* x_168; lean_object* x_169; @@ -21979,8 +21979,8 @@ lean_object* x_174; lean_object* x_175; lean_dec(x_161); lean_dec_ref(x_159); lean_dec(x_153); +lean_dec_ref(x_134); lean_dec_ref(x_130); -lean_dec_ref(x_128); lean_dec(x_127); lean_dec(x_20); lean_dec(x_7); @@ -21996,9 +21996,9 @@ else lean_object* x_176; lean_object* x_177; lean_dec(x_158); lean_dec(x_153); +lean_dec_ref(x_134); lean_dec(x_131); lean_dec_ref(x_130); -lean_dec_ref(x_128); lean_dec(x_127); lean_dec(x_20); lean_dec(x_7); @@ -22014,9 +22014,9 @@ else { uint8_t x_178; lean_dec(x_153); +lean_dec_ref(x_134); lean_dec(x_131); lean_dec_ref(x_130); -lean_dec_ref(x_128); lean_dec(x_127); lean_dec(x_20); lean_dec(x_17); @@ -22118,13 +22118,13 @@ lean_dec(x_203); x_204 = lean_unbox(x_202); lean_dec(x_202); x_127 = x_190; -x_128 = x_198; -x_129 = x_191; -x_130 = x_199; +x_128 = x_185; +x_129 = x_188; +x_130 = x_198; x_131 = x_190; -x_132 = x_188; -x_133 = x_185; -x_134 = x_189; +x_132 = x_189; +x_133 = x_191; +x_134 = x_199; x_135 = x_204; x_136 = lean_box(0); goto block_181; @@ -22141,13 +22141,13 @@ lean_dec_ref(x_201); x_206 = lean_unbox(x_205); lean_dec(x_205); x_127 = x_190; -x_128 = x_198; -x_129 = x_191; -x_130 = x_199; +x_128 = x_185; +x_129 = x_188; +x_130 = x_198; x_131 = x_190; -x_132 = x_188; -x_133 = x_185; -x_134 = x_189; +x_132 = x_189; +x_133 = x_191; +x_134 = x_199; x_135 = x_206; x_136 = lean_box(0); goto block_181; @@ -22517,7 +22517,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 = ((lean_object*)(l_Lean_isCtor_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__38___closed__2)); -x_2 = lean_unsigned_to_nat(63u); +x_2 = lean_unsigned_to_nat(61u); x_3 = lean_unsigned_to_nat(670u); x_4 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__0)); x_5 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCases___lam__0___closed__0)); @@ -22533,188 +22533,222 @@ x_10 = lean_st_ref_get(x_8); x_11 = lean_ctor_get(x_10, 0); lean_inc_ref(x_11); lean_dec(x_10); +lean_inc(x_8); +lean_inc_ref(x_7); lean_inc_ref(x_11); -x_12 = l_Lean_Compiler_CSimp_replaceConstants(x_11, x_1); -if (lean_obj_tag(x_12) == 4) +x_12 = l_Lean_Compiler_CSimp_replaceConstant(x_11, x_1, x_7, x_8); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_object* x_13; x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); lean_dec_ref(x_12); +if (lean_obj_tag(x_13) == 4) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec_ref(x_13); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); lean_inc(x_4); -lean_inc(x_13); -x_15 = l_Lean_isCtor_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__38(x_13, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_15) == 0) +lean_inc(x_14); +x_16 = l_Lean_isCtor_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__38(x_14, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = lean_array_get_size(x_2); -x_18 = lean_unsigned_to_nat(0u); -x_19 = lean_mk_empty_array_with_capacity(x_17); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = lean_array_get_size(x_2); +x_19 = lean_unsigned_to_nat(0u); +x_20 = lean_mk_empty_array_with_capacity(x_18); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); lean_inc(x_4); -x_20 = l_Array_mapFinIdxM_map___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__39___redArg(x_16, x_2, x_17, x_18, x_19, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_16); -if (lean_obj_tag(x_20) == 0) +x_21 = l_Array_mapFinIdxM_map___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__39___redArg(x_17, x_2, x_18, x_19, x_20, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_17); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_32; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -lean_dec_ref(x_20); -lean_inc(x_13); -x_32 = l_Lean_hasNeverExtractAttribute(x_11, x_13); -if (x_32 == 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; uint8_t x_33; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +lean_inc(x_14); +x_33 = l_Lean_hasNeverExtractAttribute(x_11, x_14); +if (x_33 == 0) { -x_22 = x_4; -x_23 = x_5; -x_24 = x_6; -x_25 = x_7; -x_26 = x_8; -x_27 = lean_box(0); -goto block_31; +x_23 = x_4; +x_24 = x_5; +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = lean_box(0); +goto block_32; } else { -lean_object* x_33; uint8_t x_34; -x_33 = lean_st_ref_take(x_4); -x_34 = !lean_is_exclusive(x_33); -if (x_34 == 0) +lean_object* x_34; uint8_t x_35; +x_34 = lean_st_ref_take(x_4); +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) { -uint8_t x_35; lean_object* x_36; -x_35 = 0; -lean_ctor_set_uint8(x_33, sizeof(void*)*6, x_35); -x_36 = lean_st_ref_set(x_4, x_33); -x_22 = x_4; -x_23 = x_5; -x_24 = x_6; -x_25 = x_7; -x_26 = x_8; -x_27 = lean_box(0); -goto block_31; +uint8_t x_36; lean_object* x_37; +x_36 = 0; +lean_ctor_set_uint8(x_34, sizeof(void*)*6, x_36); +x_37 = lean_st_ref_set(x_4, x_34); +x_23 = x_4; +x_24 = x_5; +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = lean_box(0); +goto block_32; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; -x_37 = lean_ctor_get(x_33, 0); -x_38 = lean_ctor_get(x_33, 1); -x_39 = lean_ctor_get(x_33, 2); -x_40 = lean_ctor_get(x_33, 3); -x_41 = lean_ctor_get(x_33, 4); -x_42 = lean_ctor_get(x_33, 5); +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; +x_38 = lean_ctor_get(x_34, 0); +x_39 = lean_ctor_get(x_34, 1); +x_40 = lean_ctor_get(x_34, 2); +x_41 = lean_ctor_get(x_34, 3); +x_42 = lean_ctor_get(x_34, 4); +x_43 = lean_ctor_get(x_34, 5); +lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); lean_inc(x_40); lean_inc(x_39); lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_33); -x_43 = 0; -x_44 = lean_alloc_ctor(0, 6, 1); -lean_ctor_set(x_44, 0, x_37); -lean_ctor_set(x_44, 1, x_38); -lean_ctor_set(x_44, 2, x_39); -lean_ctor_set(x_44, 3, x_40); -lean_ctor_set(x_44, 4, x_41); -lean_ctor_set(x_44, 5, x_42); -lean_ctor_set_uint8(x_44, sizeof(void*)*6, x_43); -x_45 = lean_st_ref_set(x_4, x_44); -x_22 = x_4; -x_23 = x_5; -x_24 = x_6; -x_25 = x_7; -x_26 = x_8; -x_27 = lean_box(0); -goto block_31; +lean_dec(x_34); +x_44 = 0; +x_45 = lean_alloc_ctor(0, 6, 1); +lean_ctor_set(x_45, 0, x_38); +lean_ctor_set(x_45, 1, x_39); +lean_ctor_set(x_45, 2, x_40); +lean_ctor_set(x_45, 3, x_41); +lean_ctor_set(x_45, 4, x_42); +lean_ctor_set(x_45, 5, x_43); +lean_ctor_set_uint8(x_45, sizeof(void*)*6, x_44); +x_46 = lean_st_ref_set(x_4, x_45); +x_23 = x_4; +x_24 = x_5; +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = lean_box(0); +goto block_32; } } -block_31: +block_32: { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_alloc_ctor(3, 3, 0); -lean_ctor_set(x_28, 0, x_13); -lean_ctor_set(x_28, 1, x_14); -lean_ctor_set(x_28, 2, x_21); -x_29 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_bindCases_go___closed__8)); -x_30 = l_Lean_Compiler_LCNF_ToLCNF_letValueToArg___redArg(x_28, x_29, x_22, x_23, x_24, x_25, x_26); -lean_dec(x_22); -return x_30; +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_29, 0, x_14); +lean_ctor_set(x_29, 1, x_15); +lean_ctor_set(x_29, 2, x_22); +x_30 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_bindCases_go___closed__8)); +x_31 = l_Lean_Compiler_LCNF_ToLCNF_letValueToArg___redArg(x_29, x_30, x_23, x_24, x_25, x_26, x_27); +lean_dec(x_23); +return x_31; } } else { -uint8_t x_46; -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_11); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_46 = !lean_is_exclusive(x_20); -if (x_46 == 0) -{ -return x_20; -} -else -{ -lean_object* x_47; lean_object* x_48; -x_47 = lean_ctor_get(x_20, 0); -lean_inc(x_47); -lean_dec(x_20); -x_48 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_48, 0, x_47); -return x_48; -} -} -} -else -{ -uint8_t x_49; -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_11); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_49 = !lean_is_exclusive(x_15); -if (x_49 == 0) -{ -return x_15; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_15, 0); -lean_inc(x_50); +uint8_t x_47; lean_dec(x_15); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; +lean_dec(x_14); +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_47 = !lean_is_exclusive(x_21); +if (x_47 == 0) +{ +return x_21; +} +else +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_21, 0); +lean_inc(x_48); +lean_dec(x_21); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; } } } else { -lean_object* x_52; lean_object* x_53; -lean_dec_ref(x_12); +uint8_t x_50; +lean_dec(x_15); +lean_dec(x_14); lean_dec_ref(x_11); -x_52 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__1; -x_53 = l_panic___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore_spec__2(x_52, x_3, x_4, x_5, x_6, x_7, x_8); -return x_53; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_50 = !lean_is_exclusive(x_16); +if (x_50 == 0) +{ +return x_16; +} +else +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_16, 0); +lean_inc(x_51); +lean_dec(x_16); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +} +} +else +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_13); +lean_dec_ref(x_11); +x_53 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0___closed__1; +x_54 = l_panic___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore_spec__2(x_53, x_3, x_4, x_5, x_6, x_7, x_8); +return x_54; +} +} +else +{ +uint8_t x_55; +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_55 = !lean_is_exclusive(x_12); +if (x_55 == 0) +{ +return x_12; +} +else +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_12, 0); +lean_inc(x_56); +lean_dec(x_12); +x_57 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_57, 0, x_56); +return x_57; +} } } } @@ -22725,7 +22759,6 @@ uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_3); x_11 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___lam__0(x_1, x_2, x_10, x_4, x_5, x_6, x_7, x_8); lean_dec_ref(x_2); -lean_dec_ref(x_1); return x_11; } } @@ -22768,7 +22801,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 = ((lean_object*)(l_Lean_isCtor_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor_spec__38___closed__2)); -x_2 = lean_unsigned_to_nat(61u); +x_2 = lean_unsigned_to_nat(59u); x_3 = lean_unsigned_to_nat(539u); x_4 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst___closed__0)); x_5 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCases___lam__0___closed__0)); @@ -22784,146 +22817,181 @@ x_10 = lean_st_ref_get(x_8); x_11 = lean_ctor_get(x_10, 0); lean_inc_ref(x_11); lean_dec(x_10); +lean_inc(x_8); +lean_inc_ref(x_7); lean_inc_ref(x_11); -x_12 = l_Lean_Compiler_CSimp_replaceConstants(x_11, x_1); -if (lean_obj_tag(x_12) == 4) +x_12 = l_Lean_Compiler_CSimp_replaceConstant(x_11, x_1, x_7, x_8); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; +lean_object* x_13; x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); lean_dec_ref(x_12); -x_15 = lean_array_size(x_2); -x_16 = 0; +if (lean_obj_tag(x_13) == 4) +{ +lean_object* x_14; lean_object* x_15; size_t x_16; size_t x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec_ref(x_13); +x_16 = lean_array_size(x_2); +x_17 = 0; lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_5); lean_inc(x_4); -x_17 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__10(x_15, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_17) == 0) +x_18 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__10(x_16, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; 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_29; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -lean_dec_ref(x_17); -lean_inc(x_13); -x_29 = l_Lean_hasNeverExtractAttribute(x_11, x_13); -if (x_29 == 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; lean_object* x_25; uint8_t x_30; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); +lean_inc(x_14); +x_30 = l_Lean_hasNeverExtractAttribute(x_11, x_14); +if (x_30 == 0) { -x_19 = x_4; -x_20 = x_5; -x_21 = x_6; -x_22 = x_7; -x_23 = x_8; -x_24 = lean_box(0); -goto block_28; +x_20 = x_4; +x_21 = x_5; +x_22 = x_6; +x_23 = x_7; +x_24 = x_8; +x_25 = lean_box(0); +goto block_29; } else { -lean_object* x_30; uint8_t x_31; -x_30 = lean_st_ref_take(x_4); -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) +lean_object* x_31; uint8_t x_32; +x_31 = lean_st_ref_take(x_4); +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) { -uint8_t x_32; lean_object* x_33; -x_32 = 0; -lean_ctor_set_uint8(x_30, sizeof(void*)*6, x_32); -x_33 = lean_st_ref_set(x_4, x_30); -x_19 = x_4; -x_20 = x_5; -x_21 = x_6; -x_22 = x_7; -x_23 = x_8; -x_24 = lean_box(0); -goto block_28; +uint8_t x_33; lean_object* x_34; +x_33 = 0; +lean_ctor_set_uint8(x_31, sizeof(void*)*6, x_33); +x_34 = lean_st_ref_set(x_4, x_31); +x_20 = x_4; +x_21 = x_5; +x_22 = x_6; +x_23 = x_7; +x_24 = x_8; +x_25 = lean_box(0); +goto block_29; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; -x_34 = lean_ctor_get(x_30, 0); -x_35 = lean_ctor_get(x_30, 1); -x_36 = lean_ctor_get(x_30, 2); -x_37 = lean_ctor_get(x_30, 3); -x_38 = lean_ctor_get(x_30, 4); -x_39 = lean_ctor_get(x_30, 5); +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; +x_35 = lean_ctor_get(x_31, 0); +x_36 = lean_ctor_get(x_31, 1); +x_37 = lean_ctor_get(x_31, 2); +x_38 = lean_ctor_get(x_31, 3); +x_39 = lean_ctor_get(x_31, 4); +x_40 = lean_ctor_get(x_31, 5); +lean_inc(x_40); lean_inc(x_39); lean_inc(x_38); lean_inc(x_37); lean_inc(x_36); lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_30); -x_40 = 0; -x_41 = lean_alloc_ctor(0, 6, 1); -lean_ctor_set(x_41, 0, x_34); -lean_ctor_set(x_41, 1, x_35); -lean_ctor_set(x_41, 2, x_36); -lean_ctor_set(x_41, 3, x_37); -lean_ctor_set(x_41, 4, x_38); -lean_ctor_set(x_41, 5, x_39); -lean_ctor_set_uint8(x_41, sizeof(void*)*6, x_40); -x_42 = lean_st_ref_set(x_4, x_41); -x_19 = x_4; -x_20 = x_5; -x_21 = x_6; -x_22 = x_7; -x_23 = x_8; -x_24 = lean_box(0); -goto block_28; +lean_dec(x_31); +x_41 = 0; +x_42 = lean_alloc_ctor(0, 6, 1); +lean_ctor_set(x_42, 0, x_35); +lean_ctor_set(x_42, 1, x_36); +lean_ctor_set(x_42, 2, x_37); +lean_ctor_set(x_42, 3, x_38); +lean_ctor_set(x_42, 4, x_39); +lean_ctor_set(x_42, 5, x_40); +lean_ctor_set_uint8(x_42, sizeof(void*)*6, x_41); +x_43 = lean_st_ref_set(x_4, x_42); +x_20 = x_4; +x_21 = x_5; +x_22 = x_6; +x_23 = x_7; +x_24 = x_8; +x_25 = lean_box(0); +goto block_29; } } -block_28: +block_29: { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_alloc_ctor(3, 3, 0); -lean_ctor_set(x_25, 0, x_13); -lean_ctor_set(x_25, 1, x_14); -lean_ctor_set(x_25, 2, x_18); -x_26 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_bindCases_go___closed__8)); -x_27 = l_Lean_Compiler_LCNF_ToLCNF_letValueToArg___redArg(x_25, x_26, x_19, x_20, x_21, x_22, x_23); -lean_dec(x_19); -return x_27; +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_26, 0, x_14); +lean_ctor_set(x_26, 1, x_15); +lean_ctor_set(x_26, 2, x_19); +x_27 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_bindCases_go___closed__8)); +x_28 = l_Lean_Compiler_LCNF_ToLCNF_letValueToArg___redArg(x_26, x_27, x_20, x_21, x_22, x_23, x_24); +lean_dec(x_20); +return x_28; } } else { -uint8_t x_43; +uint8_t x_44; +lean_dec(x_15); lean_dec(x_14); -lean_dec(x_13); lean_dec_ref(x_11); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); -x_43 = !lean_is_exclusive(x_17); -if (x_43 == 0) +x_44 = !lean_is_exclusive(x_18); +if (x_44 == 0) { -return x_17; +return x_18; } else { -lean_object* x_44; lean_object* x_45; -x_44 = lean_ctor_get(x_17, 0); -lean_inc(x_44); -lean_dec(x_17); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_18, 0); +lean_inc(x_45); +lean_dec(x_18); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +return x_46; } } } else { -lean_object* x_46; lean_object* x_47; -lean_dec_ref(x_12); +lean_object* x_47; lean_object* x_48; +lean_dec(x_13); lean_dec_ref(x_11); lean_dec_ref(x_2); -x_46 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst___closed__1; -x_47 = l_panic___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore_spec__2(x_46, x_3, x_4, x_5, x_6, x_7, x_8); -return x_47; +x_47 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst___closed__1; +x_48 = l_panic___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore_spec__2(x_47, x_3, x_4, x_5, x_6, x_7, x_8); +return x_48; +} +} +else +{ +uint8_t x_49; +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_2); +x_49 = !lean_is_exclusive(x_12); +if (x_49 == 0) +{ +return x_12; +} +else +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_12, 0); +lean_inc(x_50); +lean_dec(x_12); +x_51 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_51, 0, x_50); +return x_51; +} } } } @@ -23058,7 +23126,6 @@ x_44 = lean_nat_sub(x_37, x_38); lean_dec(x_37); x_45 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_43, x_44); x_46 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst(x_41, x_45, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec_ref(x_41); return x_46; } else @@ -23132,7 +23199,6 @@ else lean_object* x_17; lean_dec(x_3); x_17 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec_ref(x_1); return x_17; } } @@ -24678,307 +24744,306 @@ x_10 = lean_ctor_get(x_9, 0); lean_inc_ref(x_10); lean_dec(x_9); x_11 = l_Lean_Expr_getAppFn(x_1); -x_12 = l_Lean_Compiler_CSimp_replaceConstants(x_10, x_11); -lean_dec_ref(x_11); -if (lean_obj_tag(x_12) == 4) +lean_inc(x_7); +lean_inc_ref(x_6); +x_12 = l_Lean_Compiler_CSimp_replaceConstant(x_10, x_11, x_6, x_7); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_13; lean_object* x_14; +lean_object* x_13; x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); lean_dec_ref(x_12); -lean_inc(x_13); -x_14 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_checkComputable(x_13, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_14) == 0) +if (lean_obj_tag(x_13) == 4) { -lean_object* x_18; uint8_t x_19; -lean_dec_ref(x_14); -x_18 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__0)); -x_19 = lean_name_eq(x_13, x_18); -if (x_19 == 0) +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +lean_inc(x_14); +x_15 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_checkComputable(x_14, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_20; uint8_t x_21; -x_20 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__1)); -x_21 = lean_name_eq(x_13, x_20); -if (x_21 == 0) +lean_object* x_19; uint8_t x_20; +lean_dec_ref(x_15); +x_19 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__0)); +x_20 = lean_name_eq(x_14, x_19); +if (x_20 == 0) { -lean_object* x_22; uint8_t x_23; -x_22 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec___closed__1)); -x_23 = lean_name_eq(x_13, x_22); -if (x_23 == 0) +lean_object* x_21; uint8_t x_22; +x_21 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__1)); +x_22 = lean_name_eq(x_14, x_21); +if (x_22 == 0) { -lean_object* x_24; uint8_t x_25; -x_24 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__3)); -x_25 = lean_name_eq(x_13, x_24); -if (x_25 == 0) +lean_object* x_23; uint8_t x_24; +x_23 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec___closed__1)); +x_24 = lean_name_eq(x_14, x_23); +if (x_24 == 0) { -lean_object* x_26; uint8_t x_27; -x_26 = ((lean_object*)(l_Lean_Compiler_LCNF_ToLCNF_mustEtaExpand___closed__2)); -x_27 = lean_name_eq(x_13, x_26); -if (x_27 == 0) +lean_object* x_25; uint8_t x_26; +x_25 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__3)); +x_26 = lean_name_eq(x_14, x_25); +if (x_26 == 0) { -lean_object* x_28; uint8_t x_29; -x_28 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec___closed__1)); -x_29 = lean_name_eq(x_13, x_28); -if (x_29 == 0) +lean_object* x_27; uint8_t x_28; +x_27 = ((lean_object*)(l_Lean_Compiler_LCNF_ToLCNF_mustEtaExpand___closed__2)); +x_28 = lean_name_eq(x_14, x_27); +if (x_28 == 0) { -lean_object* x_30; uint8_t x_31; -x_30 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec___closed__2)); -x_31 = lean_name_eq(x_13, x_30); -if (x_31 == 0) +lean_object* x_29; uint8_t x_30; +x_29 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec___closed__1)); +x_30 = lean_name_eq(x_14, x_29); +if (x_30 == 0) { -lean_object* x_32; uint8_t x_33; -x_32 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__5)); -x_33 = lean_name_eq(x_13, x_32); -if (x_33 == 0) +lean_object* x_31; uint8_t x_32; +x_31 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec___closed__2)); +x_32 = lean_name_eq(x_14, x_31); +if (x_32 == 0) { -lean_object* x_34; uint8_t x_35; -x_34 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__7)); -x_35 = lean_name_eq(x_13, x_34); -if (x_35 == 0) +lean_object* x_33; uint8_t x_34; +x_33 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__5)); +x_34 = lean_name_eq(x_14, x_33); +if (x_34 == 0) { -lean_object* x_36; uint8_t x_37; -x_36 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__9)); -x_37 = lean_name_eq(x_13, x_36); -if (x_37 == 0) +lean_object* x_35; uint8_t x_36; +x_35 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__7)); +x_36 = lean_name_eq(x_14, x_35); +if (x_36 == 0) { -lean_object* x_38; uint8_t x_39; -x_38 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__11)); -x_39 = lean_name_eq(x_13, x_38); -if (x_39 == 0) +lean_object* x_37; uint8_t x_38; +x_37 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__9)); +x_38 = lean_name_eq(x_14, x_37); +if (x_38 == 0) { -lean_object* x_40; uint8_t x_41; -x_40 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__13)); -x_41 = lean_name_eq(x_13, x_40); -if (x_41 == 0) +lean_object* x_39; uint8_t x_40; +x_39 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__11)); +x_40 = lean_name_eq(x_14, x_39); +if (x_40 == 0) { -lean_object* x_42; -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_13); -x_42 = l_getCasesInfo_x3f(x_13, x_6, x_7); -if (lean_obj_tag(x_42) == 0) +lean_object* x_41; uint8_t x_42; +x_41 = ((lean_object*)(l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__13)); +x_42 = lean_name_eq(x_14, x_41); +if (x_42 == 0) { lean_object* x_43; -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -lean_dec_ref(x_42); -if (lean_obj_tag(x_43) == 1) +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_14); +x_43 = l_getCasesInfo_x3f(x_14, x_6, x_7); +if (lean_obj_tag(x_43) == 0) { -lean_object* x_44; lean_object* x_45; -lean_dec(x_13); +lean_object* x_44; x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); lean_dec_ref(x_43); -x_45 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCases(x_44, x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_45; +if (lean_obj_tag(x_44) == 1) +{ +lean_object* x_45; lean_object* x_46; +lean_dec(x_14); +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +lean_dec_ref(x_44); +x_46 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCases(x_45, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_46; } else { -lean_object* x_46; -lean_dec(x_43); -lean_inc_ref(x_6); -lean_inc(x_13); -x_46 = l_Lean_Compiler_LCNF_getCtorArity_x3f(x_13, x_6, x_7); -if (lean_obj_tag(x_46) == 0) -{ lean_object* x_47; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -lean_dec_ref(x_46); -if (lean_obj_tag(x_47) == 1) +lean_dec(x_44); +lean_inc_ref(x_6); +lean_inc(x_14); +x_47 = l_Lean_Compiler_LCNF_getCtorArity_x3f(x_14, x_6, x_7); +if (lean_obj_tag(x_47) == 0) { -lean_object* x_48; lean_object* x_49; -lean_dec(x_13); +lean_object* x_48; x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); lean_dec_ref(x_47); -x_49 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor(x_48, x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_48); -return x_49; +if (lean_obj_tag(x_48) == 1) +{ +lean_object* x_49; lean_object* x_50; +lean_dec(x_14); +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec_ref(x_48); +x_50 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor(x_49, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_49); +return x_50; } else { -lean_object* x_50; lean_object* x_51; uint8_t x_52; -lean_dec(x_47); -x_50 = lean_st_ref_get(x_7); -x_51 = lean_ctor_get(x_50, 0); -lean_inc_ref(x_51); -lean_dec(x_50); -lean_inc(x_13); -x_52 = l_Lean_isNoConfusion(x_51, x_13); -if (x_52 == 0) -{ -lean_object* x_53; -x_53 = l_Lean_getProjectionFnInfo_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__11___redArg(x_13, x_7); -if (lean_obj_tag(x_53) == 0) +lean_object* x_51; lean_object* x_52; uint8_t x_53; +lean_dec(x_48); +x_51 = lean_st_ref_get(x_7); +x_52 = lean_ctor_get(x_51, 0); +lean_inc_ref(x_52); +lean_dec(x_51); +lean_inc(x_14); +x_53 = l_Lean_isNoConfusion(x_52, x_14); +if (x_53 == 0) { lean_object* x_54; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec_ref(x_53); -if (lean_obj_tag(x_54) == 1) +x_54 = l_Lean_getProjectionFnInfo_x3f___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__11___redArg(x_14, x_7); +if (lean_obj_tag(x_54) == 0) { -lean_object* x_55; lean_object* x_56; +lean_object* x_55; x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); lean_dec_ref(x_54); -x_56 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitProjFn(x_55, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_55) == 1) +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +lean_dec_ref(x_55); +x_57 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitProjFn(x_56, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_56); +return x_57; +} +else +{ +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_dec(x_55); -return x_56; -} -else -{ -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_dec(x_54); -x_57 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___closed__0; -x_58 = l_Lean_Expr_getAppNumArgs(x_1); -lean_inc(x_58); -x_59 = lean_mk_array(x_58, x_57); -x_60 = lean_unsigned_to_nat(1u); -x_61 = lean_nat_sub(x_58, x_60); -lean_dec(x_58); -x_62 = l_Lean_Expr_withAppAux___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__12(x_1, x_59, x_61, x_2, x_3, x_4, x_5, x_6, x_7); -return x_62; +x_58 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___closed__0; +x_59 = l_Lean_Expr_getAppNumArgs(x_1); +lean_inc(x_59); +x_60 = lean_mk_array(x_59, x_58); +x_61 = lean_unsigned_to_nat(1u); +x_62 = lean_nat_sub(x_59, x_61); +lean_dec(x_59); +x_63 = l_Lean_Expr_withAppAux___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__12(x_1, x_60, x_62, x_2, x_3, x_4, x_5, x_6, x_7); +return x_63; } } else { -uint8_t x_63; +uint8_t x_64; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_1); -x_63 = !lean_is_exclusive(x_53); -if (x_63 == 0) +x_64 = !lean_is_exclusive(x_54); +if (x_64 == 0) { -return x_53; +return x_54; } else { -lean_object* x_64; lean_object* x_65; -x_64 = lean_ctor_get(x_53, 0); -lean_inc(x_64); -lean_dec(x_53); -x_65 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_65, 0, x_64); -return x_65; -} -} -} -else -{ -lean_object* x_66; -lean_dec(x_13); -x_66 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitNoConfusion(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_object* x_65; lean_object* x_66; +x_65 = lean_ctor_get(x_54, 0); +lean_inc(x_65); +lean_dec(x_54); +x_66 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_66, 0, x_65); return x_66; } } } else { -uint8_t x_67; -lean_dec(x_13); +lean_object* x_67; +lean_dec(x_14); +x_67 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitNoConfusion(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_67; +} +} +} +else +{ +uint8_t x_68; +lean_dec(x_14); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_1); -x_67 = !lean_is_exclusive(x_46); -if (x_67 == 0) +x_68 = !lean_is_exclusive(x_47); +if (x_68 == 0) { -return x_46; +return x_47; } else { -lean_object* x_68; lean_object* x_69; -x_68 = lean_ctor_get(x_46, 0); -lean_inc(x_68); -lean_dec(x_46); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_68); -return x_69; +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_47, 0); +lean_inc(x_69); +lean_dec(x_47); +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; } } } } else { -uint8_t x_70; -lean_dec(x_13); +uint8_t x_71; +lean_dec(x_14); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_1); -x_70 = !lean_is_exclusive(x_42); -if (x_70 == 0) +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) { -return x_42; +return x_43; } else { -lean_object* x_71; lean_object* x_72; -x_71 = lean_ctor_get(x_42, 0); -lean_inc(x_71); -lean_dec(x_42); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_71); -return x_72; -} -} -} -else -{ -lean_object* x_73; -lean_dec(x_13); -x_73 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitLcUnreachable(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_43, 0); +lean_inc(x_72); +lean_dec(x_43); +x_73 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_73, 0, x_72); return x_73; } } +} else { lean_object* x_74; -lean_dec(x_13); -x_74 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitFalseRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +x_74 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitLcUnreachable(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_74; } } else { lean_object* x_75; -lean_dec(x_13); +lean_dec(x_14); x_75 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitFalseRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_75; } } else { -lean_dec(x_13); -goto block_17; -} -} -else -{ -lean_dec(x_13); -goto block_17; -} -} -else -{ lean_object* x_76; -lean_dec(x_13); -x_76 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +x_76 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitFalseRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_76; } } else { +lean_dec(x_14); +goto block_18; +} +} +else +{ +lean_dec(x_14); +goto block_18; +} +} +else +{ lean_object* x_77; -lean_dec(x_13); +lean_dec(x_14); x_77 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_77; } @@ -24986,15 +25051,15 @@ return x_77; else { lean_object* x_78; -lean_dec(x_13); -x_78 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +x_78 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitHEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_78; } } else { lean_object* x_79; -lean_dec(x_13); +lean_dec(x_14); x_79 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_79; } @@ -25002,75 +25067,109 @@ return x_79; else { lean_object* x_80; -lean_dec(x_13); +lean_dec(x_14); x_80 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_80; } } else { -lean_object* x_81; lean_object* x_82; -lean_dec(x_13); -x_81 = lean_unsigned_to_nat(3u); -x_82 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor(x_81, x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_82; +lean_object* x_81; +lean_dec(x_14); +x_81 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitEqRec(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_81; } } else { -lean_object* x_83; -lean_dec(x_13); -x_83 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitQuotLift(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_object* x_82; lean_object* x_83; +lean_dec(x_14); +x_82 = lean_unsigned_to_nat(3u); +x_83 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor(x_82, x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_83; } -block_17: +} +else { -lean_object* x_15; lean_object* x_16; -x_15 = lean_unsigned_to_nat(3u); -x_16 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAndIffRecCore(x_1, x_15, x_2, x_3, x_4, x_5, x_6, x_7); -return x_16; +lean_object* x_84; +lean_dec(x_14); +x_84 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitQuotLift(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_84; +} +block_18: +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_unsigned_to_nat(3u); +x_17 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAndIffRecCore(x_1, x_16, x_2, x_3, x_4, x_5, x_6, x_7); +return x_17; } } else { -uint8_t x_84; -lean_dec(x_13); +uint8_t x_85; +lean_dec(x_14); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_1); -x_84 = !lean_is_exclusive(x_14); -if (x_84 == 0) +x_85 = !lean_is_exclusive(x_15); +if (x_85 == 0) { -return x_14; +return x_15; } else { -lean_object* x_85; lean_object* x_86; -x_85 = lean_ctor_get(x_14, 0); -lean_inc(x_85); -lean_dec(x_14); -x_86 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_86, 0, x_85); -return x_86; +lean_object* x_86; lean_object* x_87; +x_86 = lean_ctor_get(x_15, 0); +lean_inc(x_86); +lean_dec(x_15); +x_87 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_87, 0, x_86); +return x_87; } } } else { -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_dec_ref(x_12); -x_87 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___closed__0; -x_88 = l_Lean_Expr_getAppNumArgs(x_1); -lean_inc(x_88); -x_89 = lean_mk_array(x_88, x_87); -x_90 = lean_unsigned_to_nat(1u); -x_91 = lean_nat_sub(x_88, x_90); -lean_dec(x_88); -x_92 = l_Lean_Expr_withAppAux___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__13(x_1, x_89, x_91, x_2, x_3, x_4, x_5, x_6, x_7); -return x_92; +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_dec(x_13); +x_88 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCtor___closed__0; +x_89 = l_Lean_Expr_getAppNumArgs(x_1); +lean_inc(x_89); +x_90 = lean_mk_array(x_89, x_88); +x_91 = lean_unsigned_to_nat(1u); +x_92 = lean_nat_sub(x_89, x_91); +lean_dec(x_89); +x_93 = l_Lean_Expr_withAppAux___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp_spec__13(x_1, x_90, x_92, x_2, x_3, x_4, x_5, x_6, x_7); +return x_93; +} +} +else +{ +uint8_t x_94; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +x_94 = !lean_is_exclusive(x_12); +if (x_94 == 0) +{ +return x_12; +} +else +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_12, 0); +lean_inc(x_95); +lean_dec(x_12); +x_96 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_96, 0, x_95); +return x_96; +} } } } @@ -26571,10 +26670,10 @@ return x_142; block_15: { lean_object* x_13; lean_object* x_14; -x_13 = lean_st_ref_set(x_9, x_12); -lean_dec(x_9); +x_13 = lean_st_ref_set(x_11, x_12); +lean_dec(x_11); x_14 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_14, 0, x_11); +lean_ctor_set(x_14, 0, x_10); return x_14; } block_32: @@ -26585,9 +26684,9 @@ x_20 = lean_ctor_get_uint8(x_19, sizeof(void*)*6); if (x_20 == 0) { lean_dec_ref(x_1); -x_9 = x_17; -x_10 = lean_box(0); -x_11 = x_16; +x_9 = lean_box(0); +x_10 = x_16; +x_11 = x_17; x_12 = x_19; goto block_15; } @@ -26602,9 +26701,9 @@ x_22 = lean_ctor_get(x_19, 1); lean_inc(x_16); x_23 = l_Lean_PersistentHashMap_insert___at___00__private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore_spec__0___redArg(x_22, x_1, x_16); lean_ctor_set(x_19, 1, x_23); -x_9 = x_17; -x_10 = lean_box(0); -x_11 = x_16; +x_9 = lean_box(0); +x_10 = x_16; +x_11 = x_17; x_12 = x_19; goto block_15; } @@ -26634,9 +26733,9 @@ lean_ctor_set(x_31, 3, x_27); lean_ctor_set(x_31, 4, x_28); lean_ctor_set(x_31, 5, x_29); lean_ctor_set_uint8(x_31, sizeof(void*)*6, x_20); -x_9 = x_17; -x_10 = lean_box(0); -x_11 = x_16; +x_9 = lean_box(0); +x_10 = x_16; +x_11 = x_17; x_12 = x_31; goto block_15; } @@ -27596,7 +27695,6 @@ _start: uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_3); x_11 = l___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAppDefaultConst(x_1, x_2, x_10, x_4, x_5, x_6, x_7, x_8); -lean_dec_ref(x_1); return x_11; } } diff --git a/stage0/stdlib/Lean/CoreM.c b/stage0/stdlib/Lean/CoreM.c index b76f97c15e..d1f4a1a6cd 100644 --- a/stage0/stdlib/Lean/CoreM.c +++ b/stage0/stdlib/Lean/CoreM.c @@ -12466,287 +12466,903 @@ return x_20; LEAN_EXPORT lean_object* l_Lean_Core_wrapAsync___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_object* x_6; lean_object* x_7; uint8_t x_8; x_6 = lean_st_ref_get(x_4); -x_7 = lean_ctor_get(x_6, 3); +x_7 = lean_ctor_get(x_6, 2); lean_inc_ref(x_7); lean_dec(x_6); -x_8 = l_Lean_DeclNameGenerator_mkChild(x_7); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); -lean_dec_ref(x_8); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); x_11 = lean_st_ref_take(x_4); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_13 = lean_ctor_get(x_11, 3); +lean_object* x_13; 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; +x_13 = lean_ctor_get(x_11, 2); lean_dec(x_13); -lean_ctor_set(x_11, 3, x_10); -x_14 = lean_st_ref_set(x_4, x_11); -x_15 = lean_st_ref_get(x_4); -x_16 = lean_io_get_num_heartbeats(); -x_17 = !lean_is_exclusive(x_15); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_18 = lean_ctor_get(x_15, 3); -lean_dec(x_18); -x_19 = lean_ctor_get(x_3, 0); +lean_inc(x_10); +lean_inc(x_9); +x_14 = l_Lean_Name_num___override(x_9, x_10); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_10, x_15); +lean_dec(x_10); +lean_ctor_set(x_7, 1, x_16); +lean_ctor_set(x_11, 2, x_7); +x_17 = lean_st_ref_set(x_4, x_11); +x_18 = lean_st_ref_get(x_4); +x_19 = lean_ctor_get(x_18, 3); lean_inc_ref(x_19); -x_20 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_20); -x_21 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_21); -x_22 = lean_ctor_get(x_3, 3); -lean_inc(x_22); -x_23 = lean_ctor_get(x_3, 5); -lean_inc(x_23); -x_24 = lean_ctor_get(x_3, 6); -lean_inc(x_24); -x_25 = lean_ctor_get(x_3, 7); -lean_inc(x_25); -x_26 = lean_ctor_get(x_3, 8); -lean_inc(x_26); -x_27 = lean_ctor_get(x_3, 9); -lean_inc(x_27); -x_28 = lean_ctor_get(x_3, 10); -lean_inc(x_28); -x_29 = lean_ctor_get(x_3, 11); -lean_inc(x_29); -x_30 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); -lean_dec_ref(x_3); -lean_ctor_set(x_15, 3, x_9); -x_31 = lean_nat_sub(x_16, x_26); -lean_dec(x_16); -x_32 = lean_box(x_30); -x_33 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); -lean_closure_set(x_33, 0, x_15); -lean_closure_set(x_33, 1, x_31); -lean_closure_set(x_33, 2, x_1); -lean_closure_set(x_33, 3, x_21); -lean_closure_set(x_33, 4, x_19); -lean_closure_set(x_33, 5, x_20); -lean_closure_set(x_33, 6, x_22); -lean_closure_set(x_33, 7, x_23); -lean_closure_set(x_33, 8, x_24); -lean_closure_set(x_33, 9, x_25); -lean_closure_set(x_33, 10, x_26); -lean_closure_set(x_33, 11, x_27); -lean_closure_set(x_33, 12, x_28); -lean_closure_set(x_33, 13, x_29); -lean_closure_set(x_33, 14, x_2); -lean_closure_set(x_33, 15, x_32); -x_34 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_34, 0, x_33); -return x_34; -} -else +lean_dec(x_18); +x_20 = l_Lean_DeclNameGenerator_mkChild(x_19); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) { -lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; 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; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_35 = lean_ctor_get(x_15, 0); -x_36 = lean_ctor_get(x_15, 1); -x_37 = lean_ctor_get(x_15, 2); -x_38 = lean_ctor_get(x_15, 4); -x_39 = lean_ctor_get(x_15, 5); -x_40 = lean_ctor_get(x_15, 6); -x_41 = lean_ctor_get(x_15, 7); -x_42 = lean_ctor_get(x_15, 8); -lean_inc(x_42); -lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); -lean_inc(x_38); -lean_inc(x_37); +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get(x_20, 1); +x_24 = lean_st_ref_take(x_4); +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_26 = lean_ctor_get(x_24, 3); +lean_dec(x_26); +lean_ctor_set(x_24, 3, x_23); +x_27 = lean_st_ref_set(x_4, x_24); +x_28 = lean_st_ref_get(x_4); +x_29 = lean_io_get_num_heartbeats(); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_31 = lean_ctor_get(x_28, 3); +lean_dec(x_31); +x_32 = lean_ctor_get(x_28, 2); +lean_dec(x_32); +x_33 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_33); +x_34 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_34); +x_35 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_35); +x_36 = lean_ctor_get(x_3, 3); lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_15); -x_43 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_43); -x_44 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_44); -x_45 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_45); -x_46 = lean_ctor_get(x_3, 3); -lean_inc(x_46); -x_47 = lean_ctor_get(x_3, 5); -lean_inc(x_47); -x_48 = lean_ctor_get(x_3, 6); -lean_inc(x_48); -x_49 = lean_ctor_get(x_3, 7); -lean_inc(x_49); -x_50 = lean_ctor_get(x_3, 8); -lean_inc(x_50); -x_51 = lean_ctor_get(x_3, 9); -lean_inc(x_51); -x_52 = lean_ctor_get(x_3, 10); -lean_inc(x_52); -x_53 = lean_ctor_get(x_3, 11); -lean_inc(x_53); -x_54 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +x_37 = lean_ctor_get(x_3, 5); +lean_inc(x_37); +x_38 = lean_ctor_get(x_3, 6); +lean_inc(x_38); +x_39 = lean_ctor_get(x_3, 7); +lean_inc(x_39); +x_40 = lean_ctor_get(x_3, 8); +lean_inc(x_40); +x_41 = lean_ctor_get(x_3, 9); +lean_inc(x_41); +x_42 = lean_ctor_get(x_3, 10); +lean_inc(x_42); +x_43 = lean_ctor_get(x_3, 11); +lean_inc(x_43); +x_44 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); lean_dec_ref(x_3); -x_55 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_55, 0, x_35); -lean_ctor_set(x_55, 1, x_36); -lean_ctor_set(x_55, 2, x_37); -lean_ctor_set(x_55, 3, x_9); -lean_ctor_set(x_55, 4, x_38); -lean_ctor_set(x_55, 5, x_39); -lean_ctor_set(x_55, 6, x_40); -lean_ctor_set(x_55, 7, x_41); -lean_ctor_set(x_55, 8, x_42); -x_56 = lean_nat_sub(x_16, x_50); -lean_dec(x_16); -x_57 = lean_box(x_54); -x_58 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); -lean_closure_set(x_58, 0, x_55); -lean_closure_set(x_58, 1, x_56); -lean_closure_set(x_58, 2, x_1); -lean_closure_set(x_58, 3, x_45); -lean_closure_set(x_58, 4, x_43); -lean_closure_set(x_58, 5, x_44); -lean_closure_set(x_58, 6, x_46); -lean_closure_set(x_58, 7, x_47); -lean_closure_set(x_58, 8, x_48); -lean_closure_set(x_58, 9, x_49); -lean_closure_set(x_58, 10, x_50); -lean_closure_set(x_58, 11, x_51); -lean_closure_set(x_58, 12, x_52); -lean_closure_set(x_58, 13, x_53); -lean_closure_set(x_58, 14, x_2); -lean_closure_set(x_58, 15, x_57); -x_59 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_59, 0, x_58); -return x_59; +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_28, 3, x_22); +lean_ctor_set(x_28, 2, x_20); +x_45 = lean_nat_sub(x_29, x_40); +lean_dec(x_29); +x_46 = lean_box(x_44); +x_47 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_47, 0, x_28); +lean_closure_set(x_47, 1, x_45); +lean_closure_set(x_47, 2, x_1); +lean_closure_set(x_47, 3, x_35); +lean_closure_set(x_47, 4, x_33); +lean_closure_set(x_47, 5, x_34); +lean_closure_set(x_47, 6, x_36); +lean_closure_set(x_47, 7, x_37); +lean_closure_set(x_47, 8, x_38); +lean_closure_set(x_47, 9, x_39); +lean_closure_set(x_47, 10, x_40); +lean_closure_set(x_47, 11, x_41); +lean_closure_set(x_47, 12, x_42); +lean_closure_set(x_47, 13, x_43); +lean_closure_set(x_47, 14, x_2); +lean_closure_set(x_47, 15, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_47); +return x_48; +} +else +{ +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; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_49 = lean_ctor_get(x_28, 0); +x_50 = lean_ctor_get(x_28, 1); +x_51 = lean_ctor_get(x_28, 4); +x_52 = lean_ctor_get(x_28, 5); +x_53 = lean_ctor_get(x_28, 6); +x_54 = lean_ctor_get(x_28, 7); +x_55 = lean_ctor_get(x_28, 8); +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_dec(x_28); +x_56 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_56); +x_57 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_57); +x_58 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_58); +x_59 = lean_ctor_get(x_3, 3); +lean_inc(x_59); +x_60 = lean_ctor_get(x_3, 5); +lean_inc(x_60); +x_61 = lean_ctor_get(x_3, 6); +lean_inc(x_61); +x_62 = lean_ctor_get(x_3, 7); +lean_inc(x_62); +x_63 = lean_ctor_get(x_3, 8); +lean_inc(x_63); +x_64 = lean_ctor_get(x_3, 9); +lean_inc(x_64); +x_65 = lean_ctor_get(x_3, 10); +lean_inc(x_65); +x_66 = lean_ctor_get(x_3, 11); +lean_inc(x_66); +x_67 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +lean_dec_ref(x_3); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +x_68 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_68, 0, x_49); +lean_ctor_set(x_68, 1, x_50); +lean_ctor_set(x_68, 2, x_20); +lean_ctor_set(x_68, 3, x_22); +lean_ctor_set(x_68, 4, x_51); +lean_ctor_set(x_68, 5, x_52); +lean_ctor_set(x_68, 6, x_53); +lean_ctor_set(x_68, 7, x_54); +lean_ctor_set(x_68, 8, x_55); +x_69 = lean_nat_sub(x_29, x_63); +lean_dec(x_29); +x_70 = lean_box(x_67); +x_71 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_71, 0, x_68); +lean_closure_set(x_71, 1, x_69); +lean_closure_set(x_71, 2, x_1); +lean_closure_set(x_71, 3, x_58); +lean_closure_set(x_71, 4, x_56); +lean_closure_set(x_71, 5, x_57); +lean_closure_set(x_71, 6, x_59); +lean_closure_set(x_71, 7, x_60); +lean_closure_set(x_71, 8, x_61); +lean_closure_set(x_71, 9, x_62); +lean_closure_set(x_71, 10, x_63); +lean_closure_set(x_71, 11, x_64); +lean_closure_set(x_71, 12, x_65); +lean_closure_set(x_71, 13, x_66); +lean_closure_set(x_71, 14, x_2); +lean_closure_set(x_71, 15, x_70); +x_72 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_72, 0, x_71); +return x_72; } } else { -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; 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; lean_object* 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; uint8_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_60 = lean_ctor_get(x_11, 0); -x_61 = lean_ctor_get(x_11, 1); -x_62 = lean_ctor_get(x_11, 2); -x_63 = lean_ctor_get(x_11, 4); -x_64 = lean_ctor_get(x_11, 5); -x_65 = lean_ctor_get(x_11, 6); -x_66 = lean_ctor_get(x_11, 7); -x_67 = lean_ctor_get(x_11, 8); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_inc(x_60); -lean_dec(x_11); -x_68 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_68, 0, x_60); -lean_ctor_set(x_68, 1, x_61); -lean_ctor_set(x_68, 2, x_62); -lean_ctor_set(x_68, 3, x_10); -lean_ctor_set(x_68, 4, x_63); -lean_ctor_set(x_68, 5, x_64); -lean_ctor_set(x_68, 6, x_65); -lean_ctor_set(x_68, 7, x_66); -lean_ctor_set(x_68, 8, x_67); -x_69 = lean_st_ref_set(x_4, x_68); -x_70 = lean_st_ref_get(x_4); -x_71 = lean_io_get_num_heartbeats(); -x_72 = lean_ctor_get(x_70, 0); -lean_inc_ref(x_72); -x_73 = lean_ctor_get(x_70, 1); +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_73 = lean_ctor_get(x_24, 0); +x_74 = lean_ctor_get(x_24, 1); +x_75 = lean_ctor_get(x_24, 2); +x_76 = lean_ctor_get(x_24, 4); +x_77 = lean_ctor_get(x_24, 5); +x_78 = lean_ctor_get(x_24, 6); +x_79 = lean_ctor_get(x_24, 7); +x_80 = lean_ctor_get(x_24, 8); +lean_inc(x_80); +lean_inc(x_79); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_inc(x_75); +lean_inc(x_74); lean_inc(x_73); -x_74 = lean_ctor_get(x_70, 2); -lean_inc_ref(x_74); -x_75 = lean_ctor_get(x_70, 4); -lean_inc_ref(x_75); -x_76 = lean_ctor_get(x_70, 5); -lean_inc_ref(x_76); -x_77 = lean_ctor_get(x_70, 6); -lean_inc_ref(x_77); -x_78 = lean_ctor_get(x_70, 7); -lean_inc_ref(x_78); -x_79 = lean_ctor_get(x_70, 8); -lean_inc_ref(x_79); -if (lean_is_exclusive(x_70)) { - lean_ctor_release(x_70, 0); - lean_ctor_release(x_70, 1); - lean_ctor_release(x_70, 2); - lean_ctor_release(x_70, 3); - lean_ctor_release(x_70, 4); - lean_ctor_release(x_70, 5); - lean_ctor_release(x_70, 6); - lean_ctor_release(x_70, 7); - lean_ctor_release(x_70, 8); - x_80 = x_70; -} else { - lean_dec_ref(x_70); - x_80 = lean_box(0); -} -x_81 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_81); -x_82 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_82); -x_83 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_83); -x_84 = lean_ctor_get(x_3, 3); -lean_inc(x_84); -x_85 = lean_ctor_get(x_3, 5); -lean_inc(x_85); -x_86 = lean_ctor_get(x_3, 6); +lean_dec(x_24); +x_81 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_81, 0, x_73); +lean_ctor_set(x_81, 1, x_74); +lean_ctor_set(x_81, 2, x_75); +lean_ctor_set(x_81, 3, x_23); +lean_ctor_set(x_81, 4, x_76); +lean_ctor_set(x_81, 5, x_77); +lean_ctor_set(x_81, 6, x_78); +lean_ctor_set(x_81, 7, x_79); +lean_ctor_set(x_81, 8, x_80); +x_82 = lean_st_ref_set(x_4, x_81); +x_83 = lean_st_ref_get(x_4); +x_84 = lean_io_get_num_heartbeats(); +x_85 = lean_ctor_get(x_83, 0); +lean_inc_ref(x_85); +x_86 = lean_ctor_get(x_83, 1); lean_inc(x_86); -x_87 = lean_ctor_get(x_3, 7); -lean_inc(x_87); -x_88 = lean_ctor_get(x_3, 8); -lean_inc(x_88); -x_89 = lean_ctor_get(x_3, 9); -lean_inc(x_89); -x_90 = lean_ctor_get(x_3, 10); -lean_inc(x_90); -x_91 = lean_ctor_get(x_3, 11); -lean_inc(x_91); -x_92 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); -lean_dec_ref(x_3); -if (lean_is_scalar(x_80)) { - x_93 = lean_alloc_ctor(0, 9, 0); +x_87 = lean_ctor_get(x_83, 4); +lean_inc_ref(x_87); +x_88 = lean_ctor_get(x_83, 5); +lean_inc_ref(x_88); +x_89 = lean_ctor_get(x_83, 6); +lean_inc_ref(x_89); +x_90 = lean_ctor_get(x_83, 7); +lean_inc_ref(x_90); +x_91 = lean_ctor_get(x_83, 8); +lean_inc_ref(x_91); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + lean_ctor_release(x_83, 2); + lean_ctor_release(x_83, 3); + lean_ctor_release(x_83, 4); + lean_ctor_release(x_83, 5); + lean_ctor_release(x_83, 6); + lean_ctor_release(x_83, 7); + lean_ctor_release(x_83, 8); + x_92 = x_83; } else { - x_93 = x_80; + lean_dec_ref(x_83); + x_92 = lean_box(0); } -lean_ctor_set(x_93, 0, x_72); -lean_ctor_set(x_93, 1, x_73); -lean_ctor_set(x_93, 2, x_74); -lean_ctor_set(x_93, 3, x_9); -lean_ctor_set(x_93, 4, x_75); -lean_ctor_set(x_93, 5, x_76); -lean_ctor_set(x_93, 6, x_77); -lean_ctor_set(x_93, 7, x_78); -lean_ctor_set(x_93, 8, x_79); -x_94 = lean_nat_sub(x_71, x_88); -lean_dec(x_71); -x_95 = lean_box(x_92); -x_96 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); -lean_closure_set(x_96, 0, x_93); -lean_closure_set(x_96, 1, x_94); -lean_closure_set(x_96, 2, x_1); -lean_closure_set(x_96, 3, x_83); -lean_closure_set(x_96, 4, x_81); -lean_closure_set(x_96, 5, x_82); -lean_closure_set(x_96, 6, x_84); -lean_closure_set(x_96, 7, x_85); -lean_closure_set(x_96, 8, x_86); -lean_closure_set(x_96, 9, x_87); -lean_closure_set(x_96, 10, x_88); -lean_closure_set(x_96, 11, x_89); -lean_closure_set(x_96, 12, x_90); -lean_closure_set(x_96, 13, x_91); -lean_closure_set(x_96, 14, x_2); -lean_closure_set(x_96, 15, x_95); -x_97 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_97, 0, x_96); -return x_97; +x_93 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_93); +x_94 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_94); +x_95 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_95); +x_96 = lean_ctor_get(x_3, 3); +lean_inc(x_96); +x_97 = lean_ctor_get(x_3, 5); +lean_inc(x_97); +x_98 = lean_ctor_get(x_3, 6); +lean_inc(x_98); +x_99 = lean_ctor_get(x_3, 7); +lean_inc(x_99); +x_100 = lean_ctor_get(x_3, 8); +lean_inc(x_100); +x_101 = lean_ctor_get(x_3, 9); +lean_inc(x_101); +x_102 = lean_ctor_get(x_3, 10); +lean_inc(x_102); +x_103 = lean_ctor_get(x_3, 11); +lean_inc(x_103); +x_104 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +lean_dec_ref(x_3); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +if (lean_is_scalar(x_92)) { + x_105 = lean_alloc_ctor(0, 9, 0); +} else { + x_105 = x_92; +} +lean_ctor_set(x_105, 0, x_85); +lean_ctor_set(x_105, 1, x_86); +lean_ctor_set(x_105, 2, x_20); +lean_ctor_set(x_105, 3, x_22); +lean_ctor_set(x_105, 4, x_87); +lean_ctor_set(x_105, 5, x_88); +lean_ctor_set(x_105, 6, x_89); +lean_ctor_set(x_105, 7, x_90); +lean_ctor_set(x_105, 8, x_91); +x_106 = lean_nat_sub(x_84, x_100); +lean_dec(x_84); +x_107 = lean_box(x_104); +x_108 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_108, 0, x_105); +lean_closure_set(x_108, 1, x_106); +lean_closure_set(x_108, 2, x_1); +lean_closure_set(x_108, 3, x_95); +lean_closure_set(x_108, 4, x_93); +lean_closure_set(x_108, 5, x_94); +lean_closure_set(x_108, 6, x_96); +lean_closure_set(x_108, 7, x_97); +lean_closure_set(x_108, 8, x_98); +lean_closure_set(x_108, 9, x_99); +lean_closure_set(x_108, 10, x_100); +lean_closure_set(x_108, 11, x_101); +lean_closure_set(x_108, 12, x_102); +lean_closure_set(x_108, 13, x_103); +lean_closure_set(x_108, 14, x_2); +lean_closure_set(x_108, 15, x_107); +x_109 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_110 = lean_ctor_get(x_20, 0); +x_111 = lean_ctor_get(x_20, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_20); +x_112 = lean_st_ref_take(x_4); +x_113 = lean_ctor_get(x_112, 0); +lean_inc_ref(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +x_115 = lean_ctor_get(x_112, 2); +lean_inc_ref(x_115); +x_116 = lean_ctor_get(x_112, 4); +lean_inc_ref(x_116); +x_117 = lean_ctor_get(x_112, 5); +lean_inc_ref(x_117); +x_118 = lean_ctor_get(x_112, 6); +lean_inc_ref(x_118); +x_119 = lean_ctor_get(x_112, 7); +lean_inc_ref(x_119); +x_120 = lean_ctor_get(x_112, 8); +lean_inc_ref(x_120); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + lean_ctor_release(x_112, 2); + lean_ctor_release(x_112, 3); + lean_ctor_release(x_112, 4); + lean_ctor_release(x_112, 5); + lean_ctor_release(x_112, 6); + lean_ctor_release(x_112, 7); + lean_ctor_release(x_112, 8); + x_121 = x_112; +} else { + lean_dec_ref(x_112); + x_121 = lean_box(0); +} +if (lean_is_scalar(x_121)) { + x_122 = lean_alloc_ctor(0, 9, 0); +} else { + x_122 = x_121; +} +lean_ctor_set(x_122, 0, x_113); +lean_ctor_set(x_122, 1, x_114); +lean_ctor_set(x_122, 2, x_115); +lean_ctor_set(x_122, 3, x_111); +lean_ctor_set(x_122, 4, x_116); +lean_ctor_set(x_122, 5, x_117); +lean_ctor_set(x_122, 6, x_118); +lean_ctor_set(x_122, 7, x_119); +lean_ctor_set(x_122, 8, x_120); +x_123 = lean_st_ref_set(x_4, x_122); +x_124 = lean_st_ref_get(x_4); +x_125 = lean_io_get_num_heartbeats(); +x_126 = lean_ctor_get(x_124, 0); +lean_inc_ref(x_126); +x_127 = lean_ctor_get(x_124, 1); +lean_inc(x_127); +x_128 = lean_ctor_get(x_124, 4); +lean_inc_ref(x_128); +x_129 = lean_ctor_get(x_124, 5); +lean_inc_ref(x_129); +x_130 = lean_ctor_get(x_124, 6); +lean_inc_ref(x_130); +x_131 = lean_ctor_get(x_124, 7); +lean_inc_ref(x_131); +x_132 = lean_ctor_get(x_124, 8); +lean_inc_ref(x_132); +if (lean_is_exclusive(x_124)) { + lean_ctor_release(x_124, 0); + lean_ctor_release(x_124, 1); + lean_ctor_release(x_124, 2); + lean_ctor_release(x_124, 3); + lean_ctor_release(x_124, 4); + lean_ctor_release(x_124, 5); + lean_ctor_release(x_124, 6); + lean_ctor_release(x_124, 7); + lean_ctor_release(x_124, 8); + x_133 = x_124; +} else { + lean_dec_ref(x_124); + x_133 = lean_box(0); +} +x_134 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_134); +x_135 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_135); +x_136 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_136); +x_137 = lean_ctor_get(x_3, 3); +lean_inc(x_137); +x_138 = lean_ctor_get(x_3, 5); +lean_inc(x_138); +x_139 = lean_ctor_get(x_3, 6); +lean_inc(x_139); +x_140 = lean_ctor_get(x_3, 7); +lean_inc(x_140); +x_141 = lean_ctor_get(x_3, 8); +lean_inc(x_141); +x_142 = lean_ctor_get(x_3, 9); +lean_inc(x_142); +x_143 = lean_ctor_get(x_3, 10); +lean_inc(x_143); +x_144 = lean_ctor_get(x_3, 11); +lean_inc(x_144); +x_145 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +lean_dec_ref(x_3); +x_146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_146, 0, x_14); +lean_ctor_set(x_146, 1, x_15); +if (lean_is_scalar(x_133)) { + x_147 = lean_alloc_ctor(0, 9, 0); +} else { + x_147 = x_133; +} +lean_ctor_set(x_147, 0, x_126); +lean_ctor_set(x_147, 1, x_127); +lean_ctor_set(x_147, 2, x_146); +lean_ctor_set(x_147, 3, x_110); +lean_ctor_set(x_147, 4, x_128); +lean_ctor_set(x_147, 5, x_129); +lean_ctor_set(x_147, 6, x_130); +lean_ctor_set(x_147, 7, x_131); +lean_ctor_set(x_147, 8, x_132); +x_148 = lean_nat_sub(x_125, x_141); +lean_dec(x_125); +x_149 = lean_box(x_145); +x_150 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_150, 0, x_147); +lean_closure_set(x_150, 1, x_148); +lean_closure_set(x_150, 2, x_1); +lean_closure_set(x_150, 3, x_136); +lean_closure_set(x_150, 4, x_134); +lean_closure_set(x_150, 5, x_135); +lean_closure_set(x_150, 6, x_137); +lean_closure_set(x_150, 7, x_138); +lean_closure_set(x_150, 8, x_139); +lean_closure_set(x_150, 9, x_140); +lean_closure_set(x_150, 10, x_141); +lean_closure_set(x_150, 11, x_142); +lean_closure_set(x_150, 12, x_143); +lean_closure_set(x_150, 13, x_144); +lean_closure_set(x_150, 14, x_2); +lean_closure_set(x_150, 15, x_149); +x_151 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_151, 0, x_150); +return x_151; +} +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_152 = lean_ctor_get(x_11, 0); +x_153 = lean_ctor_get(x_11, 1); +x_154 = lean_ctor_get(x_11, 3); +x_155 = lean_ctor_get(x_11, 4); +x_156 = lean_ctor_get(x_11, 5); +x_157 = lean_ctor_get(x_11, 6); +x_158 = lean_ctor_get(x_11, 7); +x_159 = lean_ctor_get(x_11, 8); +lean_inc(x_159); +lean_inc(x_158); +lean_inc(x_157); +lean_inc(x_156); +lean_inc(x_155); +lean_inc(x_154); +lean_inc(x_153); +lean_inc(x_152); +lean_dec(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_160 = l_Lean_Name_num___override(x_9, x_10); +x_161 = lean_unsigned_to_nat(1u); +x_162 = lean_nat_add(x_10, x_161); +lean_dec(x_10); +lean_ctor_set(x_7, 1, x_162); +x_163 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_163, 0, x_152); +lean_ctor_set(x_163, 1, x_153); +lean_ctor_set(x_163, 2, x_7); +lean_ctor_set(x_163, 3, x_154); +lean_ctor_set(x_163, 4, x_155); +lean_ctor_set(x_163, 5, x_156); +lean_ctor_set(x_163, 6, x_157); +lean_ctor_set(x_163, 7, x_158); +lean_ctor_set(x_163, 8, x_159); +x_164 = lean_st_ref_set(x_4, x_163); +x_165 = lean_st_ref_get(x_4); +x_166 = lean_ctor_get(x_165, 3); +lean_inc_ref(x_166); +lean_dec(x_165); +x_167 = l_Lean_DeclNameGenerator_mkChild(x_166); +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + lean_ctor_release(x_167, 1); + x_170 = x_167; +} else { + lean_dec_ref(x_167); + x_170 = lean_box(0); +} +x_171 = lean_st_ref_take(x_4); +x_172 = lean_ctor_get(x_171, 0); +lean_inc_ref(x_172); +x_173 = lean_ctor_get(x_171, 1); +lean_inc(x_173); +x_174 = lean_ctor_get(x_171, 2); +lean_inc_ref(x_174); +x_175 = lean_ctor_get(x_171, 4); +lean_inc_ref(x_175); +x_176 = lean_ctor_get(x_171, 5); +lean_inc_ref(x_176); +x_177 = lean_ctor_get(x_171, 6); +lean_inc_ref(x_177); +x_178 = lean_ctor_get(x_171, 7); +lean_inc_ref(x_178); +x_179 = lean_ctor_get(x_171, 8); +lean_inc_ref(x_179); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + lean_ctor_release(x_171, 2); + lean_ctor_release(x_171, 3); + lean_ctor_release(x_171, 4); + lean_ctor_release(x_171, 5); + lean_ctor_release(x_171, 6); + lean_ctor_release(x_171, 7); + lean_ctor_release(x_171, 8); + x_180 = x_171; +} else { + lean_dec_ref(x_171); + x_180 = lean_box(0); +} +if (lean_is_scalar(x_180)) { + x_181 = lean_alloc_ctor(0, 9, 0); +} else { + x_181 = x_180; +} +lean_ctor_set(x_181, 0, x_172); +lean_ctor_set(x_181, 1, x_173); +lean_ctor_set(x_181, 2, x_174); +lean_ctor_set(x_181, 3, x_169); +lean_ctor_set(x_181, 4, x_175); +lean_ctor_set(x_181, 5, x_176); +lean_ctor_set(x_181, 6, x_177); +lean_ctor_set(x_181, 7, x_178); +lean_ctor_set(x_181, 8, x_179); +x_182 = lean_st_ref_set(x_4, x_181); +x_183 = lean_st_ref_get(x_4); +x_184 = lean_io_get_num_heartbeats(); +x_185 = lean_ctor_get(x_183, 0); +lean_inc_ref(x_185); +x_186 = lean_ctor_get(x_183, 1); +lean_inc(x_186); +x_187 = lean_ctor_get(x_183, 4); +lean_inc_ref(x_187); +x_188 = lean_ctor_get(x_183, 5); +lean_inc_ref(x_188); +x_189 = lean_ctor_get(x_183, 6); +lean_inc_ref(x_189); +x_190 = lean_ctor_get(x_183, 7); +lean_inc_ref(x_190); +x_191 = lean_ctor_get(x_183, 8); +lean_inc_ref(x_191); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + lean_ctor_release(x_183, 2); + lean_ctor_release(x_183, 3); + lean_ctor_release(x_183, 4); + lean_ctor_release(x_183, 5); + lean_ctor_release(x_183, 6); + lean_ctor_release(x_183, 7); + lean_ctor_release(x_183, 8); + x_192 = x_183; +} else { + lean_dec_ref(x_183); + x_192 = lean_box(0); +} +x_193 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_193); +x_194 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_194); +x_195 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_195); +x_196 = lean_ctor_get(x_3, 3); +lean_inc(x_196); +x_197 = lean_ctor_get(x_3, 5); +lean_inc(x_197); +x_198 = lean_ctor_get(x_3, 6); +lean_inc(x_198); +x_199 = lean_ctor_get(x_3, 7); +lean_inc(x_199); +x_200 = lean_ctor_get(x_3, 8); +lean_inc(x_200); +x_201 = lean_ctor_get(x_3, 9); +lean_inc(x_201); +x_202 = lean_ctor_get(x_3, 10); +lean_inc(x_202); +x_203 = lean_ctor_get(x_3, 11); +lean_inc(x_203); +x_204 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +lean_dec_ref(x_3); +if (lean_is_scalar(x_170)) { + x_205 = lean_alloc_ctor(0, 2, 0); +} else { + x_205 = x_170; +} +lean_ctor_set(x_205, 0, x_160); +lean_ctor_set(x_205, 1, x_161); +if (lean_is_scalar(x_192)) { + x_206 = lean_alloc_ctor(0, 9, 0); +} else { + x_206 = x_192; +} +lean_ctor_set(x_206, 0, x_185); +lean_ctor_set(x_206, 1, x_186); +lean_ctor_set(x_206, 2, x_205); +lean_ctor_set(x_206, 3, x_168); +lean_ctor_set(x_206, 4, x_187); +lean_ctor_set(x_206, 5, x_188); +lean_ctor_set(x_206, 6, x_189); +lean_ctor_set(x_206, 7, x_190); +lean_ctor_set(x_206, 8, x_191); +x_207 = lean_nat_sub(x_184, x_200); +lean_dec(x_184); +x_208 = lean_box(x_204); +x_209 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_209, 0, x_206); +lean_closure_set(x_209, 1, x_207); +lean_closure_set(x_209, 2, x_1); +lean_closure_set(x_209, 3, x_195); +lean_closure_set(x_209, 4, x_193); +lean_closure_set(x_209, 5, x_194); +lean_closure_set(x_209, 6, x_196); +lean_closure_set(x_209, 7, x_197); +lean_closure_set(x_209, 8, x_198); +lean_closure_set(x_209, 9, x_199); +lean_closure_set(x_209, 10, x_200); +lean_closure_set(x_209, 11, x_201); +lean_closure_set(x_209, 12, x_202); +lean_closure_set(x_209, 13, x_203); +lean_closure_set(x_209, 14, x_2); +lean_closure_set(x_209, 15, x_208); +x_210 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_210, 0, x_209); +return x_210; +} +} +else +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; uint8_t x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_211 = lean_ctor_get(x_7, 0); +x_212 = lean_ctor_get(x_7, 1); +lean_inc(x_212); +lean_inc(x_211); +lean_dec(x_7); +x_213 = lean_st_ref_take(x_4); +x_214 = lean_ctor_get(x_213, 0); +lean_inc_ref(x_214); +x_215 = lean_ctor_get(x_213, 1); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 3); +lean_inc_ref(x_216); +x_217 = lean_ctor_get(x_213, 4); +lean_inc_ref(x_217); +x_218 = lean_ctor_get(x_213, 5); +lean_inc_ref(x_218); +x_219 = lean_ctor_get(x_213, 6); +lean_inc_ref(x_219); +x_220 = lean_ctor_get(x_213, 7); +lean_inc_ref(x_220); +x_221 = lean_ctor_get(x_213, 8); +lean_inc_ref(x_221); +if (lean_is_exclusive(x_213)) { + lean_ctor_release(x_213, 0); + lean_ctor_release(x_213, 1); + lean_ctor_release(x_213, 2); + lean_ctor_release(x_213, 3); + lean_ctor_release(x_213, 4); + lean_ctor_release(x_213, 5); + lean_ctor_release(x_213, 6); + lean_ctor_release(x_213, 7); + lean_ctor_release(x_213, 8); + x_222 = x_213; +} else { + lean_dec_ref(x_213); + x_222 = lean_box(0); +} +lean_inc(x_212); +lean_inc(x_211); +x_223 = l_Lean_Name_num___override(x_211, x_212); +x_224 = lean_unsigned_to_nat(1u); +x_225 = lean_nat_add(x_212, x_224); +lean_dec(x_212); +x_226 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_226, 0, x_211); +lean_ctor_set(x_226, 1, x_225); +if (lean_is_scalar(x_222)) { + x_227 = lean_alloc_ctor(0, 9, 0); +} else { + x_227 = x_222; +} +lean_ctor_set(x_227, 0, x_214); +lean_ctor_set(x_227, 1, x_215); +lean_ctor_set(x_227, 2, x_226); +lean_ctor_set(x_227, 3, x_216); +lean_ctor_set(x_227, 4, x_217); +lean_ctor_set(x_227, 5, x_218); +lean_ctor_set(x_227, 6, x_219); +lean_ctor_set(x_227, 7, x_220); +lean_ctor_set(x_227, 8, x_221); +x_228 = lean_st_ref_set(x_4, x_227); +x_229 = lean_st_ref_get(x_4); +x_230 = lean_ctor_get(x_229, 3); +lean_inc_ref(x_230); +lean_dec(x_229); +x_231 = l_Lean_DeclNameGenerator_mkChild(x_230); +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +x_233 = lean_ctor_get(x_231, 1); +lean_inc(x_233); +if (lean_is_exclusive(x_231)) { + lean_ctor_release(x_231, 0); + lean_ctor_release(x_231, 1); + x_234 = x_231; +} else { + lean_dec_ref(x_231); + x_234 = lean_box(0); +} +x_235 = lean_st_ref_take(x_4); +x_236 = lean_ctor_get(x_235, 0); +lean_inc_ref(x_236); +x_237 = lean_ctor_get(x_235, 1); +lean_inc(x_237); +x_238 = lean_ctor_get(x_235, 2); +lean_inc_ref(x_238); +x_239 = lean_ctor_get(x_235, 4); +lean_inc_ref(x_239); +x_240 = lean_ctor_get(x_235, 5); +lean_inc_ref(x_240); +x_241 = lean_ctor_get(x_235, 6); +lean_inc_ref(x_241); +x_242 = lean_ctor_get(x_235, 7); +lean_inc_ref(x_242); +x_243 = lean_ctor_get(x_235, 8); +lean_inc_ref(x_243); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + lean_ctor_release(x_235, 1); + lean_ctor_release(x_235, 2); + lean_ctor_release(x_235, 3); + lean_ctor_release(x_235, 4); + lean_ctor_release(x_235, 5); + lean_ctor_release(x_235, 6); + lean_ctor_release(x_235, 7); + lean_ctor_release(x_235, 8); + x_244 = x_235; +} else { + lean_dec_ref(x_235); + x_244 = lean_box(0); +} +if (lean_is_scalar(x_244)) { + x_245 = lean_alloc_ctor(0, 9, 0); +} else { + x_245 = x_244; +} +lean_ctor_set(x_245, 0, x_236); +lean_ctor_set(x_245, 1, x_237); +lean_ctor_set(x_245, 2, x_238); +lean_ctor_set(x_245, 3, x_233); +lean_ctor_set(x_245, 4, x_239); +lean_ctor_set(x_245, 5, x_240); +lean_ctor_set(x_245, 6, x_241); +lean_ctor_set(x_245, 7, x_242); +lean_ctor_set(x_245, 8, x_243); +x_246 = lean_st_ref_set(x_4, x_245); +x_247 = lean_st_ref_get(x_4); +x_248 = lean_io_get_num_heartbeats(); +x_249 = lean_ctor_get(x_247, 0); +lean_inc_ref(x_249); +x_250 = lean_ctor_get(x_247, 1); +lean_inc(x_250); +x_251 = lean_ctor_get(x_247, 4); +lean_inc_ref(x_251); +x_252 = lean_ctor_get(x_247, 5); +lean_inc_ref(x_252); +x_253 = lean_ctor_get(x_247, 6); +lean_inc_ref(x_253); +x_254 = lean_ctor_get(x_247, 7); +lean_inc_ref(x_254); +x_255 = lean_ctor_get(x_247, 8); +lean_inc_ref(x_255); +if (lean_is_exclusive(x_247)) { + lean_ctor_release(x_247, 0); + lean_ctor_release(x_247, 1); + lean_ctor_release(x_247, 2); + lean_ctor_release(x_247, 3); + lean_ctor_release(x_247, 4); + lean_ctor_release(x_247, 5); + lean_ctor_release(x_247, 6); + lean_ctor_release(x_247, 7); + lean_ctor_release(x_247, 8); + x_256 = x_247; +} else { + lean_dec_ref(x_247); + x_256 = lean_box(0); +} +x_257 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_257); +x_258 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_258); +x_259 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_259); +x_260 = lean_ctor_get(x_3, 3); +lean_inc(x_260); +x_261 = lean_ctor_get(x_3, 5); +lean_inc(x_261); +x_262 = lean_ctor_get(x_3, 6); +lean_inc(x_262); +x_263 = lean_ctor_get(x_3, 7); +lean_inc(x_263); +x_264 = lean_ctor_get(x_3, 8); +lean_inc(x_264); +x_265 = lean_ctor_get(x_3, 9); +lean_inc(x_265); +x_266 = lean_ctor_get(x_3, 10); +lean_inc(x_266); +x_267 = lean_ctor_get(x_3, 11); +lean_inc(x_267); +x_268 = lean_ctor_get_uint8(x_3, sizeof(void*)*14 + 1); +lean_dec_ref(x_3); +if (lean_is_scalar(x_234)) { + x_269 = lean_alloc_ctor(0, 2, 0); +} else { + x_269 = x_234; +} +lean_ctor_set(x_269, 0, x_223); +lean_ctor_set(x_269, 1, x_224); +if (lean_is_scalar(x_256)) { + x_270 = lean_alloc_ctor(0, 9, 0); +} else { + x_270 = x_256; +} +lean_ctor_set(x_270, 0, x_249); +lean_ctor_set(x_270, 1, x_250); +lean_ctor_set(x_270, 2, x_269); +lean_ctor_set(x_270, 3, x_232); +lean_ctor_set(x_270, 4, x_251); +lean_ctor_set(x_270, 5, x_252); +lean_ctor_set(x_270, 6, x_253); +lean_ctor_set(x_270, 7, x_254); +lean_ctor_set(x_270, 8, x_255); +x_271 = lean_nat_sub(x_248, x_264); +lean_dec(x_248); +x_272 = lean_box(x_268); +x_273 = lean_alloc_closure((void*)(l_Lean_Core_wrapAsync___redArg___lam__1___boxed), 18, 16); +lean_closure_set(x_273, 0, x_270); +lean_closure_set(x_273, 1, x_271); +lean_closure_set(x_273, 2, x_1); +lean_closure_set(x_273, 3, x_259); +lean_closure_set(x_273, 4, x_257); +lean_closure_set(x_273, 5, x_258); +lean_closure_set(x_273, 6, x_260); +lean_closure_set(x_273, 7, x_261); +lean_closure_set(x_273, 8, x_262); +lean_closure_set(x_273, 9, x_263); +lean_closure_set(x_273, 10, x_264); +lean_closure_set(x_273, 11, x_265); +lean_closure_set(x_273, 12, x_266); +lean_closure_set(x_273, 13, x_267); +lean_closure_set(x_273, 14, x_2); +lean_closure_set(x_273, 15, x_272); +x_274 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_274, 0, x_273); +return x_274; } } } @@ -13142,7 +13758,7 @@ goto block_26; block_17: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_Language_Snapshot_Diagnostics_ofMessageLog(x_9); +x_12 = l_Lean_Language_Snapshot_Diagnostics_ofMessageLog(x_10); x_13 = lean_box(0); x_14 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_14, 0, x_4); @@ -13168,8 +13784,8 @@ x_21 = lean_ctor_get(x_6, 0); x_22 = l_Lean_PersistentArray_isEmpty___redArg(x_21); if (x_22 == 0) { -x_9 = x_18; -x_10 = lean_box(0); +x_9 = lean_box(0); +x_10 = x_18; x_11 = x_22; goto block_17; } @@ -13179,8 +13795,8 @@ uint8_t x_23; x_23 = l_Array_isEmpty___redArg(x_8); if (x_23 == 0) { -x_9 = x_18; -x_10 = lean_box(0); +x_9 = lean_box(0); +x_10 = x_18; x_11 = x_23; goto block_17; } @@ -13200,8 +13816,8 @@ else { uint8_t x_25; x_25 = 0; -x_9 = x_18; -x_10 = lean_box(0); +x_9 = lean_box(0); +x_10 = x_18; x_11 = x_25; goto block_17; } @@ -13621,7 +14237,7 @@ return x_7; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logError___at___00Lean_Core_wrapAsyncAsSnapshot_spec__1_spec__9_spec__18(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; uint8_t x_91; uint8_t x_92; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_107; uint8_t x_123; +uint8_t x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_75; uint8_t x_76; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_86; lean_object* x_87; uint8_t x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; uint8_t x_92; uint8_t x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; uint8_t x_105; uint8_t x_107; uint8_t x_123; x_98 = 2; x_123 = l_Lean_instBEqMessageSeverity_beq(x_3, x_98); if (x_123 == 0) @@ -13656,15 +14272,15 @@ lean_ctor_set(x_23, 0, x_19); lean_ctor_set(x_23, 1, x_20); x_24 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_10); +lean_ctor_set(x_24, 1, x_13); x_25 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_25, 0, x_11); -lean_ctor_set(x_25, 1, x_14); +lean_ctor_set(x_25, 0, x_14); +lean_ctor_set(x_25, 1, x_11); lean_ctor_set(x_25, 2, x_12); -lean_ctor_set(x_25, 3, x_8); +lean_ctor_set(x_25, 3, x_9); lean_ctor_set(x_25, 4, x_24); -lean_ctor_set_uint8(x_25, sizeof(void*)*5, x_13); -lean_ctor_set_uint8(x_25, sizeof(void*)*5 + 1, x_9); +lean_ctor_set_uint8(x_25, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_25, sizeof(void*)*5 + 1, x_8); lean_ctor_set_uint8(x_25, sizeof(void*)*5 + 2, x_4); x_26 = l_Lean_MessageLog_add(x_25, x_22); lean_ctor_set(x_18, 6, x_26); @@ -13701,15 +14317,15 @@ lean_ctor_set(x_39, 0, x_19); lean_ctor_set(x_39, 1, x_20); x_40 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_10); +lean_ctor_set(x_40, 1, x_13); x_41 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_41, 0, x_11); -lean_ctor_set(x_41, 1, x_14); +lean_ctor_set(x_41, 0, x_14); +lean_ctor_set(x_41, 1, x_11); lean_ctor_set(x_41, 2, x_12); -lean_ctor_set(x_41, 3, x_8); +lean_ctor_set(x_41, 3, x_9); lean_ctor_set(x_41, 4, x_40); -lean_ctor_set_uint8(x_41, sizeof(void*)*5, x_13); -lean_ctor_set_uint8(x_41, sizeof(void*)*5 + 1, x_9); +lean_ctor_set_uint8(x_41, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_41, sizeof(void*)*5 + 1, x_8); lean_ctor_set_uint8(x_41, sizeof(void*)*5 + 2, x_4); x_42 = l_Lean_MessageLog_add(x_41, x_36); x_43 = lean_alloc_ctor(0, 9, 0); @@ -13739,10 +14355,10 @@ if (x_58 == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; x_59 = lean_ctor_get(x_57, 0); -lean_inc_ref(x_49); -x_60 = l_Lean_FileMap_toPosition(x_49, x_50); +lean_inc_ref(x_51); +x_60 = l_Lean_FileMap_toPosition(x_51, x_50); lean_dec(x_50); -x_61 = l_Lean_FileMap_toPosition(x_49, x_55); +x_61 = l_Lean_FileMap_toPosition(x_51, x_55); lean_dec(x_55); x_62 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_62, 0, x_61); @@ -13751,13 +14367,13 @@ if (x_53 == 0) { lean_free_object(x_57); lean_dec_ref(x_48); -x_8 = x_63; -x_9 = x_51; -x_10 = x_59; -x_11 = x_52; +x_8 = x_49; +x_9 = x_63; +x_10 = x_52; +x_11 = x_60; x_12 = x_62; -x_13 = x_54; -x_14 = x_60; +x_13 = x_59; +x_14 = x_54; x_15 = x_5; x_16 = x_6; x_17 = lean_box(0); @@ -13774,7 +14390,7 @@ lean_object* x_65; lean_dec_ref(x_62); lean_dec_ref(x_60); lean_dec(x_59); -lean_dec_ref(x_52); +lean_dec_ref(x_54); lean_dec_ref(x_5); x_65 = lean_box(0); lean_ctor_set(x_57, 0, x_65); @@ -13783,13 +14399,13 @@ return x_57; else { lean_free_object(x_57); -x_8 = x_63; -x_9 = x_51; -x_10 = x_59; -x_11 = x_52; +x_8 = x_49; +x_9 = x_63; +x_10 = x_52; +x_11 = x_60; x_12 = x_62; -x_13 = x_54; -x_14 = x_60; +x_13 = x_59; +x_14 = x_54; x_15 = x_5; x_16 = x_6; x_17 = lean_box(0); @@ -13803,10 +14419,10 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean x_66 = lean_ctor_get(x_57, 0); lean_inc(x_66); lean_dec(x_57); -lean_inc_ref(x_49); -x_67 = l_Lean_FileMap_toPosition(x_49, x_50); +lean_inc_ref(x_51); +x_67 = l_Lean_FileMap_toPosition(x_51, x_50); lean_dec(x_50); -x_68 = l_Lean_FileMap_toPosition(x_49, x_55); +x_68 = l_Lean_FileMap_toPosition(x_51, x_55); lean_dec(x_55); x_69 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_69, 0, x_68); @@ -13814,13 +14430,13 @@ x_70 = ((lean_object*)(l_Lean_useDiagnosticMsg___lam__2___closed__2)); if (x_53 == 0) { lean_dec_ref(x_48); -x_8 = x_70; -x_9 = x_51; -x_10 = x_66; -x_11 = x_52; +x_8 = x_49; +x_9 = x_70; +x_10 = x_52; +x_11 = x_67; x_12 = x_69; -x_13 = x_54; -x_14 = x_67; +x_13 = x_66; +x_14 = x_54; x_15 = x_5; x_16 = x_6; x_17 = lean_box(0); @@ -13837,7 +14453,7 @@ lean_object* x_72; lean_object* x_73; lean_dec_ref(x_69); lean_dec_ref(x_67); lean_dec(x_66); -lean_dec_ref(x_52); +lean_dec_ref(x_54); lean_dec_ref(x_5); x_72 = lean_box(0); x_73 = lean_alloc_ctor(0, 1, 0); @@ -13846,13 +14462,13 @@ return x_73; } else { -x_8 = x_70; -x_9 = x_51; -x_10 = x_66; -x_11 = x_52; +x_8 = x_49; +x_9 = x_70; +x_10 = x_52; +x_11 = x_67; x_12 = x_69; -x_13 = x_54; -x_14 = x_67; +x_13 = x_66; +x_14 = x_54; x_15 = x_5; x_16 = x_6; x_17 = lean_box(0); @@ -13864,17 +14480,17 @@ goto block_47; block_85: { lean_object* x_83; -x_83 = l_Lean_Syntax_getTailPos_x3f(x_77, x_81); -lean_dec(x_77); +x_83 = l_Lean_Syntax_getTailPos_x3f(x_80, x_78); +lean_dec(x_80); if (lean_obj_tag(x_83) == 0) { lean_inc(x_82); x_48 = x_75; x_49 = x_76; x_50 = x_82; -x_51 = x_78; -x_52 = x_79; -x_53 = x_80; +x_51 = x_77; +x_52 = x_78; +x_53 = x_79; x_54 = x_81; x_55 = x_82; goto block_74; @@ -13888,9 +14504,9 @@ lean_dec_ref(x_83); x_48 = x_75; x_49 = x_76; x_50 = x_82; -x_51 = x_78; -x_52 = x_79; -x_53 = x_80; +x_51 = x_77; +x_52 = x_78; +x_53 = x_79; x_54 = x_81; x_55 = x_84; goto block_74; @@ -13899,19 +14515,19 @@ goto block_74; block_97: { lean_object* x_93; lean_object* x_94; -x_93 = l_Lean_replaceRef(x_1, x_88); -lean_dec(x_88); -x_94 = l_Lean_Syntax_getPos_x3f(x_93, x_91); +x_93 = l_Lean_replaceRef(x_1, x_89); +lean_dec(x_89); +x_94 = l_Lean_Syntax_getPos_x3f(x_93, x_88); if (lean_obj_tag(x_94) == 0) { lean_object* x_95; x_95 = lean_unsigned_to_nat(0u); x_75 = x_86; -x_76 = x_87; -x_77 = x_93; -x_78 = x_92; -x_79 = x_89; -x_80 = x_90; +x_76 = x_92; +x_77 = x_87; +x_78 = x_88; +x_79 = x_90; +x_80 = x_93; x_81 = x_91; x_82 = x_95; goto block_85; @@ -13923,11 +14539,11 @@ x_96 = lean_ctor_get(x_94, 0); lean_inc(x_96); lean_dec_ref(x_94); x_75 = x_86; -x_76 = x_87; -x_77 = x_93; -x_78 = x_92; -x_79 = x_89; -x_80 = x_90; +x_76 = x_92; +x_77 = x_87; +x_78 = x_88; +x_79 = x_90; +x_80 = x_93; x_81 = x_91; x_82 = x_96; goto block_85; @@ -13937,23 +14553,23 @@ block_106: { if (x_105 == 0) { -x_86 = x_100; +x_86 = x_102; x_87 = x_99; -x_88 = x_101; -x_89 = x_102; -x_90 = x_103; -x_91 = x_104; +x_88 = x_104; +x_89 = x_100; +x_90 = x_101; +x_91 = x_103; x_92 = x_3; goto block_97; } else { -x_86 = x_100; +x_86 = x_102; x_87 = x_99; -x_88 = x_101; -x_89 = x_102; -x_90 = x_103; -x_91 = x_104; +x_88 = x_104; +x_89 = x_100; +x_90 = x_101; +x_91 = x_103; x_92 = x_98; goto block_97; } @@ -13981,10 +14597,10 @@ lean_inc_ref(x_108); lean_inc(x_111); lean_inc_ref(x_109); x_99 = x_109; -x_100 = x_115; -x_101 = x_111; -x_102 = x_108; -x_103 = x_112; +x_100 = x_111; +x_101 = x_112; +x_102 = x_115; +x_103 = x_108; x_104 = x_107; x_105 = x_117; goto block_106; @@ -13998,10 +14614,10 @@ lean_inc_ref(x_108); lean_inc(x_111); lean_inc_ref(x_109); x_99 = x_109; -x_100 = x_115; -x_101 = x_111; -x_102 = x_108; -x_103 = x_112; +x_100 = x_111; +x_101 = x_112; +x_102 = x_115; +x_103 = x_108; x_104 = x_107; x_105 = x_119; goto block_106; @@ -16969,7 +17585,7 @@ block_29: { lean_object* x_28; lean_dec(x_24); -x_28 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Core_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_25, x_26, x_27); +x_28 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Core_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_26, x_25, x_27); lean_dec(x_27); x_15 = x_28; goto block_23; @@ -16977,23 +17593,23 @@ goto block_23; block_35: { uint8_t x_34; -x_34 = lean_nat_dec_le(x_33, x_32); +x_34 = lean_nat_dec_le(x_33, x_30); if (x_34 == 0) { -lean_dec(x_32); +lean_dec(x_30); lean_inc(x_33); -x_24 = x_30; -x_25 = x_31; -x_26 = x_33; +x_24 = x_31; +x_25 = x_33; +x_26 = x_32; x_27 = x_33; goto block_29; } else { -x_24 = x_30; -x_25 = x_31; -x_26 = x_33; -x_27 = x_32; +x_24 = x_31; +x_25 = x_33; +x_26 = x_32; +x_27 = x_30; goto block_29; } } @@ -17011,17 +17627,17 @@ x_41 = lean_nat_dec_le(x_11, x_40); if (x_41 == 0) { lean_inc(x_40); -x_30 = x_37; -x_31 = x_36; -x_32 = x_40; +x_30 = x_40; +x_31 = x_37; +x_32 = x_36; x_33 = x_40; goto block_35; } else { -x_30 = x_37; -x_31 = x_36; -x_32 = x_40; +x_30 = x_40; +x_31 = x_37; +x_32 = x_36; x_33 = x_11; goto block_35; } @@ -17167,7 +17783,7 @@ block_78: { lean_object* x_77; lean_dec(x_73); -x_77 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Core_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_74, x_75, x_76); +x_77 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Core_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_75, x_74, x_76); lean_dec(x_76); x_65 = x_77; goto block_72; @@ -17175,23 +17791,23 @@ goto block_72; block_84: { uint8_t x_83; -x_83 = lean_nat_dec_le(x_82, x_81); +x_83 = lean_nat_dec_le(x_82, x_79); if (x_83 == 0) { -lean_dec(x_81); +lean_dec(x_79); lean_inc(x_82); -x_73 = x_79; -x_74 = x_80; -x_75 = x_82; +x_73 = x_80; +x_74 = x_82; +x_75 = x_81; x_76 = x_82; goto block_78; } else { -x_73 = x_79; -x_74 = x_80; -x_75 = x_82; -x_76 = x_81; +x_73 = x_80; +x_74 = x_82; +x_75 = x_81; +x_76 = x_79; goto block_78; } } @@ -17209,17 +17825,17 @@ x_90 = lean_nat_dec_le(x_61, x_89); if (x_90 == 0) { lean_inc(x_89); -x_79 = x_86; -x_80 = x_85; -x_81 = x_89; +x_79 = x_89; +x_80 = x_86; +x_81 = x_85; x_82 = x_89; goto block_84; } else { -x_79 = x_86; -x_80 = x_85; -x_81 = x_89; +x_79 = x_89; +x_80 = x_86; +x_81 = x_85; x_82 = x_61; goto block_84; } @@ -18216,7 +18832,7 @@ block_71: { lean_object* x_59; double x_60; double x_61; double x_62; double x_63; double x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; lean_object* x_70; x_59 = lean_io_mono_nanos_now(); -x_60 = lean_float_of_nat(x_56); +x_60 = lean_float_of_nat(x_55); x_61 = l_Lean_Core_wrapAsyncAsSnapshot___redArg___lam__1___closed__3; x_62 = lean_float_div(x_60, x_61); x_63 = lean_float_of_nat(x_59); @@ -18233,7 +18849,7 @@ x_69 = lean_unbox(x_53); lean_dec(x_53); lean_inc(x_5); lean_inc_ref(x_4); -x_70 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_51, x_49, x_54, x_48, x_69, x_55, x_3, x_68, x_4, x_5); +x_70 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_51, x_49, x_54, x_48, x_69, x_56, x_3, x_68, x_4, x_5); x_32 = x_70; goto block_34; } @@ -18241,7 +18857,7 @@ block_85: { lean_object* x_76; double x_77; double x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; x_76 = lean_io_get_num_heartbeats(); -x_77 = lean_float_of_nat(x_73); +x_77 = lean_float_of_nat(x_72); x_78 = lean_float_of_nat(x_76); x_79 = lean_box_float(x_77); x_80 = lean_box_float(x_78); @@ -18255,7 +18871,7 @@ x_83 = lean_unbox(x_53); lean_dec(x_53); lean_inc(x_5); lean_inc_ref(x_4); -x_84 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_51, x_49, x_54, x_48, x_83, x_72, x_3, x_82, x_4, x_5); +x_84 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_51, x_49, x_54, x_48, x_83, x_73, x_3, x_82, x_4, x_5); x_32 = x_84; goto block_34; } @@ -18282,8 +18898,8 @@ x_92 = !lean_is_exclusive(x_91); if (x_92 == 0) { lean_ctor_set_tag(x_91, 1); -x_55 = x_87; -x_56 = x_90; +x_55 = x_90; +x_56 = x_87; x_57 = x_91; x_58 = lean_box(0); goto block_71; @@ -18296,8 +18912,8 @@ lean_inc(x_93); lean_dec(x_91); x_94 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_94, 0, x_93); -x_55 = x_87; -x_56 = x_90; +x_55 = x_90; +x_56 = x_87; x_57 = x_94; x_58 = lean_box(0); goto block_71; @@ -18310,8 +18926,8 @@ x_95 = !lean_is_exclusive(x_91); if (x_95 == 0) { lean_ctor_set_tag(x_91, 0); -x_55 = x_87; -x_56 = x_90; +x_55 = x_90; +x_56 = x_87; x_57 = x_91; x_58 = lean_box(0); goto block_71; @@ -18324,8 +18940,8 @@ lean_inc(x_96); lean_dec(x_91); x_97 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_97, 0, x_96); -x_55 = x_87; -x_56 = x_90; +x_55 = x_90; +x_56 = x_87; x_57 = x_97; x_58 = lean_box(0); goto block_71; @@ -18346,8 +18962,8 @@ x_100 = !lean_is_exclusive(x_99); if (x_100 == 0) { lean_ctor_set_tag(x_99, 1); -x_72 = x_87; -x_73 = x_98; +x_72 = x_98; +x_73 = x_87; x_74 = x_99; x_75 = lean_box(0); goto block_85; @@ -18360,8 +18976,8 @@ lean_inc(x_101); lean_dec(x_99); x_102 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_102, 0, x_101); -x_72 = x_87; -x_73 = x_98; +x_72 = x_98; +x_73 = x_87; x_74 = x_102; x_75 = lean_box(0); goto block_85; @@ -18374,8 +18990,8 @@ x_103 = !lean_is_exclusive(x_99); if (x_103 == 0) { lean_ctor_set_tag(x_99, 0); -x_72 = x_87; -x_73 = x_98; +x_72 = x_98; +x_73 = x_87; x_74 = x_99; x_75 = lean_box(0); goto block_85; @@ -18388,8 +19004,8 @@ lean_inc(x_104); lean_dec(x_99); x_105 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_105, 0, x_104); -x_72 = x_87; -x_73 = x_98; +x_72 = x_98; +x_73 = x_87; x_74 = x_105; x_75 = lean_box(0); goto block_85; @@ -18484,7 +19100,7 @@ block_147: { lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; lean_object* x_146; x_135 = lean_io_mono_nanos_now(); -x_136 = lean_float_of_nat(x_132); +x_136 = lean_float_of_nat(x_131); x_137 = l_Lean_Core_wrapAsyncAsSnapshot___redArg___lam__1___closed__3; x_138 = lean_float_div(x_136, x_137); x_139 = lean_float_of_nat(x_135); @@ -18501,7 +19117,7 @@ x_145 = lean_unbox(x_129); lean_dec(x_129); lean_inc(x_5); lean_inc_ref(x_4); -x_146 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_127, x_125, x_130, x_124, x_145, x_131, x_3, x_144, x_4, x_5); +x_146 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_127, x_125, x_130, x_124, x_145, x_132, x_3, x_144, x_4, x_5); x_32 = x_146; goto block_34; } @@ -18509,7 +19125,7 @@ block_161: { lean_object* x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; uint8_t x_159; lean_object* x_160; x_152 = lean_io_get_num_heartbeats(); -x_153 = lean_float_of_nat(x_149); +x_153 = lean_float_of_nat(x_148); x_154 = lean_float_of_nat(x_152); x_155 = lean_box_float(x_153); x_156 = lean_box_float(x_154); @@ -18523,7 +19139,7 @@ x_159 = lean_unbox(x_129); lean_dec(x_129); lean_inc(x_5); lean_inc_ref(x_4); -x_160 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_127, x_125, x_130, x_124, x_159, x_148, x_3, x_158, x_4, x_5); +x_160 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_127, x_125, x_130, x_124, x_159, x_149, x_3, x_158, x_4, x_5); x_32 = x_160; goto block_34; } @@ -18562,8 +19178,8 @@ if (lean_is_scalar(x_169)) { lean_ctor_set_tag(x_170, 1); } lean_ctor_set(x_170, 0, x_168); -x_131 = x_163; -x_132 = x_166; +x_131 = x_166; +x_132 = x_163; x_133 = x_170; x_134 = lean_box(0); goto block_147; @@ -18587,8 +19203,8 @@ if (lean_is_scalar(x_172)) { lean_ctor_set_tag(x_173, 0); } lean_ctor_set(x_173, 0, x_171); -x_131 = x_163; -x_132 = x_166; +x_131 = x_166; +x_132 = x_163; x_133 = x_173; x_134 = lean_box(0); goto block_147; @@ -18620,8 +19236,8 @@ if (lean_is_scalar(x_177)) { lean_ctor_set_tag(x_178, 1); } lean_ctor_set(x_178, 0, x_176); -x_148 = x_163; -x_149 = x_174; +x_148 = x_174; +x_149 = x_163; x_150 = x_178; x_151 = lean_box(0); goto block_161; @@ -18645,8 +19261,8 @@ if (lean_is_scalar(x_180)) { lean_ctor_set_tag(x_181, 0); } lean_ctor_set(x_181, 0, x_179); -x_148 = x_163; -x_149 = x_174; +x_148 = x_174; +x_149 = x_163; x_150 = x_181; x_151 = lean_box(0); goto block_161; @@ -20713,7 +21329,7 @@ block_37: { lean_object* x_28; double x_29; double x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; x_28 = lean_io_get_num_heartbeats(); -x_29 = lean_float_of_nat(x_24); +x_29 = lean_float_of_nat(x_25); x_30 = lean_float_of_nat(x_28); x_31 = lean_box_float(x_29); x_32 = lean_box_float(x_30); @@ -20725,7 +21341,7 @@ lean_ctor_set(x_34, 0, x_26); lean_ctor_set(x_34, 1, x_33); x_35 = lean_unbox(x_22); lean_dec(x_22); -x_36 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_20, x_10, x_1, x_9, x_35, x_25, x_23, x_34, x_3, x_4); +x_36 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Core_wrapAsyncAsSnapshot_spec__4___redArg(x_20, x_10, x_1, x_9, x_35, x_24, x_23, x_34, x_3, x_4); lean_dec_ref(x_9); return x_36; } @@ -20843,8 +21459,8 @@ x_73 = !lean_is_exclusive(x_72); if (x_73 == 0) { lean_ctor_set_tag(x_72, 1); -x_24 = x_69; -x_25 = x_56; +x_24 = x_56; +x_25 = x_69; x_26 = x_72; x_27 = lean_box(0); goto block_37; @@ -20857,8 +21473,8 @@ lean_inc(x_74); lean_dec(x_72); x_75 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_75, 0, x_74); -x_24 = x_69; -x_25 = x_56; +x_24 = x_56; +x_25 = x_69; x_26 = x_75; x_27 = lean_box(0); goto block_37; @@ -20871,8 +21487,8 @@ x_76 = !lean_is_exclusive(x_72); if (x_76 == 0) { lean_ctor_set_tag(x_72, 0); -x_24 = x_69; -x_25 = x_56; +x_24 = x_56; +x_25 = x_69; x_26 = x_72; x_27 = lean_box(0); goto block_37; @@ -20885,8 +21501,8 @@ lean_inc(x_77); lean_dec(x_72); x_78 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_78, 0, x_77); -x_24 = x_69; -x_25 = x_56; +x_24 = x_56; +x_25 = x_69; x_26 = x_78; x_27 = lean_box(0); goto block_37; @@ -22541,7 +23157,7 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_ImportM_runCoreM___redArg(lean_object* x_1, lean_object* x_2) { _start: { -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; 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; lean_object* x_21; uint8_t 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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_171; uint8_t x_190; +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; 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; 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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_171; uint8_t x_190; x_4 = lean_unsigned_to_nat(0u); x_5 = l_Lean_Core_instInhabitedCache_default___closed__2; x_6 = l_Lean_ImportM_runCoreM___redArg___closed__0; @@ -22628,8 +23244,8 @@ goto block_189; block_67: { lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = l_Lean_Option_get___at___00Lean_Core_getMaxHeartbeats_spec__0(x_9, x_21); -lean_dec_ref(x_21); +x_38 = l_Lean_Option_get___at___00Lean_Core_getMaxHeartbeats_spec__0(x_9, x_22); +lean_dec_ref(x_22); lean_inc_ref(x_9); x_39 = lean_alloc_ctor(0, 14, 2); lean_ctor_set(x_39, 0, x_23); @@ -22646,7 +23262,7 @@ lean_ctor_set(x_39, 10, x_31); lean_ctor_set(x_39, 11, x_32); lean_ctor_set(x_39, 12, x_33); lean_ctor_set(x_39, 13, x_35); -lean_ctor_set_uint8(x_39, sizeof(void*)*14, x_22); +lean_ctor_set_uint8(x_39, sizeof(void*)*14, x_21); lean_ctor_set_uint8(x_39, sizeof(void*)*14 + 1, x_34); x_40 = lean_apply_3(x_1, x_39, x_36, lean_box(0)); if (lean_obj_tag(x_40) == 0) @@ -22799,7 +23415,7 @@ block_110: if (x_92 == 0) { lean_object* x_93; uint8_t x_94; -x_93 = lean_st_ref_take(x_88); +x_93 = lean_st_ref_take(x_91); x_94 = !lean_is_exclusive(x_93); if (x_94 == 0) { @@ -22807,14 +23423,14 @@ lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; x_95 = lean_ctor_get(x_93, 0); x_96 = lean_ctor_get(x_93, 5); lean_dec(x_96); -x_97 = l_Lean_Kernel_enableDiag(x_95, x_89); +x_97 = l_Lean_Kernel_enableDiag(x_95, x_87); lean_ctor_set(x_93, 5, x_5); lean_ctor_set(x_93, 0, x_97); -x_98 = lean_st_ref_set(x_88, x_93); +x_98 = lean_st_ref_set(x_91, x_93); x_68 = x_87; -x_69 = x_89; -x_70 = x_90; -x_71 = x_88; +x_69 = x_90; +x_70 = x_89; +x_71 = x_91; x_72 = lean_box(0); goto block_86; } @@ -22838,7 +23454,7 @@ lean_inc(x_101); lean_inc(x_100); lean_inc(x_99); lean_dec(x_93); -x_107 = l_Lean_Kernel_enableDiag(x_99, x_89); +x_107 = l_Lean_Kernel_enableDiag(x_99, x_87); x_108 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_100); @@ -22849,11 +23465,11 @@ lean_ctor_set(x_108, 5, x_5); lean_ctor_set(x_108, 6, x_104); lean_ctor_set(x_108, 7, x_105); lean_ctor_set(x_108, 8, x_106); -x_109 = lean_st_ref_set(x_88, x_108); +x_109 = lean_st_ref_set(x_91, x_108); x_68 = x_87; -x_69 = x_89; -x_70 = x_90; -x_71 = x_88; +x_69 = x_90; +x_70 = x_89; +x_71 = x_91; x_72 = lean_box(0); goto block_86; } @@ -22861,9 +23477,9 @@ goto block_86; else { x_68 = x_87; -x_69 = x_89; -x_70 = x_90; -x_71 = x_88; +x_69 = x_90; +x_70 = x_89; +x_71 = x_91; x_72 = lean_box(0); goto block_86; } @@ -22921,8 +23537,8 @@ if (x_150 == 0) if (x_149 == 0) { lean_dec_ref(x_126); -x_21 = x_147; -x_22 = x_149; +x_21 = x_149; +x_22 = x_147; x_23 = x_131; x_24 = x_132; x_25 = x_133; @@ -22954,11 +23570,11 @@ lean_dec(x_134); lean_dec(x_133); lean_dec_ref(x_132); lean_dec_ref(x_131); -x_87 = x_147; -x_88 = x_127; -x_89 = x_149; -x_90 = x_126; -x_91 = lean_box(0); +x_87 = x_149; +x_88 = lean_box(0); +x_89 = x_126; +x_90 = x_147; +x_91 = x_127; x_92 = x_150; goto block_110; } @@ -22977,11 +23593,11 @@ lean_dec(x_134); lean_dec(x_133); lean_dec_ref(x_132); lean_dec_ref(x_131); -x_87 = x_147; -x_88 = x_127; -x_89 = x_149; -x_90 = x_126; -x_91 = lean_box(0); +x_87 = x_149; +x_88 = lean_box(0); +x_89 = x_126; +x_90 = x_147; +x_91 = x_127; x_92 = x_149; goto block_110; } @@ -23057,8 +23673,8 @@ if (x_169 == 0) if (x_168 == 0) { lean_dec_ref(x_167); -x_21 = x_165; -x_22 = x_168; +x_21 = x_168; +x_22 = x_165; x_23 = x_151; x_24 = x_152; x_25 = x_153; @@ -23090,11 +23706,11 @@ lean_dec(x_154); lean_dec(x_153); lean_dec_ref(x_152); lean_dec_ref(x_151); -x_87 = x_165; -x_88 = x_127; -x_89 = x_168; -x_90 = x_167; -x_91 = lean_box(0); +x_87 = x_168; +x_88 = lean_box(0); +x_89 = x_167; +x_90 = x_165; +x_91 = x_127; x_92 = x_169; goto block_110; } @@ -23113,11 +23729,11 @@ lean_dec(x_154); lean_dec(x_153); lean_dec_ref(x_152); lean_dec_ref(x_151); -x_87 = x_165; -x_88 = x_127; -x_89 = x_168; -x_90 = x_167; -x_91 = lean_box(0); +x_87 = x_168; +x_88 = lean_box(0); +x_89 = x_167; +x_90 = x_165; +x_91 = x_127; x_92 = x_168; goto block_110; } diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 225a6b680e..a96e1debd9 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -801,15 +801,15 @@ static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_ lean_object* l_Lean_addBuiltinDocString(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_docString__1(); LEAN_EXPORT lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_docString__1___boxed(lean_object*); -static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(359) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(361) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__0 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(371) << 1) | 1)),((lean_object*)(((size_t)(127) << 1) | 1))}}; +static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(373) << 1) | 1)),((lean_object*)(((size_t)(127) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__1 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__1_value; static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*4 + 0, .m_other = 4, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__0_value),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__1_value),((lean_object*)(((size_t)(127) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__2 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(370) << 1) | 1)),((lean_object*)(((size_t)(26) << 1) | 1))}}; +static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(372) << 1) | 1)),((lean_object*)(((size_t)(26) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__3 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__3_value; -static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(370) << 1) | 1)),((lean_object*)(((size_t)(46) << 1) | 1))}}; +static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(372) << 1) | 1)),((lean_object*)(((size_t)(46) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__4 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__4_value; static const lean_ctor_object l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*4 + 0, .m_other = 4, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__3_value),((lean_object*)(((size_t)(26) << 1) | 1)),((lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__4_value),((lean_object*)(((size_t)(46) << 1) | 1))}}; static const lean_object* l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__5 = (const lean_object*)&l_Lean_Elab_Command_commandElabAttribute___regBuiltin_Lean_Elab_Command_commandElabAttribute_declRange__3___closed__5_value; @@ -11064,108 +11064,94 @@ return x_6; LEAN_EXPORT lean_object* l_Lean_Elab_Command_wrapAsync___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +lean_object* x_6; lean_object* x_7; uint8_t x_8; x_6 = lean_st_ref_get(x_4); -x_7 = lean_ctor_get(x_6, 7); +x_7 = lean_ctor_get(x_6, 6); lean_inc_ref(x_7); lean_dec(x_6); -x_8 = l_Lean_DeclNameGenerator_mkChild(x_7); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); -lean_dec_ref(x_8); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); x_11 = lean_st_ref_take(x_4); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_13 = lean_ctor_get(x_11, 7); +lean_object* x_13; 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; +x_13 = lean_ctor_get(x_11, 6); lean_dec(x_13); -lean_ctor_set(x_11, 7, x_10); -x_14 = lean_st_ref_set(x_4, x_11); -x_15 = lean_st_ref_get(x_4); -x_16 = !lean_is_exclusive(x_3); -if (x_16 == 0) +lean_inc(x_10); +lean_inc(x_9); +x_14 = l_Lean_Name_num___override(x_9, x_10); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_add(x_10, x_15); +lean_dec(x_10); +lean_ctor_set(x_7, 1, x_16); +lean_ctor_set(x_11, 6, x_7); +x_17 = lean_st_ref_set(x_4, x_11); +x_18 = lean_st_ref_get(x_4); +x_19 = lean_ctor_get(x_18, 7); +lean_inc_ref(x_19); +lean_dec(x_18); +x_20 = l_Lean_DeclNameGenerator_mkChild(x_19); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) { -lean_object* x_17; uint8_t x_18; -x_17 = lean_ctor_get(x_3, 9); -lean_dec(x_17); -x_18 = !lean_is_exclusive(x_15); -if (x_18 == 0) +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_ctor_get(x_20, 1); +x_24 = lean_st_ref_take(x_4); +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_15, 7); -lean_dec(x_19); +lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_26 = lean_ctor_get(x_24, 7); +lean_dec(x_26); +lean_ctor_set(x_24, 7, x_23); +x_27 = lean_st_ref_set(x_4, x_24); +x_28 = lean_st_ref_get(x_4); +x_29 = !lean_is_exclusive(x_3); +if (x_29 == 0) +{ +lean_object* x_30; uint8_t x_31; +x_30 = lean_ctor_get(x_3, 9); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_28); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = lean_ctor_get(x_28, 7); +lean_dec(x_32); +x_33 = lean_ctor_get(x_28, 6); +lean_dec(x_33); lean_ctor_set(x_3, 9, x_2); -lean_ctor_set(x_15, 7, x_9); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); -lean_closure_set(x_20, 0, x_15); -lean_closure_set(x_20, 1, x_1); -lean_closure_set(x_20, 2, x_3); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -return x_21; +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_28, 7, x_22); +lean_ctor_set(x_28, 6, x_20); +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_34, 0, x_28); +lean_closure_set(x_34, 1, x_1); +lean_closure_set(x_34, 2, x_3); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +return x_35; } else { -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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_22 = lean_ctor_get(x_15, 0); -x_23 = lean_ctor_get(x_15, 1); -x_24 = lean_ctor_get(x_15, 2); -x_25 = lean_ctor_get(x_15, 3); -x_26 = lean_ctor_get(x_15, 4); -x_27 = lean_ctor_get(x_15, 5); -x_28 = lean_ctor_get(x_15, 6); -x_29 = lean_ctor_get(x_15, 8); -x_30 = lean_ctor_get(x_15, 9); -x_31 = lean_ctor_get(x_15, 10); -lean_inc(x_31); -lean_inc(x_30); -lean_inc(x_29); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_15); -lean_ctor_set(x_3, 9, x_2); -x_32 = lean_alloc_ctor(0, 11, 0); -lean_ctor_set(x_32, 0, x_22); -lean_ctor_set(x_32, 1, x_23); -lean_ctor_set(x_32, 2, x_24); -lean_ctor_set(x_32, 3, x_25); -lean_ctor_set(x_32, 4, x_26); -lean_ctor_set(x_32, 5, x_27); -lean_ctor_set(x_32, 6, x_28); -lean_ctor_set(x_32, 7, x_9); -lean_ctor_set(x_32, 8, x_29); -lean_ctor_set(x_32, 9, x_30); -lean_ctor_set(x_32, 10, x_31); -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); -lean_closure_set(x_33, 0, x_32); -lean_closure_set(x_33, 1, x_1); -lean_closure_set(x_33, 2, x_3); -x_34 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_34, 0, x_33); -return x_34; -} -} -else -{ -lean_object* x_35; 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; uint8_t x_44; lean_object* x_45; lean_object* x_46; 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; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_35 = lean_ctor_get(x_3, 0); -x_36 = lean_ctor_get(x_3, 1); -x_37 = lean_ctor_get(x_3, 2); -x_38 = lean_ctor_get(x_3, 3); -x_39 = lean_ctor_get(x_3, 4); -x_40 = lean_ctor_get(x_3, 5); -x_41 = lean_ctor_get(x_3, 6); -x_42 = lean_ctor_get(x_3, 7); -x_43 = lean_ctor_get(x_3, 8); -x_44 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +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; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_36 = lean_ctor_get(x_28, 0); +x_37 = lean_ctor_get(x_28, 1); +x_38 = lean_ctor_get(x_28, 2); +x_39 = lean_ctor_get(x_28, 3); +x_40 = lean_ctor_get(x_28, 4); +x_41 = lean_ctor_get(x_28, 5); +x_42 = lean_ctor_get(x_28, 8); +x_43 = lean_ctor_get(x_28, 9); +x_44 = lean_ctor_get(x_28, 10); +lean_inc(x_44); lean_inc(x_43); lean_inc(x_42); lean_inc(x_41); @@ -11174,139 +11160,185 @@ lean_inc(x_39); lean_inc(x_38); lean_inc(x_37); lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_3); -x_45 = lean_ctor_get(x_15, 0); -lean_inc_ref(x_45); -x_46 = lean_ctor_get(x_15, 1); -lean_inc_ref(x_46); -x_47 = lean_ctor_get(x_15, 2); -lean_inc(x_47); -x_48 = lean_ctor_get(x_15, 3); -lean_inc(x_48); -x_49 = lean_ctor_get(x_15, 4); -lean_inc(x_49); -x_50 = lean_ctor_get(x_15, 5); -lean_inc(x_50); -x_51 = lean_ctor_get(x_15, 6); -lean_inc_ref(x_51); -x_52 = lean_ctor_get(x_15, 8); -lean_inc_ref(x_52); -x_53 = lean_ctor_get(x_15, 9); -lean_inc_ref(x_53); -x_54 = lean_ctor_get(x_15, 10); -lean_inc_ref(x_54); -if (lean_is_exclusive(x_15)) { - lean_ctor_release(x_15, 0); - lean_ctor_release(x_15, 1); - lean_ctor_release(x_15, 2); - lean_ctor_release(x_15, 3); - lean_ctor_release(x_15, 4); - lean_ctor_release(x_15, 5); - lean_ctor_release(x_15, 6); - lean_ctor_release(x_15, 7); - lean_ctor_release(x_15, 8); - lean_ctor_release(x_15, 9); - lean_ctor_release(x_15, 10); - x_55 = x_15; -} else { - lean_dec_ref(x_15); - x_55 = lean_box(0); -} -x_56 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_56, 0, x_35); -lean_ctor_set(x_56, 1, x_36); -lean_ctor_set(x_56, 2, x_37); -lean_ctor_set(x_56, 3, x_38); -lean_ctor_set(x_56, 4, x_39); -lean_ctor_set(x_56, 5, x_40); -lean_ctor_set(x_56, 6, x_41); -lean_ctor_set(x_56, 7, x_42); -lean_ctor_set(x_56, 8, x_43); -lean_ctor_set(x_56, 9, x_2); -lean_ctor_set_uint8(x_56, sizeof(void*)*10, x_44); -if (lean_is_scalar(x_55)) { - x_57 = lean_alloc_ctor(0, 11, 0); -} else { - x_57 = x_55; -} -lean_ctor_set(x_57, 0, x_45); -lean_ctor_set(x_57, 1, x_46); -lean_ctor_set(x_57, 2, x_47); -lean_ctor_set(x_57, 3, x_48); -lean_ctor_set(x_57, 4, x_49); -lean_ctor_set(x_57, 5, x_50); -lean_ctor_set(x_57, 6, x_51); -lean_ctor_set(x_57, 7, x_9); -lean_ctor_set(x_57, 8, x_52); -lean_ctor_set(x_57, 9, x_53); -lean_ctor_set(x_57, 10, x_54); -x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); -lean_closure_set(x_58, 0, x_57); -lean_closure_set(x_58, 1, x_1); -lean_closure_set(x_58, 2, x_56); -x_59 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_59, 0, x_58); -return x_59; +lean_dec(x_28); +lean_ctor_set(x_3, 9, x_2); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +x_45 = lean_alloc_ctor(0, 11, 0); +lean_ctor_set(x_45, 0, x_36); +lean_ctor_set(x_45, 1, x_37); +lean_ctor_set(x_45, 2, x_38); +lean_ctor_set(x_45, 3, x_39); +lean_ctor_set(x_45, 4, x_40); +lean_ctor_set(x_45, 5, x_41); +lean_ctor_set(x_45, 6, x_20); +lean_ctor_set(x_45, 7, x_22); +lean_ctor_set(x_45, 8, x_42); +lean_ctor_set(x_45, 9, x_43); +lean_ctor_set(x_45, 10, x_44); +x_46 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_46, 0, x_45); +lean_closure_set(x_46, 1, x_1); +lean_closure_set(x_46, 2, x_3); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; } } else { -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; 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; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t 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; -x_60 = lean_ctor_get(x_11, 0); -x_61 = lean_ctor_get(x_11, 1); -x_62 = lean_ctor_get(x_11, 2); -x_63 = lean_ctor_get(x_11, 3); -x_64 = lean_ctor_get(x_11, 4); -x_65 = lean_ctor_get(x_11, 5); -x_66 = lean_ctor_get(x_11, 6); -x_67 = lean_ctor_get(x_11, 8); -x_68 = lean_ctor_get(x_11, 9); -x_69 = lean_ctor_get(x_11, 10); -lean_inc(x_69); -lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); +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; uint8_t 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; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_48 = lean_ctor_get(x_3, 0); +x_49 = lean_ctor_get(x_3, 1); +x_50 = lean_ctor_get(x_3, 2); +x_51 = lean_ctor_get(x_3, 3); +x_52 = lean_ctor_get(x_3, 4); +x_53 = lean_ctor_get(x_3, 5); +x_54 = lean_ctor_get(x_3, 6); +x_55 = lean_ctor_get(x_3, 7); +x_56 = lean_ctor_get(x_3, 8); +x_57 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +lean_inc(x_56); +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_dec(x_3); +x_58 = lean_ctor_get(x_28, 0); +lean_inc_ref(x_58); +x_59 = lean_ctor_get(x_28, 1); +lean_inc_ref(x_59); +x_60 = lean_ctor_get(x_28, 2); lean_inc(x_60); -lean_dec(x_11); -x_70 = lean_alloc_ctor(0, 11, 0); -lean_ctor_set(x_70, 0, x_60); -lean_ctor_set(x_70, 1, x_61); -lean_ctor_set(x_70, 2, x_62); -lean_ctor_set(x_70, 3, x_63); -lean_ctor_set(x_70, 4, x_64); -lean_ctor_set(x_70, 5, x_65); -lean_ctor_set(x_70, 6, x_66); -lean_ctor_set(x_70, 7, x_10); -lean_ctor_set(x_70, 8, x_67); -lean_ctor_set(x_70, 9, x_68); -lean_ctor_set(x_70, 10, x_69); -x_71 = lean_st_ref_set(x_4, x_70); -x_72 = lean_st_ref_get(x_4); -x_73 = lean_ctor_get(x_3, 0); -lean_inc_ref(x_73); -x_74 = lean_ctor_get(x_3, 1); -lean_inc_ref(x_74); -x_75 = lean_ctor_get(x_3, 2); -lean_inc(x_75); -x_76 = lean_ctor_get(x_3, 3); -lean_inc(x_76); -x_77 = lean_ctor_get(x_3, 4); -lean_inc(x_77); -x_78 = lean_ctor_get(x_3, 5); -lean_inc(x_78); -x_79 = lean_ctor_get(x_3, 6); -lean_inc(x_79); -x_80 = lean_ctor_get(x_3, 7); -lean_inc(x_80); -x_81 = lean_ctor_get(x_3, 8); +x_61 = lean_ctor_get(x_28, 3); +lean_inc(x_61); +x_62 = lean_ctor_get(x_28, 4); +lean_inc(x_62); +x_63 = lean_ctor_get(x_28, 5); +lean_inc(x_63); +x_64 = lean_ctor_get(x_28, 8); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_28, 9); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_28, 10); +lean_inc_ref(x_66); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + lean_ctor_release(x_28, 1); + lean_ctor_release(x_28, 2); + lean_ctor_release(x_28, 3); + lean_ctor_release(x_28, 4); + lean_ctor_release(x_28, 5); + lean_ctor_release(x_28, 6); + lean_ctor_release(x_28, 7); + lean_ctor_release(x_28, 8); + lean_ctor_release(x_28, 9); + lean_ctor_release(x_28, 10); + x_67 = x_28; +} else { + lean_dec_ref(x_28); + x_67 = lean_box(0); +} +x_68 = lean_alloc_ctor(0, 10, 1); +lean_ctor_set(x_68, 0, x_48); +lean_ctor_set(x_68, 1, x_49); +lean_ctor_set(x_68, 2, x_50); +lean_ctor_set(x_68, 3, x_51); +lean_ctor_set(x_68, 4, x_52); +lean_ctor_set(x_68, 5, x_53); +lean_ctor_set(x_68, 6, x_54); +lean_ctor_set(x_68, 7, x_55); +lean_ctor_set(x_68, 8, x_56); +lean_ctor_set(x_68, 9, x_2); +lean_ctor_set_uint8(x_68, sizeof(void*)*10, x_57); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +if (lean_is_scalar(x_67)) { + x_69 = lean_alloc_ctor(0, 11, 0); +} else { + x_69 = x_67; +} +lean_ctor_set(x_69, 0, x_58); +lean_ctor_set(x_69, 1, x_59); +lean_ctor_set(x_69, 2, x_60); +lean_ctor_set(x_69, 3, x_61); +lean_ctor_set(x_69, 4, x_62); +lean_ctor_set(x_69, 5, x_63); +lean_ctor_set(x_69, 6, x_20); +lean_ctor_set(x_69, 7, x_22); +lean_ctor_set(x_69, 8, x_64); +lean_ctor_set(x_69, 9, x_65); +lean_ctor_set(x_69, 10, x_66); +x_70 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_70, 0, x_69); +lean_closure_set(x_70, 1, x_1); +lean_closure_set(x_70, 2, x_68); +x_71 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_71, 0, x_70); +return x_71; +} +} +else +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* 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; uint8_t 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_72 = lean_ctor_get(x_24, 0); +x_73 = lean_ctor_get(x_24, 1); +x_74 = lean_ctor_get(x_24, 2); +x_75 = lean_ctor_get(x_24, 3); +x_76 = lean_ctor_get(x_24, 4); +x_77 = lean_ctor_get(x_24, 5); +x_78 = lean_ctor_get(x_24, 6); +x_79 = lean_ctor_get(x_24, 8); +x_80 = lean_ctor_get(x_24, 9); +x_81 = lean_ctor_get(x_24, 10); lean_inc(x_81); -x_82 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +lean_inc(x_80); +lean_inc(x_79); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_inc(x_75); +lean_inc(x_74); +lean_inc(x_73); +lean_inc(x_72); +lean_dec(x_24); +x_82 = lean_alloc_ctor(0, 11, 0); +lean_ctor_set(x_82, 0, x_72); +lean_ctor_set(x_82, 1, x_73); +lean_ctor_set(x_82, 2, x_74); +lean_ctor_set(x_82, 3, x_75); +lean_ctor_set(x_82, 4, x_76); +lean_ctor_set(x_82, 5, x_77); +lean_ctor_set(x_82, 6, x_78); +lean_ctor_set(x_82, 7, x_23); +lean_ctor_set(x_82, 8, x_79); +lean_ctor_set(x_82, 9, x_80); +lean_ctor_set(x_82, 10, x_81); +x_83 = lean_st_ref_set(x_4, x_82); +x_84 = lean_st_ref_get(x_4); +x_85 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_85); +x_86 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_86); +x_87 = lean_ctor_get(x_3, 2); +lean_inc(x_87); +x_88 = lean_ctor_get(x_3, 3); +lean_inc(x_88); +x_89 = lean_ctor_get(x_3, 4); +lean_inc(x_89); +x_90 = lean_ctor_get(x_3, 5); +lean_inc(x_90); +x_91 = lean_ctor_get(x_3, 6); +lean_inc(x_91); +x_92 = lean_ctor_get(x_3, 7); +lean_inc(x_92); +x_93 = lean_ctor_get(x_3, 8); +lean_inc(x_93); +x_94 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); if (lean_is_exclusive(x_3)) { lean_ctor_release(x_3, 0); lean_ctor_release(x_3, 1); @@ -11318,87 +11350,763 @@ if (lean_is_exclusive(x_3)) { lean_ctor_release(x_3, 7); lean_ctor_release(x_3, 8); lean_ctor_release(x_3, 9); - x_83 = x_3; + x_95 = x_3; } else { lean_dec_ref(x_3); - x_83 = lean_box(0); + x_95 = lean_box(0); } -x_84 = lean_ctor_get(x_72, 0); -lean_inc_ref(x_84); -x_85 = lean_ctor_get(x_72, 1); -lean_inc_ref(x_85); -x_86 = lean_ctor_get(x_72, 2); -lean_inc(x_86); -x_87 = lean_ctor_get(x_72, 3); -lean_inc(x_87); -x_88 = lean_ctor_get(x_72, 4); -lean_inc(x_88); -x_89 = lean_ctor_get(x_72, 5); -lean_inc(x_89); -x_90 = lean_ctor_get(x_72, 6); -lean_inc_ref(x_90); -x_91 = lean_ctor_get(x_72, 8); -lean_inc_ref(x_91); -x_92 = lean_ctor_get(x_72, 9); -lean_inc_ref(x_92); -x_93 = lean_ctor_get(x_72, 10); -lean_inc_ref(x_93); -if (lean_is_exclusive(x_72)) { - lean_ctor_release(x_72, 0); - lean_ctor_release(x_72, 1); - lean_ctor_release(x_72, 2); - lean_ctor_release(x_72, 3); - lean_ctor_release(x_72, 4); - lean_ctor_release(x_72, 5); - lean_ctor_release(x_72, 6); - lean_ctor_release(x_72, 7); - lean_ctor_release(x_72, 8); - lean_ctor_release(x_72, 9); - lean_ctor_release(x_72, 10); - x_94 = x_72; +x_96 = lean_ctor_get(x_84, 0); +lean_inc_ref(x_96); +x_97 = lean_ctor_get(x_84, 1); +lean_inc_ref(x_97); +x_98 = lean_ctor_get(x_84, 2); +lean_inc(x_98); +x_99 = lean_ctor_get(x_84, 3); +lean_inc(x_99); +x_100 = lean_ctor_get(x_84, 4); +lean_inc(x_100); +x_101 = lean_ctor_get(x_84, 5); +lean_inc(x_101); +x_102 = lean_ctor_get(x_84, 8); +lean_inc_ref(x_102); +x_103 = lean_ctor_get(x_84, 9); +lean_inc_ref(x_103); +x_104 = lean_ctor_get(x_84, 10); +lean_inc_ref(x_104); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + lean_ctor_release(x_84, 2); + lean_ctor_release(x_84, 3); + lean_ctor_release(x_84, 4); + lean_ctor_release(x_84, 5); + lean_ctor_release(x_84, 6); + lean_ctor_release(x_84, 7); + lean_ctor_release(x_84, 8); + lean_ctor_release(x_84, 9); + lean_ctor_release(x_84, 10); + x_105 = x_84; } else { - lean_dec_ref(x_72); - x_94 = lean_box(0); + lean_dec_ref(x_84); + x_105 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_95 = lean_alloc_ctor(0, 10, 1); +if (lean_is_scalar(x_95)) { + x_106 = lean_alloc_ctor(0, 10, 1); } else { - x_95 = x_83; + x_106 = x_95; } -lean_ctor_set(x_95, 0, x_73); -lean_ctor_set(x_95, 1, x_74); -lean_ctor_set(x_95, 2, x_75); -lean_ctor_set(x_95, 3, x_76); -lean_ctor_set(x_95, 4, x_77); -lean_ctor_set(x_95, 5, x_78); -lean_ctor_set(x_95, 6, x_79); -lean_ctor_set(x_95, 7, x_80); -lean_ctor_set(x_95, 8, x_81); -lean_ctor_set(x_95, 9, x_2); -lean_ctor_set_uint8(x_95, sizeof(void*)*10, x_82); -if (lean_is_scalar(x_94)) { - x_96 = lean_alloc_ctor(0, 11, 0); +lean_ctor_set(x_106, 0, x_85); +lean_ctor_set(x_106, 1, x_86); +lean_ctor_set(x_106, 2, x_87); +lean_ctor_set(x_106, 3, x_88); +lean_ctor_set(x_106, 4, x_89); +lean_ctor_set(x_106, 5, x_90); +lean_ctor_set(x_106, 6, x_91); +lean_ctor_set(x_106, 7, x_92); +lean_ctor_set(x_106, 8, x_93); +lean_ctor_set(x_106, 9, x_2); +lean_ctor_set_uint8(x_106, sizeof(void*)*10, x_94); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 0, x_14); +if (lean_is_scalar(x_105)) { + x_107 = lean_alloc_ctor(0, 11, 0); } else { - x_96 = x_94; + x_107 = x_105; } -lean_ctor_set(x_96, 0, x_84); -lean_ctor_set(x_96, 1, x_85); -lean_ctor_set(x_96, 2, x_86); -lean_ctor_set(x_96, 3, x_87); -lean_ctor_set(x_96, 4, x_88); -lean_ctor_set(x_96, 5, x_89); -lean_ctor_set(x_96, 6, x_90); -lean_ctor_set(x_96, 7, x_9); -lean_ctor_set(x_96, 8, x_91); -lean_ctor_set(x_96, 9, x_92); -lean_ctor_set(x_96, 10, x_93); -x_97 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); -lean_closure_set(x_97, 0, x_96); -lean_closure_set(x_97, 1, x_1); -lean_closure_set(x_97, 2, x_95); -x_98 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_98, 0, x_97); -return x_98; +lean_ctor_set(x_107, 0, x_96); +lean_ctor_set(x_107, 1, x_97); +lean_ctor_set(x_107, 2, x_98); +lean_ctor_set(x_107, 3, x_99); +lean_ctor_set(x_107, 4, x_100); +lean_ctor_set(x_107, 5, x_101); +lean_ctor_set(x_107, 6, x_20); +lean_ctor_set(x_107, 7, x_22); +lean_ctor_set(x_107, 8, x_102); +lean_ctor_set(x_107, 9, x_103); +lean_ctor_set(x_107, 10, x_104); +x_108 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_108, 0, x_107); +lean_closure_set(x_108, 1, x_1); +lean_closure_set(x_108, 2, x_106); +x_109 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +else +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_110 = lean_ctor_get(x_20, 0); +x_111 = lean_ctor_get(x_20, 1); +lean_inc(x_111); +lean_inc(x_110); +lean_dec(x_20); +x_112 = lean_st_ref_take(x_4); +x_113 = lean_ctor_get(x_112, 0); +lean_inc_ref(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc_ref(x_114); +x_115 = lean_ctor_get(x_112, 2); +lean_inc(x_115); +x_116 = lean_ctor_get(x_112, 3); +lean_inc(x_116); +x_117 = lean_ctor_get(x_112, 4); +lean_inc(x_117); +x_118 = lean_ctor_get(x_112, 5); +lean_inc(x_118); +x_119 = lean_ctor_get(x_112, 6); +lean_inc_ref(x_119); +x_120 = lean_ctor_get(x_112, 8); +lean_inc_ref(x_120); +x_121 = lean_ctor_get(x_112, 9); +lean_inc_ref(x_121); +x_122 = lean_ctor_get(x_112, 10); +lean_inc_ref(x_122); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + lean_ctor_release(x_112, 1); + lean_ctor_release(x_112, 2); + lean_ctor_release(x_112, 3); + lean_ctor_release(x_112, 4); + lean_ctor_release(x_112, 5); + lean_ctor_release(x_112, 6); + lean_ctor_release(x_112, 7); + lean_ctor_release(x_112, 8); + lean_ctor_release(x_112, 9); + lean_ctor_release(x_112, 10); + x_123 = x_112; +} else { + lean_dec_ref(x_112); + x_123 = lean_box(0); +} +if (lean_is_scalar(x_123)) { + x_124 = lean_alloc_ctor(0, 11, 0); +} else { + x_124 = x_123; +} +lean_ctor_set(x_124, 0, x_113); +lean_ctor_set(x_124, 1, x_114); +lean_ctor_set(x_124, 2, x_115); +lean_ctor_set(x_124, 3, x_116); +lean_ctor_set(x_124, 4, x_117); +lean_ctor_set(x_124, 5, x_118); +lean_ctor_set(x_124, 6, x_119); +lean_ctor_set(x_124, 7, x_111); +lean_ctor_set(x_124, 8, x_120); +lean_ctor_set(x_124, 9, x_121); +lean_ctor_set(x_124, 10, x_122); +x_125 = lean_st_ref_set(x_4, x_124); +x_126 = lean_st_ref_get(x_4); +x_127 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_127); +x_128 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_128); +x_129 = lean_ctor_get(x_3, 2); +lean_inc(x_129); +x_130 = lean_ctor_get(x_3, 3); +lean_inc(x_130); +x_131 = lean_ctor_get(x_3, 4); +lean_inc(x_131); +x_132 = lean_ctor_get(x_3, 5); +lean_inc(x_132); +x_133 = lean_ctor_get(x_3, 6); +lean_inc(x_133); +x_134 = lean_ctor_get(x_3, 7); +lean_inc(x_134); +x_135 = lean_ctor_get(x_3, 8); +lean_inc(x_135); +x_136 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + lean_ctor_release(x_3, 6); + lean_ctor_release(x_3, 7); + lean_ctor_release(x_3, 8); + lean_ctor_release(x_3, 9); + x_137 = x_3; +} else { + lean_dec_ref(x_3); + x_137 = lean_box(0); +} +x_138 = lean_ctor_get(x_126, 0); +lean_inc_ref(x_138); +x_139 = lean_ctor_get(x_126, 1); +lean_inc_ref(x_139); +x_140 = lean_ctor_get(x_126, 2); +lean_inc(x_140); +x_141 = lean_ctor_get(x_126, 3); +lean_inc(x_141); +x_142 = lean_ctor_get(x_126, 4); +lean_inc(x_142); +x_143 = lean_ctor_get(x_126, 5); +lean_inc(x_143); +x_144 = lean_ctor_get(x_126, 8); +lean_inc_ref(x_144); +x_145 = lean_ctor_get(x_126, 9); +lean_inc_ref(x_145); +x_146 = lean_ctor_get(x_126, 10); +lean_inc_ref(x_146); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + lean_ctor_release(x_126, 2); + lean_ctor_release(x_126, 3); + lean_ctor_release(x_126, 4); + lean_ctor_release(x_126, 5); + lean_ctor_release(x_126, 6); + lean_ctor_release(x_126, 7); + lean_ctor_release(x_126, 8); + lean_ctor_release(x_126, 9); + lean_ctor_release(x_126, 10); + x_147 = x_126; +} else { + lean_dec_ref(x_126); + x_147 = lean_box(0); +} +if (lean_is_scalar(x_137)) { + x_148 = lean_alloc_ctor(0, 10, 1); +} else { + x_148 = x_137; +} +lean_ctor_set(x_148, 0, x_127); +lean_ctor_set(x_148, 1, x_128); +lean_ctor_set(x_148, 2, x_129); +lean_ctor_set(x_148, 3, x_130); +lean_ctor_set(x_148, 4, x_131); +lean_ctor_set(x_148, 5, x_132); +lean_ctor_set(x_148, 6, x_133); +lean_ctor_set(x_148, 7, x_134); +lean_ctor_set(x_148, 8, x_135); +lean_ctor_set(x_148, 9, x_2); +lean_ctor_set_uint8(x_148, sizeof(void*)*10, x_136); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_14); +lean_ctor_set(x_149, 1, x_15); +if (lean_is_scalar(x_147)) { + x_150 = lean_alloc_ctor(0, 11, 0); +} else { + x_150 = x_147; +} +lean_ctor_set(x_150, 0, x_138); +lean_ctor_set(x_150, 1, x_139); +lean_ctor_set(x_150, 2, x_140); +lean_ctor_set(x_150, 3, x_141); +lean_ctor_set(x_150, 4, x_142); +lean_ctor_set(x_150, 5, x_143); +lean_ctor_set(x_150, 6, x_149); +lean_ctor_set(x_150, 7, x_110); +lean_ctor_set(x_150, 8, x_144); +lean_ctor_set(x_150, 9, x_145); +lean_ctor_set(x_150, 10, x_146); +x_151 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_151, 0, x_150); +lean_closure_set(x_151, 1, x_1); +lean_closure_set(x_151, 2, x_148); +x_152 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_152, 0, x_151); +return x_152; +} +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_153 = lean_ctor_get(x_11, 0); +x_154 = lean_ctor_get(x_11, 1); +x_155 = lean_ctor_get(x_11, 2); +x_156 = lean_ctor_get(x_11, 3); +x_157 = lean_ctor_get(x_11, 4); +x_158 = lean_ctor_get(x_11, 5); +x_159 = lean_ctor_get(x_11, 7); +x_160 = lean_ctor_get(x_11, 8); +x_161 = lean_ctor_get(x_11, 9); +x_162 = lean_ctor_get(x_11, 10); +lean_inc(x_162); +lean_inc(x_161); +lean_inc(x_160); +lean_inc(x_159); +lean_inc(x_158); +lean_inc(x_157); +lean_inc(x_156); +lean_inc(x_155); +lean_inc(x_154); +lean_inc(x_153); +lean_dec(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_163 = l_Lean_Name_num___override(x_9, x_10); +x_164 = lean_unsigned_to_nat(1u); +x_165 = lean_nat_add(x_10, x_164); +lean_dec(x_10); +lean_ctor_set(x_7, 1, x_165); +x_166 = lean_alloc_ctor(0, 11, 0); +lean_ctor_set(x_166, 0, x_153); +lean_ctor_set(x_166, 1, x_154); +lean_ctor_set(x_166, 2, x_155); +lean_ctor_set(x_166, 3, x_156); +lean_ctor_set(x_166, 4, x_157); +lean_ctor_set(x_166, 5, x_158); +lean_ctor_set(x_166, 6, x_7); +lean_ctor_set(x_166, 7, x_159); +lean_ctor_set(x_166, 8, x_160); +lean_ctor_set(x_166, 9, x_161); +lean_ctor_set(x_166, 10, x_162); +x_167 = lean_st_ref_set(x_4, x_166); +x_168 = lean_st_ref_get(x_4); +x_169 = lean_ctor_get(x_168, 7); +lean_inc_ref(x_169); +lean_dec(x_168); +x_170 = l_Lean_DeclNameGenerator_mkChild(x_169); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +x_172 = lean_ctor_get(x_170, 1); +lean_inc(x_172); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + x_173 = x_170; +} else { + lean_dec_ref(x_170); + x_173 = lean_box(0); +} +x_174 = lean_st_ref_take(x_4); +x_175 = lean_ctor_get(x_174, 0); +lean_inc_ref(x_175); +x_176 = lean_ctor_get(x_174, 1); +lean_inc_ref(x_176); +x_177 = lean_ctor_get(x_174, 2); +lean_inc(x_177); +x_178 = lean_ctor_get(x_174, 3); +lean_inc(x_178); +x_179 = lean_ctor_get(x_174, 4); +lean_inc(x_179); +x_180 = lean_ctor_get(x_174, 5); +lean_inc(x_180); +x_181 = lean_ctor_get(x_174, 6); +lean_inc_ref(x_181); +x_182 = lean_ctor_get(x_174, 8); +lean_inc_ref(x_182); +x_183 = lean_ctor_get(x_174, 9); +lean_inc_ref(x_183); +x_184 = lean_ctor_get(x_174, 10); +lean_inc_ref(x_184); +if (lean_is_exclusive(x_174)) { + lean_ctor_release(x_174, 0); + lean_ctor_release(x_174, 1); + lean_ctor_release(x_174, 2); + lean_ctor_release(x_174, 3); + lean_ctor_release(x_174, 4); + lean_ctor_release(x_174, 5); + lean_ctor_release(x_174, 6); + lean_ctor_release(x_174, 7); + lean_ctor_release(x_174, 8); + lean_ctor_release(x_174, 9); + lean_ctor_release(x_174, 10); + x_185 = x_174; +} else { + lean_dec_ref(x_174); + x_185 = lean_box(0); +} +if (lean_is_scalar(x_185)) { + x_186 = lean_alloc_ctor(0, 11, 0); +} else { + x_186 = x_185; +} +lean_ctor_set(x_186, 0, x_175); +lean_ctor_set(x_186, 1, x_176); +lean_ctor_set(x_186, 2, x_177); +lean_ctor_set(x_186, 3, x_178); +lean_ctor_set(x_186, 4, x_179); +lean_ctor_set(x_186, 5, x_180); +lean_ctor_set(x_186, 6, x_181); +lean_ctor_set(x_186, 7, x_172); +lean_ctor_set(x_186, 8, x_182); +lean_ctor_set(x_186, 9, x_183); +lean_ctor_set(x_186, 10, x_184); +x_187 = lean_st_ref_set(x_4, x_186); +x_188 = lean_st_ref_get(x_4); +x_189 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_189); +x_190 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_190); +x_191 = lean_ctor_get(x_3, 2); +lean_inc(x_191); +x_192 = lean_ctor_get(x_3, 3); +lean_inc(x_192); +x_193 = lean_ctor_get(x_3, 4); +lean_inc(x_193); +x_194 = lean_ctor_get(x_3, 5); +lean_inc(x_194); +x_195 = lean_ctor_get(x_3, 6); +lean_inc(x_195); +x_196 = lean_ctor_get(x_3, 7); +lean_inc(x_196); +x_197 = lean_ctor_get(x_3, 8); +lean_inc(x_197); +x_198 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + lean_ctor_release(x_3, 6); + lean_ctor_release(x_3, 7); + lean_ctor_release(x_3, 8); + lean_ctor_release(x_3, 9); + x_199 = x_3; +} else { + lean_dec_ref(x_3); + x_199 = lean_box(0); +} +x_200 = lean_ctor_get(x_188, 0); +lean_inc_ref(x_200); +x_201 = lean_ctor_get(x_188, 1); +lean_inc_ref(x_201); +x_202 = lean_ctor_get(x_188, 2); +lean_inc(x_202); +x_203 = lean_ctor_get(x_188, 3); +lean_inc(x_203); +x_204 = lean_ctor_get(x_188, 4); +lean_inc(x_204); +x_205 = lean_ctor_get(x_188, 5); +lean_inc(x_205); +x_206 = lean_ctor_get(x_188, 8); +lean_inc_ref(x_206); +x_207 = lean_ctor_get(x_188, 9); +lean_inc_ref(x_207); +x_208 = lean_ctor_get(x_188, 10); +lean_inc_ref(x_208); +if (lean_is_exclusive(x_188)) { + lean_ctor_release(x_188, 0); + lean_ctor_release(x_188, 1); + lean_ctor_release(x_188, 2); + lean_ctor_release(x_188, 3); + lean_ctor_release(x_188, 4); + lean_ctor_release(x_188, 5); + lean_ctor_release(x_188, 6); + lean_ctor_release(x_188, 7); + lean_ctor_release(x_188, 8); + lean_ctor_release(x_188, 9); + lean_ctor_release(x_188, 10); + x_209 = x_188; +} else { + lean_dec_ref(x_188); + x_209 = lean_box(0); +} +if (lean_is_scalar(x_199)) { + x_210 = lean_alloc_ctor(0, 10, 1); +} else { + x_210 = x_199; +} +lean_ctor_set(x_210, 0, x_189); +lean_ctor_set(x_210, 1, x_190); +lean_ctor_set(x_210, 2, x_191); +lean_ctor_set(x_210, 3, x_192); +lean_ctor_set(x_210, 4, x_193); +lean_ctor_set(x_210, 5, x_194); +lean_ctor_set(x_210, 6, x_195); +lean_ctor_set(x_210, 7, x_196); +lean_ctor_set(x_210, 8, x_197); +lean_ctor_set(x_210, 9, x_2); +lean_ctor_set_uint8(x_210, sizeof(void*)*10, x_198); +if (lean_is_scalar(x_173)) { + x_211 = lean_alloc_ctor(0, 2, 0); +} else { + x_211 = x_173; +} +lean_ctor_set(x_211, 0, x_163); +lean_ctor_set(x_211, 1, x_164); +if (lean_is_scalar(x_209)) { + x_212 = lean_alloc_ctor(0, 11, 0); +} else { + x_212 = x_209; +} +lean_ctor_set(x_212, 0, x_200); +lean_ctor_set(x_212, 1, x_201); +lean_ctor_set(x_212, 2, x_202); +lean_ctor_set(x_212, 3, x_203); +lean_ctor_set(x_212, 4, x_204); +lean_ctor_set(x_212, 5, x_205); +lean_ctor_set(x_212, 6, x_211); +lean_ctor_set(x_212, 7, x_171); +lean_ctor_set(x_212, 8, x_206); +lean_ctor_set(x_212, 9, x_207); +lean_ctor_set(x_212, 10, x_208); +x_213 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_213, 0, x_212); +lean_closure_set(x_213, 1, x_1); +lean_closure_set(x_213, 2, x_210); +x_214 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_214, 0, x_213); +return x_214; +} +} +else +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; uint8_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_215 = lean_ctor_get(x_7, 0); +x_216 = lean_ctor_get(x_7, 1); +lean_inc(x_216); +lean_inc(x_215); +lean_dec(x_7); +x_217 = lean_st_ref_take(x_4); +x_218 = lean_ctor_get(x_217, 0); +lean_inc_ref(x_218); +x_219 = lean_ctor_get(x_217, 1); +lean_inc_ref(x_219); +x_220 = lean_ctor_get(x_217, 2); +lean_inc(x_220); +x_221 = lean_ctor_get(x_217, 3); +lean_inc(x_221); +x_222 = lean_ctor_get(x_217, 4); +lean_inc(x_222); +x_223 = lean_ctor_get(x_217, 5); +lean_inc(x_223); +x_224 = lean_ctor_get(x_217, 7); +lean_inc_ref(x_224); +x_225 = lean_ctor_get(x_217, 8); +lean_inc_ref(x_225); +x_226 = lean_ctor_get(x_217, 9); +lean_inc_ref(x_226); +x_227 = lean_ctor_get(x_217, 10); +lean_inc_ref(x_227); +if (lean_is_exclusive(x_217)) { + lean_ctor_release(x_217, 0); + lean_ctor_release(x_217, 1); + lean_ctor_release(x_217, 2); + lean_ctor_release(x_217, 3); + lean_ctor_release(x_217, 4); + lean_ctor_release(x_217, 5); + lean_ctor_release(x_217, 6); + lean_ctor_release(x_217, 7); + lean_ctor_release(x_217, 8); + lean_ctor_release(x_217, 9); + lean_ctor_release(x_217, 10); + x_228 = x_217; +} else { + lean_dec_ref(x_217); + x_228 = lean_box(0); +} +lean_inc(x_216); +lean_inc(x_215); +x_229 = l_Lean_Name_num___override(x_215, x_216); +x_230 = lean_unsigned_to_nat(1u); +x_231 = lean_nat_add(x_216, x_230); +lean_dec(x_216); +x_232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_232, 0, x_215); +lean_ctor_set(x_232, 1, x_231); +if (lean_is_scalar(x_228)) { + x_233 = lean_alloc_ctor(0, 11, 0); +} else { + x_233 = x_228; +} +lean_ctor_set(x_233, 0, x_218); +lean_ctor_set(x_233, 1, x_219); +lean_ctor_set(x_233, 2, x_220); +lean_ctor_set(x_233, 3, x_221); +lean_ctor_set(x_233, 4, x_222); +lean_ctor_set(x_233, 5, x_223); +lean_ctor_set(x_233, 6, x_232); +lean_ctor_set(x_233, 7, x_224); +lean_ctor_set(x_233, 8, x_225); +lean_ctor_set(x_233, 9, x_226); +lean_ctor_set(x_233, 10, x_227); +x_234 = lean_st_ref_set(x_4, x_233); +x_235 = lean_st_ref_get(x_4); +x_236 = lean_ctor_get(x_235, 7); +lean_inc_ref(x_236); +lean_dec(x_235); +x_237 = l_Lean_DeclNameGenerator_mkChild(x_236); +x_238 = lean_ctor_get(x_237, 0); +lean_inc(x_238); +x_239 = lean_ctor_get(x_237, 1); +lean_inc(x_239); +if (lean_is_exclusive(x_237)) { + lean_ctor_release(x_237, 0); + lean_ctor_release(x_237, 1); + x_240 = x_237; +} else { + lean_dec_ref(x_237); + x_240 = lean_box(0); +} +x_241 = lean_st_ref_take(x_4); +x_242 = lean_ctor_get(x_241, 0); +lean_inc_ref(x_242); +x_243 = lean_ctor_get(x_241, 1); +lean_inc_ref(x_243); +x_244 = lean_ctor_get(x_241, 2); +lean_inc(x_244); +x_245 = lean_ctor_get(x_241, 3); +lean_inc(x_245); +x_246 = lean_ctor_get(x_241, 4); +lean_inc(x_246); +x_247 = lean_ctor_get(x_241, 5); +lean_inc(x_247); +x_248 = lean_ctor_get(x_241, 6); +lean_inc_ref(x_248); +x_249 = lean_ctor_get(x_241, 8); +lean_inc_ref(x_249); +x_250 = lean_ctor_get(x_241, 9); +lean_inc_ref(x_250); +x_251 = lean_ctor_get(x_241, 10); +lean_inc_ref(x_251); +if (lean_is_exclusive(x_241)) { + lean_ctor_release(x_241, 0); + lean_ctor_release(x_241, 1); + lean_ctor_release(x_241, 2); + lean_ctor_release(x_241, 3); + lean_ctor_release(x_241, 4); + lean_ctor_release(x_241, 5); + lean_ctor_release(x_241, 6); + lean_ctor_release(x_241, 7); + lean_ctor_release(x_241, 8); + lean_ctor_release(x_241, 9); + lean_ctor_release(x_241, 10); + x_252 = x_241; +} else { + lean_dec_ref(x_241); + x_252 = lean_box(0); +} +if (lean_is_scalar(x_252)) { + x_253 = lean_alloc_ctor(0, 11, 0); +} else { + x_253 = x_252; +} +lean_ctor_set(x_253, 0, x_242); +lean_ctor_set(x_253, 1, x_243); +lean_ctor_set(x_253, 2, x_244); +lean_ctor_set(x_253, 3, x_245); +lean_ctor_set(x_253, 4, x_246); +lean_ctor_set(x_253, 5, x_247); +lean_ctor_set(x_253, 6, x_248); +lean_ctor_set(x_253, 7, x_239); +lean_ctor_set(x_253, 8, x_249); +lean_ctor_set(x_253, 9, x_250); +lean_ctor_set(x_253, 10, x_251); +x_254 = lean_st_ref_set(x_4, x_253); +x_255 = lean_st_ref_get(x_4); +x_256 = lean_ctor_get(x_3, 0); +lean_inc_ref(x_256); +x_257 = lean_ctor_get(x_3, 1); +lean_inc_ref(x_257); +x_258 = lean_ctor_get(x_3, 2); +lean_inc(x_258); +x_259 = lean_ctor_get(x_3, 3); +lean_inc(x_259); +x_260 = lean_ctor_get(x_3, 4); +lean_inc(x_260); +x_261 = lean_ctor_get(x_3, 5); +lean_inc(x_261); +x_262 = lean_ctor_get(x_3, 6); +lean_inc(x_262); +x_263 = lean_ctor_get(x_3, 7); +lean_inc(x_263); +x_264 = lean_ctor_get(x_3, 8); +lean_inc(x_264); +x_265 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + lean_ctor_release(x_3, 6); + lean_ctor_release(x_3, 7); + lean_ctor_release(x_3, 8); + lean_ctor_release(x_3, 9); + x_266 = x_3; +} else { + lean_dec_ref(x_3); + x_266 = lean_box(0); +} +x_267 = lean_ctor_get(x_255, 0); +lean_inc_ref(x_267); +x_268 = lean_ctor_get(x_255, 1); +lean_inc_ref(x_268); +x_269 = lean_ctor_get(x_255, 2); +lean_inc(x_269); +x_270 = lean_ctor_get(x_255, 3); +lean_inc(x_270); +x_271 = lean_ctor_get(x_255, 4); +lean_inc(x_271); +x_272 = lean_ctor_get(x_255, 5); +lean_inc(x_272); +x_273 = lean_ctor_get(x_255, 8); +lean_inc_ref(x_273); +x_274 = lean_ctor_get(x_255, 9); +lean_inc_ref(x_274); +x_275 = lean_ctor_get(x_255, 10); +lean_inc_ref(x_275); +if (lean_is_exclusive(x_255)) { + lean_ctor_release(x_255, 0); + lean_ctor_release(x_255, 1); + lean_ctor_release(x_255, 2); + lean_ctor_release(x_255, 3); + lean_ctor_release(x_255, 4); + lean_ctor_release(x_255, 5); + lean_ctor_release(x_255, 6); + lean_ctor_release(x_255, 7); + lean_ctor_release(x_255, 8); + lean_ctor_release(x_255, 9); + lean_ctor_release(x_255, 10); + x_276 = x_255; +} else { + lean_dec_ref(x_255); + x_276 = lean_box(0); +} +if (lean_is_scalar(x_266)) { + x_277 = lean_alloc_ctor(0, 10, 1); +} else { + x_277 = x_266; +} +lean_ctor_set(x_277, 0, x_256); +lean_ctor_set(x_277, 1, x_257); +lean_ctor_set(x_277, 2, x_258); +lean_ctor_set(x_277, 3, x_259); +lean_ctor_set(x_277, 4, x_260); +lean_ctor_set(x_277, 5, x_261); +lean_ctor_set(x_277, 6, x_262); +lean_ctor_set(x_277, 7, x_263); +lean_ctor_set(x_277, 8, x_264); +lean_ctor_set(x_277, 9, x_2); +lean_ctor_set_uint8(x_277, sizeof(void*)*10, x_265); +if (lean_is_scalar(x_240)) { + x_278 = lean_alloc_ctor(0, 2, 0); +} else { + x_278 = x_240; +} +lean_ctor_set(x_278, 0, x_229); +lean_ctor_set(x_278, 1, x_230); +if (lean_is_scalar(x_276)) { + x_279 = lean_alloc_ctor(0, 11, 0); +} else { + x_279 = x_276; +} +lean_ctor_set(x_279, 0, x_267); +lean_ctor_set(x_279, 1, x_268); +lean_ctor_set(x_279, 2, x_269); +lean_ctor_set(x_279, 3, x_270); +lean_ctor_set(x_279, 4, x_271); +lean_ctor_set(x_279, 5, x_272); +lean_ctor_set(x_279, 6, x_278); +lean_ctor_set(x_279, 7, x_238); +lean_ctor_set(x_279, 8, x_273); +lean_ctor_set(x_279, 9, x_274); +lean_ctor_set(x_279, 10, x_275); +x_280 = lean_alloc_closure((void*)(l_Lean_Elab_Command_wrapAsync___redArg___lam__0___boxed), 5, 3); +lean_closure_set(x_280, 0, x_279); +lean_closure_set(x_280, 1, x_1); +lean_closure_set(x_280, 2, x_277); +x_281 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_281, 0, x_280); +return x_281; } } } @@ -14690,8 +15398,8 @@ return x_23; block_33: { lean_object* x_32; -lean_dec(x_28); -x_32 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_30, x_29, x_31); +lean_dec(x_29); +x_32 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_28, x_30, x_31); lean_dec(x_31); x_19 = x_32; goto block_27; @@ -14705,16 +15413,16 @@ if (x_38 == 0) lean_dec(x_34); lean_inc(x_37); x_28 = x_35; -x_29 = x_37; -x_30 = x_36; +x_29 = x_36; +x_30 = x_37; x_31 = x_37; goto block_33; } else { x_28 = x_35; -x_29 = x_37; -x_30 = x_36; +x_29 = x_36; +x_30 = x_37; x_31 = x_34; goto block_33; } @@ -14734,16 +15442,16 @@ if (x_45 == 0) { lean_inc(x_44); x_34 = x_44; -x_35 = x_41; -x_36 = x_40; +x_35 = x_40; +x_36 = x_41; x_37 = x_44; goto block_39; } else { x_34 = x_44; -x_35 = x_41; -x_36 = x_40; +x_35 = x_40; +x_36 = x_41; x_37 = x_15; goto block_39; } @@ -14888,8 +15596,8 @@ return x_73; block_82: { lean_object* x_81; -lean_dec(x_77); -x_81 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_79, x_78, x_80); +lean_dec(x_78); +x_81 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_addTraceAsMessages___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__0_spec__5___redArg(x_77, x_79, x_80); lean_dec(x_80); x_69 = x_81; goto block_76; @@ -14903,16 +15611,16 @@ if (x_87 == 0) lean_dec(x_83); lean_inc(x_86); x_77 = x_84; -x_78 = x_86; -x_79 = x_85; +x_78 = x_85; +x_79 = x_86; x_80 = x_86; goto block_82; } else { x_77 = x_84; -x_78 = x_86; -x_79 = x_85; +x_78 = x_85; +x_79 = x_86; x_80 = x_83; goto block_82; } @@ -14932,16 +15640,16 @@ if (x_94 == 0) { lean_inc(x_93); x_83 = x_93; -x_84 = x_90; -x_85 = x_89; +x_84 = x_89; +x_85 = x_90; x_86 = x_93; goto block_88; } else { x_83 = x_93; -x_84 = x_90; -x_85 = x_89; +x_84 = x_89; +x_85 = x_90; x_86 = x_65; goto block_88; } @@ -16200,7 +16908,7 @@ block_11: lean_object* x_9; lean_object* x_10; x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_6); +lean_ctor_set(x_9, 1, x_7); x_10 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_10, 0, x_9); return x_10; @@ -16231,8 +16939,8 @@ lean_object* x_24; lean_object* x_25; lean_dec_ref(x_22); x_24 = l_IO_FS_withIsolatedStreams___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__1___redArg___closed__4; x_25 = l_panic___at___00IO_FS_withIsolatedStreams___at___00Lean_Elab_Command_wrapAsyncAsSnapshot_spec__1_spec__11(x_24); -x_6 = x_20; -x_7 = lean_box(0); +x_6 = lean_box(0); +x_7 = x_20; x_8 = x_25; goto block_11; } @@ -16240,8 +16948,8 @@ else { lean_object* x_26; x_26 = lean_string_from_utf8_unchecked(x_22); -x_6 = x_20; -x_7 = lean_box(0); +x_6 = lean_box(0); +x_7 = x_20; x_8 = x_26; goto block_11; } @@ -22602,7 +23310,7 @@ lean_inc_ref(x_32); x_41 = !lean_is_exclusive(x_15); if (x_41 == 0) { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_57; lean_object* x_58; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_72; lean_object* x_73; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_101; +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_57; lean_object* x_58; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_72; lean_object* x_73; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t 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_101; x_42 = lean_ctor_get(x_15, 2); lean_dec(x_42); x_43 = lean_ctor_get(x_15, 1); @@ -22731,9 +23439,9 @@ block_71: lean_object* x_70; lean_inc(x_10); lean_inc(x_45); -x_70 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_45, x_37, x_1, x_46, x_68, x_67, x_10); +x_70 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_45, x_37, x_1, x_46, x_68, x_66, x_10); lean_dec(x_46); -x_57 = x_66; +x_57 = x_67; x_58 = x_70; goto block_65; } @@ -22757,17 +23465,17 @@ lean_ctor_set(x_88, 1, x_46); x_89 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_89, 0, x_88); x_90 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_90, 0, x_80); -lean_ctor_set(x_90, 1, x_77); -lean_ctor_set(x_90, 2, x_81); -lean_ctor_set(x_90, 3, x_84); -lean_ctor_set(x_90, 4, x_82); +lean_ctor_set(x_90, 0, x_81); +lean_ctor_set(x_90, 1, x_78); +lean_ctor_set(x_90, 2, x_77); +lean_ctor_set(x_90, 3, x_80); +lean_ctor_set(x_90, 4, x_76); lean_ctor_set(x_90, 5, x_86); -lean_ctor_set(x_90, 6, x_85); -lean_ctor_set(x_90, 7, x_78); +lean_ctor_set(x_90, 6, x_79); +lean_ctor_set(x_90, 7, x_85); lean_ctor_set(x_90, 8, x_89); -lean_ctor_set(x_90, 9, x_79); -lean_ctor_set_uint8(x_90, sizeof(void*)*10, x_83); +lean_ctor_set(x_90, 9, x_84); +lean_ctor_set_uint8(x_90, sizeof(void*)*10, x_82); if (x_1 == 0) { lean_object* x_91; lean_object* x_92; @@ -22777,7 +23485,7 @@ lean_inc(x_10); lean_inc(x_45); x_92 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_45, x_37, x_1, x_46, x_91, x_90, x_10); lean_dec(x_46); -x_57 = x_76; +x_57 = x_83; x_58 = x_92; goto block_65; } @@ -22786,8 +23494,8 @@ else if (lean_obj_tag(x_3) == 0) { lean_dec(x_27); -x_72 = x_76; -x_73 = x_90; +x_72 = x_90; +x_73 = x_83; goto block_75; } else @@ -22800,8 +23508,8 @@ x_96 = lean_nat_dec_lt(x_27, x_95); if (x_96 == 0) { lean_dec(x_27); -x_72 = x_76; -x_73 = x_90; +x_72 = x_90; +x_73 = x_83; goto block_75; } else @@ -22812,8 +23520,8 @@ lean_dec(x_27); x_98 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_97); x_99 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_98, x_97); -x_66 = x_76; -x_67 = x_90; +x_66 = x_90; +x_67 = x_83; x_68 = x_99; x_69 = lean_box(0); goto block_71; @@ -22840,24 +23548,24 @@ x_111 = lean_ctor_get(x_9, 9); x_112 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_113 = lean_box(0); lean_inc(x_108); -lean_inc(x_109); -lean_inc(x_106); -lean_inc(x_107); -lean_inc(x_105); -lean_inc_ref(x_103); -lean_inc(x_111); lean_inc(x_110); +lean_inc(x_111); +lean_inc_ref(x_103); +lean_inc(x_106); +lean_inc(x_109); lean_inc_ref(x_104); -x_76 = x_101; -x_77 = x_104; -x_78 = x_110; -x_79 = x_111; -x_80 = x_103; -x_81 = x_105; -x_82 = x_107; -x_83 = x_112; -x_84 = x_106; -x_85 = x_109; +lean_inc(x_105); +lean_inc(x_107); +x_76 = x_107; +x_77 = x_105; +x_78 = x_104; +x_79 = x_109; +x_80 = x_106; +x_81 = x_103; +x_82 = x_112; +x_83 = x_101; +x_84 = x_111; +x_85 = x_110; x_86 = x_108; x_87 = x_113; goto block_100; @@ -22879,24 +23587,24 @@ x_122 = lean_ctor_get(x_9, 9); x_123 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_124 = lean_box(0); lean_inc(x_119); -lean_inc(x_120); -lean_inc(x_117); -lean_inc(x_118); -lean_inc(x_116); -lean_inc_ref(x_114); -lean_inc(x_122); lean_inc(x_121); +lean_inc(x_122); +lean_inc_ref(x_114); +lean_inc(x_117); +lean_inc(x_120); lean_inc_ref(x_115); -x_76 = x_101; -x_77 = x_115; -x_78 = x_121; -x_79 = x_122; -x_80 = x_114; -x_81 = x_116; -x_82 = x_118; -x_83 = x_123; -x_84 = x_117; -x_85 = x_120; +lean_inc(x_116); +lean_inc(x_118); +x_76 = x_118; +x_77 = x_116; +x_78 = x_115; +x_79 = x_120; +x_80 = x_117; +x_81 = x_114; +x_82 = x_123; +x_83 = x_101; +x_84 = x_122; +x_85 = x_121; x_86 = x_119; x_87 = x_124; goto block_100; @@ -22918,24 +23626,24 @@ x_133 = lean_ctor_get(x_9, 9); x_134 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_135 = lean_box(0); lean_inc(x_130); -lean_inc(x_131); -lean_inc(x_128); -lean_inc(x_129); -lean_inc(x_127); -lean_inc_ref(x_125); -lean_inc(x_133); lean_inc(x_132); +lean_inc(x_133); +lean_inc_ref(x_125); +lean_inc(x_128); +lean_inc(x_131); lean_inc_ref(x_126); -x_76 = x_101; -x_77 = x_126; -x_78 = x_132; -x_79 = x_133; -x_80 = x_125; -x_81 = x_127; -x_82 = x_129; -x_83 = x_134; -x_84 = x_128; -x_85 = x_131; +lean_inc(x_127); +lean_inc(x_129); +x_76 = x_129; +x_77 = x_127; +x_78 = x_126; +x_79 = x_131; +x_80 = x_128; +x_81 = x_125; +x_82 = x_134; +x_83 = x_101; +x_84 = x_133; +x_85 = x_132; x_86 = x_130; x_87 = x_135; goto block_100; @@ -22963,24 +23671,24 @@ if (x_150 == 0) lean_object* x_151; x_151 = lean_box(0); lean_inc(x_142); -lean_inc(x_143); -lean_inc(x_140); -lean_inc(x_141); -lean_inc(x_139); -lean_inc_ref(x_137); -lean_inc(x_145); lean_inc(x_144); +lean_inc(x_145); +lean_inc_ref(x_137); +lean_inc(x_140); +lean_inc(x_143); lean_inc_ref(x_138); -x_76 = x_101; -x_77 = x_138; -x_78 = x_144; -x_79 = x_145; -x_80 = x_137; -x_81 = x_139; -x_82 = x_141; -x_83 = x_146; -x_84 = x_140; -x_85 = x_143; +lean_inc(x_139); +lean_inc(x_141); +x_76 = x_141; +x_77 = x_139; +x_78 = x_138; +x_79 = x_143; +x_80 = x_140; +x_81 = x_137; +x_82 = x_146; +x_83 = x_101; +x_84 = x_145; +x_85 = x_144; x_86 = x_142; x_87 = x_151; goto block_100; @@ -22997,24 +23705,24 @@ lean_ctor_set(x_153, 1, x_152); x_154 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_154, 0, x_153); lean_inc(x_142); -lean_inc(x_143); -lean_inc(x_140); -lean_inc(x_141); -lean_inc(x_139); -lean_inc_ref(x_137); -lean_inc(x_145); lean_inc(x_144); +lean_inc(x_145); +lean_inc_ref(x_137); +lean_inc(x_140); +lean_inc(x_143); lean_inc_ref(x_138); -x_76 = x_101; -x_77 = x_138; -x_78 = x_144; -x_79 = x_145; -x_80 = x_137; -x_81 = x_139; -x_82 = x_141; -x_83 = x_146; -x_84 = x_140; -x_85 = x_143; +lean_inc(x_139); +lean_inc(x_141); +x_76 = x_141; +x_77 = x_139; +x_78 = x_138; +x_79 = x_143; +x_80 = x_140; +x_81 = x_137; +x_82 = x_146; +x_83 = x_101; +x_84 = x_145; +x_85 = x_144; x_86 = x_142; x_87 = x_154; goto block_100; @@ -23026,7 +23734,7 @@ goto block_100; } else { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_176; lean_object* x_177; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_191; lean_object* x_192; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_220; +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_176; lean_object* x_177; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_191; lean_object* x_192; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; uint8_t x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_220; lean_dec(x_15); x_163 = lean_array_uget(x_5, x_7); x_164 = lean_array_fget(x_32, x_33); @@ -23154,9 +23862,9 @@ block_190: lean_object* x_189; lean_inc(x_10); lean_inc(x_163); -x_189 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_163, x_37, x_1, x_164, x_187, x_186, x_10); +x_189 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_163, x_37, x_1, x_164, x_187, x_185, x_10); lean_dec(x_164); -x_176 = x_185; +x_176 = x_186; x_177 = x_189; goto block_184; } @@ -23180,17 +23888,17 @@ lean_ctor_set(x_207, 1, x_164); x_208 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_208, 0, x_207); x_209 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_209, 0, x_199); -lean_ctor_set(x_209, 1, x_196); -lean_ctor_set(x_209, 2, x_200); -lean_ctor_set(x_209, 3, x_203); -lean_ctor_set(x_209, 4, x_201); +lean_ctor_set(x_209, 0, x_200); +lean_ctor_set(x_209, 1, x_197); +lean_ctor_set(x_209, 2, x_196); +lean_ctor_set(x_209, 3, x_199); +lean_ctor_set(x_209, 4, x_195); lean_ctor_set(x_209, 5, x_205); -lean_ctor_set(x_209, 6, x_204); -lean_ctor_set(x_209, 7, x_197); +lean_ctor_set(x_209, 6, x_198); +lean_ctor_set(x_209, 7, x_204); lean_ctor_set(x_209, 8, x_208); -lean_ctor_set(x_209, 9, x_198); -lean_ctor_set_uint8(x_209, sizeof(void*)*10, x_202); +lean_ctor_set(x_209, 9, x_203); +lean_ctor_set_uint8(x_209, sizeof(void*)*10, x_201); if (x_1 == 0) { lean_object* x_210; lean_object* x_211; @@ -23200,7 +23908,7 @@ lean_inc(x_10); lean_inc(x_163); x_211 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_163, x_37, x_1, x_164, x_210, x_209, x_10); lean_dec(x_164); -x_176 = x_195; +x_176 = x_202; x_177 = x_211; goto block_184; } @@ -23209,8 +23917,8 @@ else if (lean_obj_tag(x_3) == 0) { lean_dec(x_27); -x_191 = x_195; -x_192 = x_209; +x_191 = x_209; +x_192 = x_202; goto block_194; } else @@ -23223,8 +23931,8 @@ x_215 = lean_nat_dec_lt(x_27, x_214); if (x_215 == 0) { lean_dec(x_27); -x_191 = x_195; -x_192 = x_209; +x_191 = x_209; +x_192 = x_202; goto block_194; } else @@ -23235,8 +23943,8 @@ lean_dec(x_27); x_217 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_216); x_218 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_217, x_216); -x_185 = x_195; -x_186 = x_209; +x_185 = x_209; +x_186 = x_202; x_187 = x_218; x_188 = lean_box(0); goto block_190; @@ -23263,24 +23971,24 @@ x_230 = lean_ctor_get(x_9, 9); x_231 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_232 = lean_box(0); lean_inc(x_227); -lean_inc(x_228); -lean_inc(x_225); -lean_inc(x_226); -lean_inc(x_224); -lean_inc_ref(x_222); -lean_inc(x_230); lean_inc(x_229); +lean_inc(x_230); +lean_inc_ref(x_222); +lean_inc(x_225); +lean_inc(x_228); lean_inc_ref(x_223); -x_195 = x_220; -x_196 = x_223; -x_197 = x_229; -x_198 = x_230; -x_199 = x_222; -x_200 = x_224; -x_201 = x_226; -x_202 = x_231; -x_203 = x_225; -x_204 = x_228; +lean_inc(x_224); +lean_inc(x_226); +x_195 = x_226; +x_196 = x_224; +x_197 = x_223; +x_198 = x_228; +x_199 = x_225; +x_200 = x_222; +x_201 = x_231; +x_202 = x_220; +x_203 = x_230; +x_204 = x_229; x_205 = x_227; x_206 = x_232; goto block_219; @@ -23302,24 +24010,24 @@ x_241 = lean_ctor_get(x_9, 9); x_242 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_243 = lean_box(0); lean_inc(x_238); -lean_inc(x_239); -lean_inc(x_236); -lean_inc(x_237); -lean_inc(x_235); -lean_inc_ref(x_233); -lean_inc(x_241); lean_inc(x_240); +lean_inc(x_241); +lean_inc_ref(x_233); +lean_inc(x_236); +lean_inc(x_239); lean_inc_ref(x_234); -x_195 = x_220; -x_196 = x_234; -x_197 = x_240; -x_198 = x_241; -x_199 = x_233; -x_200 = x_235; -x_201 = x_237; -x_202 = x_242; -x_203 = x_236; -x_204 = x_239; +lean_inc(x_235); +lean_inc(x_237); +x_195 = x_237; +x_196 = x_235; +x_197 = x_234; +x_198 = x_239; +x_199 = x_236; +x_200 = x_233; +x_201 = x_242; +x_202 = x_220; +x_203 = x_241; +x_204 = x_240; x_205 = x_238; x_206 = x_243; goto block_219; @@ -23341,24 +24049,24 @@ x_252 = lean_ctor_get(x_9, 9); x_253 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_254 = lean_box(0); lean_inc(x_249); -lean_inc(x_250); -lean_inc(x_247); -lean_inc(x_248); -lean_inc(x_246); -lean_inc_ref(x_244); -lean_inc(x_252); lean_inc(x_251); +lean_inc(x_252); +lean_inc_ref(x_244); +lean_inc(x_247); +lean_inc(x_250); lean_inc_ref(x_245); -x_195 = x_220; -x_196 = x_245; -x_197 = x_251; -x_198 = x_252; -x_199 = x_244; -x_200 = x_246; -x_201 = x_248; -x_202 = x_253; -x_203 = x_247; -x_204 = x_250; +lean_inc(x_246); +lean_inc(x_248); +x_195 = x_248; +x_196 = x_246; +x_197 = x_245; +x_198 = x_250; +x_199 = x_247; +x_200 = x_244; +x_201 = x_253; +x_202 = x_220; +x_203 = x_252; +x_204 = x_251; x_205 = x_249; x_206 = x_254; goto block_219; @@ -23386,24 +24094,24 @@ if (x_269 == 0) lean_object* x_270; x_270 = lean_box(0); lean_inc(x_261); -lean_inc(x_262); -lean_inc(x_259); -lean_inc(x_260); -lean_inc(x_258); -lean_inc_ref(x_256); -lean_inc(x_264); lean_inc(x_263); +lean_inc(x_264); +lean_inc_ref(x_256); +lean_inc(x_259); +lean_inc(x_262); lean_inc_ref(x_257); -x_195 = x_220; -x_196 = x_257; -x_197 = x_263; -x_198 = x_264; -x_199 = x_256; -x_200 = x_258; -x_201 = x_260; -x_202 = x_265; -x_203 = x_259; -x_204 = x_262; +lean_inc(x_258); +lean_inc(x_260); +x_195 = x_260; +x_196 = x_258; +x_197 = x_257; +x_198 = x_262; +x_199 = x_259; +x_200 = x_256; +x_201 = x_265; +x_202 = x_220; +x_203 = x_264; +x_204 = x_263; x_205 = x_261; x_206 = x_270; goto block_219; @@ -23420,24 +24128,24 @@ lean_ctor_set(x_272, 1, x_271); x_273 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_273, 0, x_272); lean_inc(x_261); -lean_inc(x_262); -lean_inc(x_259); -lean_inc(x_260); -lean_inc(x_258); -lean_inc_ref(x_256); -lean_inc(x_264); lean_inc(x_263); +lean_inc(x_264); +lean_inc_ref(x_256); +lean_inc(x_259); +lean_inc(x_262); lean_inc_ref(x_257); -x_195 = x_220; -x_196 = x_257; -x_197 = x_263; -x_198 = x_264; -x_199 = x_256; -x_200 = x_258; -x_201 = x_260; -x_202 = x_265; -x_203 = x_259; -x_204 = x_262; +lean_inc(x_258); +lean_inc(x_260); +x_195 = x_260; +x_196 = x_258; +x_197 = x_257; +x_198 = x_262; +x_199 = x_259; +x_200 = x_256; +x_201 = x_265; +x_202 = x_220; +x_203 = x_264; +x_204 = x_263; x_205 = x_261; x_206 = x_273; goto block_219; @@ -23481,7 +24189,7 @@ return x_291; } else { -lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_306; lean_object* x_307; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_321; lean_object* x_322; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; uint8_t x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_350; +lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_306; lean_object* x_307; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_321; lean_object* x_322; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_350; lean_inc(x_284); lean_inc(x_283); lean_inc_ref(x_282); @@ -23624,9 +24332,9 @@ block_320: lean_object* x_319; lean_inc(x_10); lean_inc(x_293); -x_319 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_293, x_288, x_1, x_294, x_317, x_316, x_10); +x_319 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_293, x_288, x_1, x_294, x_317, x_315, x_10); lean_dec(x_294); -x_306 = x_315; +x_306 = x_316; x_307 = x_319; goto block_314; } @@ -23650,17 +24358,17 @@ lean_ctor_set(x_337, 1, x_294); x_338 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_338, 0, x_337); x_339 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_339, 0, x_329); -lean_ctor_set(x_339, 1, x_326); -lean_ctor_set(x_339, 2, x_330); -lean_ctor_set(x_339, 3, x_333); -lean_ctor_set(x_339, 4, x_331); +lean_ctor_set(x_339, 0, x_330); +lean_ctor_set(x_339, 1, x_327); +lean_ctor_set(x_339, 2, x_326); +lean_ctor_set(x_339, 3, x_329); +lean_ctor_set(x_339, 4, x_325); lean_ctor_set(x_339, 5, x_335); -lean_ctor_set(x_339, 6, x_334); -lean_ctor_set(x_339, 7, x_327); +lean_ctor_set(x_339, 6, x_328); +lean_ctor_set(x_339, 7, x_334); lean_ctor_set(x_339, 8, x_338); -lean_ctor_set(x_339, 9, x_328); -lean_ctor_set_uint8(x_339, sizeof(void*)*10, x_332); +lean_ctor_set(x_339, 9, x_333); +lean_ctor_set_uint8(x_339, sizeof(void*)*10, x_331); if (x_1 == 0) { lean_object* x_340; lean_object* x_341; @@ -23670,7 +24378,7 @@ lean_inc(x_10); lean_inc(x_293); x_341 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_293, x_288, x_1, x_294, x_340, x_339, x_10); lean_dec(x_294); -x_306 = x_325; +x_306 = x_332; x_307 = x_341; goto block_314; } @@ -23679,8 +24387,8 @@ else if (lean_obj_tag(x_3) == 0) { lean_dec(x_27); -x_321 = x_325; -x_322 = x_339; +x_321 = x_339; +x_322 = x_332; goto block_324; } else @@ -23693,8 +24401,8 @@ x_345 = lean_nat_dec_lt(x_27, x_344); if (x_345 == 0) { lean_dec(x_27); -x_321 = x_325; -x_322 = x_339; +x_321 = x_339; +x_322 = x_332; goto block_324; } else @@ -23705,8 +24413,8 @@ lean_dec(x_27); x_347 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_346); x_348 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_347, x_346); -x_315 = x_325; -x_316 = x_339; +x_315 = x_339; +x_316 = x_332; x_317 = x_348; x_318 = lean_box(0); goto block_320; @@ -23733,24 +24441,24 @@ x_360 = lean_ctor_get(x_9, 9); x_361 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_362 = lean_box(0); lean_inc(x_357); -lean_inc(x_358); -lean_inc(x_355); -lean_inc(x_356); -lean_inc(x_354); -lean_inc_ref(x_352); -lean_inc(x_360); lean_inc(x_359); +lean_inc(x_360); +lean_inc_ref(x_352); +lean_inc(x_355); +lean_inc(x_358); lean_inc_ref(x_353); -x_325 = x_350; -x_326 = x_353; -x_327 = x_359; -x_328 = x_360; -x_329 = x_352; -x_330 = x_354; -x_331 = x_356; -x_332 = x_361; -x_333 = x_355; -x_334 = x_358; +lean_inc(x_354); +lean_inc(x_356); +x_325 = x_356; +x_326 = x_354; +x_327 = x_353; +x_328 = x_358; +x_329 = x_355; +x_330 = x_352; +x_331 = x_361; +x_332 = x_350; +x_333 = x_360; +x_334 = x_359; x_335 = x_357; x_336 = x_362; goto block_349; @@ -23772,24 +24480,24 @@ x_371 = lean_ctor_get(x_9, 9); x_372 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_373 = lean_box(0); lean_inc(x_368); -lean_inc(x_369); -lean_inc(x_366); -lean_inc(x_367); -lean_inc(x_365); -lean_inc_ref(x_363); -lean_inc(x_371); lean_inc(x_370); +lean_inc(x_371); +lean_inc_ref(x_363); +lean_inc(x_366); +lean_inc(x_369); lean_inc_ref(x_364); -x_325 = x_350; -x_326 = x_364; -x_327 = x_370; -x_328 = x_371; -x_329 = x_363; -x_330 = x_365; -x_331 = x_367; -x_332 = x_372; -x_333 = x_366; -x_334 = x_369; +lean_inc(x_365); +lean_inc(x_367); +x_325 = x_367; +x_326 = x_365; +x_327 = x_364; +x_328 = x_369; +x_329 = x_366; +x_330 = x_363; +x_331 = x_372; +x_332 = x_350; +x_333 = x_371; +x_334 = x_370; x_335 = x_368; x_336 = x_373; goto block_349; @@ -23811,24 +24519,24 @@ x_382 = lean_ctor_get(x_9, 9); x_383 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_384 = lean_box(0); lean_inc(x_379); -lean_inc(x_380); -lean_inc(x_377); -lean_inc(x_378); -lean_inc(x_376); -lean_inc_ref(x_374); -lean_inc(x_382); lean_inc(x_381); +lean_inc(x_382); +lean_inc_ref(x_374); +lean_inc(x_377); +lean_inc(x_380); lean_inc_ref(x_375); -x_325 = x_350; -x_326 = x_375; -x_327 = x_381; -x_328 = x_382; -x_329 = x_374; -x_330 = x_376; -x_331 = x_378; -x_332 = x_383; -x_333 = x_377; -x_334 = x_380; +lean_inc(x_376); +lean_inc(x_378); +x_325 = x_378; +x_326 = x_376; +x_327 = x_375; +x_328 = x_380; +x_329 = x_377; +x_330 = x_374; +x_331 = x_383; +x_332 = x_350; +x_333 = x_382; +x_334 = x_381; x_335 = x_379; x_336 = x_384; goto block_349; @@ -23856,24 +24564,24 @@ if (x_399 == 0) lean_object* x_400; x_400 = lean_box(0); lean_inc(x_391); -lean_inc(x_392); -lean_inc(x_389); -lean_inc(x_390); -lean_inc(x_388); -lean_inc_ref(x_386); -lean_inc(x_394); lean_inc(x_393); +lean_inc(x_394); +lean_inc_ref(x_386); +lean_inc(x_389); +lean_inc(x_392); lean_inc_ref(x_387); -x_325 = x_350; -x_326 = x_387; -x_327 = x_393; -x_328 = x_394; -x_329 = x_386; -x_330 = x_388; -x_331 = x_390; -x_332 = x_395; -x_333 = x_389; -x_334 = x_392; +lean_inc(x_388); +lean_inc(x_390); +x_325 = x_390; +x_326 = x_388; +x_327 = x_387; +x_328 = x_392; +x_329 = x_389; +x_330 = x_386; +x_331 = x_395; +x_332 = x_350; +x_333 = x_394; +x_334 = x_393; x_335 = x_391; x_336 = x_400; goto block_349; @@ -23890,24 +24598,24 @@ lean_ctor_set(x_402, 1, x_401); x_403 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_403, 0, x_402); lean_inc(x_391); -lean_inc(x_392); -lean_inc(x_389); -lean_inc(x_390); -lean_inc(x_388); -lean_inc_ref(x_386); -lean_inc(x_394); lean_inc(x_393); +lean_inc(x_394); +lean_inc_ref(x_386); +lean_inc(x_389); +lean_inc(x_392); lean_inc_ref(x_387); -x_325 = x_350; -x_326 = x_387; -x_327 = x_393; -x_328 = x_394; -x_329 = x_386; -x_330 = x_388; -x_331 = x_390; -x_332 = x_395; -x_333 = x_389; -x_334 = x_392; +lean_inc(x_388); +lean_inc(x_390); +x_325 = x_390; +x_326 = x_388; +x_327 = x_387; +x_328 = x_392; +x_329 = x_389; +x_330 = x_386; +x_331 = x_395; +x_332 = x_350; +x_333 = x_394; +x_334 = x_393; x_335 = x_391; x_336 = x_403; goto block_349; @@ -23982,7 +24690,7 @@ return x_426; } else { -lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; lean_object* x_441; lean_object* x_442; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_456; lean_object* x_457; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; uint8_t x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_485; +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; lean_object* x_441; lean_object* x_442; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_456; lean_object* x_457; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; uint8_t x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_485; lean_inc(x_418); lean_inc(x_417); lean_inc_ref(x_416); @@ -24125,9 +24833,9 @@ block_455: lean_object* x_454; lean_inc(x_10); lean_inc(x_428); -x_454 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_428, x_423, x_1, x_429, x_452, x_451, x_10); +x_454 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_428, x_423, x_1, x_429, x_452, x_450, x_10); lean_dec(x_429); -x_441 = x_450; +x_441 = x_451; x_442 = x_454; goto block_449; } @@ -24151,17 +24859,17 @@ lean_ctor_set(x_472, 1, x_429); x_473 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_473, 0, x_472); x_474 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_474, 0, x_464); -lean_ctor_set(x_474, 1, x_461); -lean_ctor_set(x_474, 2, x_465); -lean_ctor_set(x_474, 3, x_468); -lean_ctor_set(x_474, 4, x_466); +lean_ctor_set(x_474, 0, x_465); +lean_ctor_set(x_474, 1, x_462); +lean_ctor_set(x_474, 2, x_461); +lean_ctor_set(x_474, 3, x_464); +lean_ctor_set(x_474, 4, x_460); lean_ctor_set(x_474, 5, x_470); -lean_ctor_set(x_474, 6, x_469); -lean_ctor_set(x_474, 7, x_462); +lean_ctor_set(x_474, 6, x_463); +lean_ctor_set(x_474, 7, x_469); lean_ctor_set(x_474, 8, x_473); -lean_ctor_set(x_474, 9, x_463); -lean_ctor_set_uint8(x_474, sizeof(void*)*10, x_467); +lean_ctor_set(x_474, 9, x_468); +lean_ctor_set_uint8(x_474, sizeof(void*)*10, x_466); if (x_1 == 0) { lean_object* x_475; lean_object* x_476; @@ -24171,7 +24879,7 @@ lean_inc(x_10); lean_inc(x_428); x_476 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_428, x_423, x_1, x_429, x_475, x_474, x_10); lean_dec(x_429); -x_441 = x_460; +x_441 = x_467; x_442 = x_476; goto block_449; } @@ -24180,8 +24888,8 @@ else if (lean_obj_tag(x_3) == 0) { lean_dec(x_413); -x_456 = x_460; -x_457 = x_474; +x_456 = x_474; +x_457 = x_467; goto block_459; } else @@ -24194,8 +24902,8 @@ x_480 = lean_nat_dec_lt(x_413, x_479); if (x_480 == 0) { lean_dec(x_413); -x_456 = x_460; -x_457 = x_474; +x_456 = x_474; +x_457 = x_467; goto block_459; } else @@ -24206,8 +24914,8 @@ lean_dec(x_413); x_482 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_481); x_483 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_482, x_481); -x_450 = x_460; -x_451 = x_474; +x_450 = x_474; +x_451 = x_467; x_452 = x_483; x_453 = lean_box(0); goto block_455; @@ -24234,24 +24942,24 @@ x_495 = lean_ctor_get(x_9, 9); x_496 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_497 = lean_box(0); lean_inc(x_492); -lean_inc(x_493); -lean_inc(x_490); -lean_inc(x_491); -lean_inc(x_489); -lean_inc_ref(x_487); -lean_inc(x_495); lean_inc(x_494); +lean_inc(x_495); +lean_inc_ref(x_487); +lean_inc(x_490); +lean_inc(x_493); lean_inc_ref(x_488); -x_460 = x_485; -x_461 = x_488; -x_462 = x_494; -x_463 = x_495; -x_464 = x_487; -x_465 = x_489; -x_466 = x_491; -x_467 = x_496; -x_468 = x_490; -x_469 = x_493; +lean_inc(x_489); +lean_inc(x_491); +x_460 = x_491; +x_461 = x_489; +x_462 = x_488; +x_463 = x_493; +x_464 = x_490; +x_465 = x_487; +x_466 = x_496; +x_467 = x_485; +x_468 = x_495; +x_469 = x_494; x_470 = x_492; x_471 = x_497; goto block_484; @@ -24273,24 +24981,24 @@ x_506 = lean_ctor_get(x_9, 9); x_507 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_508 = lean_box(0); lean_inc(x_503); -lean_inc(x_504); -lean_inc(x_501); -lean_inc(x_502); -lean_inc(x_500); -lean_inc_ref(x_498); -lean_inc(x_506); lean_inc(x_505); +lean_inc(x_506); +lean_inc_ref(x_498); +lean_inc(x_501); +lean_inc(x_504); lean_inc_ref(x_499); -x_460 = x_485; -x_461 = x_499; -x_462 = x_505; -x_463 = x_506; -x_464 = x_498; -x_465 = x_500; -x_466 = x_502; -x_467 = x_507; -x_468 = x_501; -x_469 = x_504; +lean_inc(x_500); +lean_inc(x_502); +x_460 = x_502; +x_461 = x_500; +x_462 = x_499; +x_463 = x_504; +x_464 = x_501; +x_465 = x_498; +x_466 = x_507; +x_467 = x_485; +x_468 = x_506; +x_469 = x_505; x_470 = x_503; x_471 = x_508; goto block_484; @@ -24312,24 +25020,24 @@ x_517 = lean_ctor_get(x_9, 9); x_518 = lean_ctor_get_uint8(x_9, sizeof(void*)*10); x_519 = lean_box(0); lean_inc(x_514); -lean_inc(x_515); -lean_inc(x_512); -lean_inc(x_513); -lean_inc(x_511); -lean_inc_ref(x_509); -lean_inc(x_517); lean_inc(x_516); +lean_inc(x_517); +lean_inc_ref(x_509); +lean_inc(x_512); +lean_inc(x_515); lean_inc_ref(x_510); -x_460 = x_485; -x_461 = x_510; -x_462 = x_516; -x_463 = x_517; -x_464 = x_509; -x_465 = x_511; -x_466 = x_513; -x_467 = x_518; -x_468 = x_512; -x_469 = x_515; +lean_inc(x_511); +lean_inc(x_513); +x_460 = x_513; +x_461 = x_511; +x_462 = x_510; +x_463 = x_515; +x_464 = x_512; +x_465 = x_509; +x_466 = x_518; +x_467 = x_485; +x_468 = x_517; +x_469 = x_516; x_470 = x_514; x_471 = x_519; goto block_484; @@ -24357,24 +25065,24 @@ if (x_534 == 0) lean_object* x_535; x_535 = lean_box(0); lean_inc(x_526); -lean_inc(x_527); -lean_inc(x_524); -lean_inc(x_525); -lean_inc(x_523); -lean_inc_ref(x_521); -lean_inc(x_529); lean_inc(x_528); +lean_inc(x_529); +lean_inc_ref(x_521); +lean_inc(x_524); +lean_inc(x_527); lean_inc_ref(x_522); -x_460 = x_485; -x_461 = x_522; -x_462 = x_528; -x_463 = x_529; -x_464 = x_521; -x_465 = x_523; -x_466 = x_525; -x_467 = x_530; -x_468 = x_524; -x_469 = x_527; +lean_inc(x_523); +lean_inc(x_525); +x_460 = x_525; +x_461 = x_523; +x_462 = x_522; +x_463 = x_527; +x_464 = x_524; +x_465 = x_521; +x_466 = x_530; +x_467 = x_485; +x_468 = x_529; +x_469 = x_528; x_470 = x_526; x_471 = x_535; goto block_484; @@ -24391,24 +25099,24 @@ lean_ctor_set(x_537, 1, x_536); x_538 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_538, 0, x_537); lean_inc(x_526); -lean_inc(x_527); -lean_inc(x_524); -lean_inc(x_525); -lean_inc(x_523); -lean_inc_ref(x_521); -lean_inc(x_529); lean_inc(x_528); +lean_inc(x_529); +lean_inc_ref(x_521); +lean_inc(x_524); +lean_inc(x_527); lean_inc_ref(x_522); -x_460 = x_485; -x_461 = x_522; -x_462 = x_528; -x_463 = x_529; -x_464 = x_521; -x_465 = x_523; -x_466 = x_525; -x_467 = x_530; -x_468 = x_524; -x_469 = x_527; +lean_inc(x_523); +lean_inc(x_525); +x_460 = x_525; +x_461 = x_523; +x_462 = x_522; +x_463 = x_527; +x_464 = x_524; +x_465 = x_521; +x_466 = x_530; +x_467 = x_485; +x_468 = x_529; +x_469 = x_528; x_470 = x_526; x_471 = x_538; goto block_484; @@ -24499,12 +25207,12 @@ lean_dec(x_188); x_192 = lean_ctor_get(x_185, 1); x_193 = lean_box(0); lean_inc(x_192); -x_136 = x_191; -x_137 = x_192; -x_138 = x_189; -x_139 = lean_box(0); -x_140 = x_190; -x_141 = x_186; +x_136 = lean_box(0); +x_137 = x_189; +x_138 = x_192; +x_139 = x_186; +x_140 = x_191; +x_141 = x_190; x_142 = x_193; goto block_143; } @@ -24527,15 +25235,15 @@ x_201 = l_Lean_Language_DynamicSnapshot_toTyped_x3f___redArg(x_199, x_200); lean_dec(x_200); if (lean_obj_tag(x_201) == 0) { -lean_inc_ref(x_189); lean_inc(x_197); -x_127 = x_196; -x_128 = x_201; +lean_inc_ref(x_189); +x_127 = lean_box(0); +x_128 = x_189; x_129 = x_197; -x_130 = x_189; -x_131 = lean_box(0); -x_132 = x_186; -x_133 = x_195; +x_130 = x_186; +x_131 = x_196; +x_132 = x_195; +x_133 = x_201; goto block_135; } else @@ -24548,16 +25256,16 @@ x_204 = lean_ctor_get(x_202, 3); x_205 = lean_name_eq(x_203, x_4); if (x_205 == 0) { -lean_inc_ref(x_189); lean_inc(x_197); -x_172 = x_196; -x_173 = x_197; -x_174 = x_189; -x_175 = x_201; -x_176 = lean_box(0); -x_177 = x_186; -x_178 = x_195; -x_179 = x_202; +lean_inc_ref(x_189); +x_172 = lean_box(0); +x_173 = x_189; +x_174 = x_202; +x_175 = x_197; +x_176 = x_186; +x_177 = x_201; +x_178 = x_196; +x_179 = x_195; x_180 = x_205; goto block_183; } @@ -24565,16 +25273,16 @@ else { uint8_t x_206; x_206 = lean_nat_dec_eq(x_204, x_195); -lean_inc_ref(x_189); lean_inc(x_197); -x_172 = x_196; -x_173 = x_197; -x_174 = x_189; -x_175 = x_201; -x_176 = lean_box(0); -x_177 = x_186; -x_178 = x_195; -x_179 = x_202; +lean_inc_ref(x_189); +x_172 = lean_box(0); +x_173 = x_189; +x_174 = x_202; +x_175 = x_197; +x_176 = x_186; +x_177 = x_201; +x_178 = x_196; +x_179 = x_195; x_180 = x_206; goto block_183; } @@ -24593,17 +25301,17 @@ return x_212; block_77: { size_t x_19; size_t x_20; lean_object* x_21; -x_19 = lean_array_size(x_16); +x_19 = lean_array_size(x_14); x_20 = 0; -lean_inc_ref(x_16); -x_21 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_19, x_20, x_16); +lean_inc_ref(x_14); +x_21 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_19, x_20, x_14); 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; 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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; 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; 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; x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); lean_dec_ref(x_21); -x_23 = lean_ctor_get(x_14, 9); +x_23 = lean_ctor_get(x_11, 9); x_24 = ((lean_object*)(l_Lean_Elab_Command_Linter_name___autoParam___closed__0)); x_25 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn___closed__5_00___x40_Lean_Elab_Command_1365833295____hygCtx___hyg_2_)); lean_inc_ref(x_1); @@ -24612,9 +25320,9 @@ x_27 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn x_28 = l_Lean_Name_str___override(x_26, x_27); x_29 = lean_unsigned_to_nat(0u); x_30 = l_Lean_Name_num___override(x_28, x_29); -x_31 = lean_ctor_get(x_11, 0); +x_31 = lean_ctor_get(x_15, 0); lean_inc_ref(x_31); -lean_dec_ref(x_11); +lean_dec_ref(x_15); x_32 = lean_ctor_get(x_31, 2); lean_inc(x_32); lean_dec_ref(x_31); @@ -24640,17 +25348,17 @@ x_46 = lean_nat_dec_lt(x_29, x_32); lean_dec(x_32); x_47 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__2; lean_inc(x_23); -x_48 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__4(x_3, x_23, x_22, x_16, x_29, x_47); +x_48 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__4(x_3, x_23, x_22, x_14, x_29, x_47); x_49 = lean_alloc_ctor(0, 5, 1); lean_ctor_set(x_49, 0, x_45); lean_ctor_set(x_49, 1, x_4); lean_ctor_set(x_49, 2, x_5); -lean_ctor_set(x_49, 3, x_15); +lean_ctor_set(x_49, 3, x_16); lean_ctor_set(x_49, 4, x_48); lean_ctor_set_uint8(x_49, sizeof(void*)*5, x_46); x_50 = l_Lean_Language_DynamicSnapshot_ofTyped___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__5(x_33, x_49); -x_51 = lean_io_promise_resolve(x_50, x_12); -lean_dec(x_12); +x_51 = lean_io_promise_resolve(x_50, x_10); +lean_dec(x_10); x_52 = lean_st_ref_get(x_13); x_53 = lean_ctor_get(x_52, 2); lean_inc(x_53); @@ -24663,7 +25371,7 @@ lean_inc_ref(x_56); lean_dec(x_55); x_57 = lean_array_get_size(x_22); x_58 = l_Array_toSubarray___redArg(x_22, x_29, x_57); -x_59 = lean_array_get_size(x_16); +x_59 = lean_array_get_size(x_14); x_60 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__3)); x_61 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_61, 0, x_60); @@ -24675,10 +25383,10 @@ lean_ctor_set(x_63, 1, x_62); x_64 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_64, 0, x_58); lean_ctor_set(x_64, 1, x_63); -x_65 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6(x_3, x_56, x_10, x_18, x_16, x_19, x_20, x_64, x_14, x_13); -lean_dec_ref(x_16); +x_65 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6(x_3, x_56, x_17, x_18, x_14, x_19, x_20, x_64, x_11, x_13); +lean_dec_ref(x_14); lean_dec(x_18); -lean_dec(x_10); +lean_dec(x_17); lean_dec_ref(x_56); if (lean_obj_tag(x_65) == 0) { @@ -24727,11 +25435,11 @@ else { uint8_t x_74; lean_dec(x_18); -lean_dec_ref(x_16); -lean_dec(x_15); +lean_dec(x_17); +lean_dec(x_16); +lean_dec_ref(x_15); lean_dec_ref(x_14); lean_dec(x_13); -lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); lean_dec(x_5); @@ -24759,23 +25467,23 @@ block_88: lean_object* x_87; x_87 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_87, 0, x_86); -x_10 = x_79; -x_11 = x_78; -x_12 = x_80; -x_13 = x_81; -x_14 = x_82; -x_15 = x_84; -x_16 = x_83; -x_17 = lean_box(0); +x_10 = x_78; +x_11 = x_79; +x_12 = lean_box(0); +x_13 = x_82; +x_14 = x_81; +x_15 = x_83; +x_16 = x_84; +x_17 = x_85; x_18 = x_87; goto block_77; } block_103: { lean_object* x_98; uint8_t x_99; -x_98 = lean_ctor_get(x_91, 2); +x_98 = lean_ctor_get(x_94, 2); lean_inc(x_98); -lean_dec_ref(x_91); +lean_dec_ref(x_94); lean_inc(x_98); x_99 = l_Lean_Syntax_isOfKind(x_98, x_6); if (x_99 == 0) @@ -24784,13 +25492,13 @@ lean_object* x_100; lean_object* x_101; x_100 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__4; x_101 = lean_array_push(x_100, x_98); x_78 = x_89; -x_79 = x_90; -x_80 = x_92; -x_81 = x_96; -x_82 = x_95; -x_83 = x_93; -x_84 = x_94; -x_85 = lean_box(0); +x_79 = x_95; +x_80 = lean_box(0); +x_81 = x_90; +x_82 = x_96; +x_83 = x_91; +x_84 = x_92; +x_85 = x_93; x_86 = x_101; goto block_88; } @@ -24800,45 +25508,45 @@ lean_object* x_102; x_102 = l_Lean_Syntax_getArgs(x_98); lean_dec(x_98); x_78 = x_89; -x_79 = x_90; -x_80 = x_92; -x_81 = x_96; -x_82 = x_95; -x_83 = x_93; -x_84 = x_94; -x_85 = lean_box(0); +x_79 = x_95; +x_80 = lean_box(0); +x_81 = x_90; +x_82 = x_96; +x_83 = x_91; +x_84 = x_92; +x_85 = x_93; x_86 = x_102; goto block_88; } } block_114: { -if (lean_obj_tag(x_105) == 0) +if (lean_obj_tag(x_108) == 0) { lean_object* x_112; x_112 = lean_box(0); -x_10 = x_105; -x_11 = x_104; -x_12 = x_106; +x_10 = x_104; +x_11 = x_109; +x_12 = lean_box(0); x_13 = x_110; -x_14 = x_109; -x_15 = x_108; +x_14 = x_105; +x_15 = x_106; x_16 = x_107; -x_17 = lean_box(0); +x_17 = x_108; x_18 = x_112; goto block_77; } else { lean_object* x_113; -x_113 = lean_ctor_get(x_105, 0); +x_113 = lean_ctor_get(x_108, 0); lean_inc(x_113); x_89 = x_104; x_90 = x_105; -x_91 = x_113; -x_92 = x_106; -x_93 = x_107; -x_94 = x_108; +x_91 = x_106; +x_92 = x_107; +x_93 = x_108; +x_94 = x_113; x_95 = x_109; x_96 = x_110; x_97 = lean_box(0); @@ -24847,13 +25555,13 @@ goto block_103; } block_126: { -if (lean_obj_tag(x_118) == 0) +if (lean_obj_tag(x_116) == 0) { -x_104 = x_116; -x_105 = x_115; -x_106 = x_117; -x_107 = x_121; -x_108 = x_120; +x_104 = x_117; +x_105 = x_118; +x_106 = x_119; +x_107 = x_120; +x_108 = x_121; x_109 = x_7; x_110 = x_8; x_111 = lean_box(0); @@ -24862,19 +25570,19 @@ goto block_114; else { lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_122 = lean_ctor_get(x_118, 0); +x_122 = lean_ctor_get(x_116, 0); lean_inc(x_122); -lean_dec_ref(x_118); +lean_dec_ref(x_116); x_123 = lean_ctor_get(x_122, 1); lean_inc(x_123); lean_dec(x_122); x_124 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); x_125 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_124, x_123); -x_104 = x_116; -x_105 = x_115; -x_106 = x_117; -x_107 = x_121; -x_108 = x_120; +x_104 = x_117; +x_105 = x_118; +x_106 = x_119; +x_107 = x_120; +x_108 = x_121; x_109 = x_7; x_110 = x_8; x_111 = lean_box(0); @@ -24883,15 +25591,15 @@ goto block_114; } block_135: { -if (lean_obj_tag(x_128) == 0) +if (lean_obj_tag(x_133) == 0) { -x_115 = x_128; -x_116 = x_127; +x_115 = lean_box(0); +x_116 = x_128; x_117 = x_129; x_118 = x_130; -x_119 = lean_box(0); -x_120 = x_133; -x_121 = x_132; +x_119 = x_131; +x_120 = x_132; +x_121 = x_133; goto block_126; } else @@ -24899,15 +25607,15 @@ else if (x_3 == 0) { lean_object* x_134; -lean_dec(x_130); -x_134 = lean_ctor_get(x_128, 0); +lean_dec(x_128); +x_134 = lean_ctor_get(x_133, 0); lean_inc(x_134); -x_89 = x_127; -x_90 = x_128; -x_91 = x_134; -x_92 = x_129; -x_93 = x_132; -x_94 = x_133; +x_89 = x_129; +x_90 = x_130; +x_91 = x_131; +x_92 = x_132; +x_93 = x_133; +x_94 = x_134; x_95 = x_7; x_96 = x_8; x_97 = lean_box(0); @@ -24915,13 +25623,13 @@ goto block_103; } else { -x_115 = x_128; -x_116 = x_127; +x_115 = lean_box(0); +x_116 = x_128; x_117 = x_129; x_118 = x_130; -x_119 = lean_box(0); -x_120 = x_133; -x_121 = x_132; +x_119 = x_131; +x_120 = x_132; +x_121 = x_133; goto block_126; } } @@ -24930,12 +25638,12 @@ block_143: { if (x_3 == 0) { -lean_dec(x_138); -x_104 = x_136; -x_105 = x_142; -x_106 = x_137; +lean_dec(x_137); +x_104 = x_138; +x_105 = x_139; +x_106 = x_140; x_107 = x_141; -x_108 = x_140; +x_108 = x_142; x_109 = x_7; x_110 = x_8; x_111 = lean_box(0); @@ -24943,24 +25651,24 @@ goto block_114; } else { -x_127 = x_136; -x_128 = x_142; -x_129 = x_137; -x_130 = x_138; -x_131 = lean_box(0); +x_127 = lean_box(0); +x_128 = x_137; +x_129 = x_138; +x_130 = x_139; +x_131 = x_140; x_132 = x_141; -x_133 = x_140; +x_133 = x_142; goto block_135; } } block_151: { -if (lean_obj_tag(x_146) == 0) +if (lean_obj_tag(x_145) == 0) { -x_136 = x_144; +x_136 = lean_box(0); x_137 = x_145; x_138 = x_146; -x_139 = lean_box(0); +x_139 = x_147; x_140 = x_148; x_141 = x_149; x_142 = x_150; @@ -24968,13 +25676,13 @@ goto block_143; } else { -x_127 = x_144; -x_128 = x_150; -x_129 = x_145; -x_130 = x_146; -x_131 = lean_box(0); +x_127 = lean_box(0); +x_128 = x_145; +x_129 = x_146; +x_130 = x_147; +x_131 = x_148; x_132 = x_149; -x_133 = x_148; +x_133 = x_150; goto block_135; } } @@ -24982,55 +25690,55 @@ block_159: { lean_object* x_158; x_158 = lean_box(0); -x_144 = x_152; +x_144 = lean_box(0); x_145 = x_153; x_146 = x_154; -x_147 = lean_box(0); -x_148 = x_157; -x_149 = x_156; +x_147 = x_155; +x_148 = x_156; +x_149 = x_157; x_150 = x_158; goto block_151; } block_171: { lean_object* x_167; lean_object* x_168; lean_object* x_169; uint8_t x_170; -x_167 = lean_ctor_get(x_160, 0); +x_167 = lean_ctor_get(x_165, 0); x_168 = lean_ctor_get(x_167, 2); x_169 = lean_unsigned_to_nat(0u); x_170 = lean_nat_dec_lt(x_169, x_168); if (x_170 == 0) { -x_144 = x_160; +x_144 = lean_box(0); x_145 = x_161; x_146 = x_162; -x_147 = lean_box(0); -x_148 = x_166; -x_149 = x_165; -x_150 = x_163; +x_147 = x_163; +x_148 = x_165; +x_149 = x_166; +x_150 = x_164; goto block_151; } else { if (x_3 == 0) { -lean_dec(x_163); -x_152 = x_160; +lean_dec(x_164); +x_152 = lean_box(0); x_153 = x_161; x_154 = x_162; -x_155 = lean_box(0); +x_155 = x_163; x_156 = x_165; x_157 = x_166; goto block_159; } else { -x_144 = x_160; +x_144 = lean_box(0); x_145 = x_161; x_146 = x_162; -x_147 = lean_box(0); -x_148 = x_166; -x_149 = x_165; -x_150 = x_163; +x_147 = x_163; +x_148 = x_165; +x_149 = x_166; +x_150 = x_164; goto block_151; } } @@ -25040,56 +25748,56 @@ block_183: if (x_180 == 0) { lean_object* x_181; -lean_dec_ref(x_179); -lean_dec(x_175); +lean_dec(x_177); +lean_dec_ref(x_174); x_181 = lean_box(0); -x_144 = x_172; +x_144 = lean_box(0); x_145 = x_173; -x_146 = x_174; -x_147 = lean_box(0); +x_146 = x_175; +x_147 = x_176; x_148 = x_178; -x_149 = x_177; +x_149 = x_179; x_150 = x_181; goto block_151; } else { uint8_t x_182; -x_182 = lean_ctor_get_uint8(x_179, sizeof(void*)*5); -lean_dec_ref(x_179); +x_182 = lean_ctor_get_uint8(x_174, sizeof(void*)*5); +lean_dec_ref(x_174); if (x_182 == 0) { -x_160 = x_172; +x_160 = lean_box(0); x_161 = x_173; -x_162 = x_174; -x_163 = x_175; -x_164 = lean_box(0); -x_165 = x_177; -x_166 = x_178; +x_162 = x_175; +x_163 = x_176; +x_164 = x_177; +x_165 = x_178; +x_166 = x_179; goto block_171; } else { if (x_3 == 0) { -lean_dec(x_175); -x_152 = x_172; +lean_dec(x_177); +x_152 = lean_box(0); x_153 = x_173; -x_154 = x_174; -x_155 = lean_box(0); -x_156 = x_177; -x_157 = x_178; +x_154 = x_175; +x_155 = x_176; +x_156 = x_178; +x_157 = x_179; goto block_159; } else { -x_160 = x_172; +x_160 = lean_box(0); x_161 = x_173; -x_162 = x_174; -x_163 = x_175; -x_164 = lean_box(0); -x_165 = x_177; -x_166 = x_178; +x_162 = x_175; +x_163 = x_176; +x_164 = x_177; +x_165 = x_178; +x_166 = x_179; goto block_171; } } @@ -25301,7 +26009,7 @@ lean_inc_ref(x_33); x_42 = !lean_is_exclusive(x_16); if (x_42 == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_58; lean_object* x_59; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_73; lean_object* x_74; 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_102; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_58; lean_object* x_59; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_73; lean_object* x_74; lean_object* x_77; lean_object* x_78; uint8_t 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_102; x_43 = lean_ctor_get(x_16, 2); lean_dec(x_43); x_44 = lean_ctor_get(x_16, 1); @@ -25430,9 +26138,9 @@ block_72: lean_object* x_71; lean_inc(x_11); lean_inc(x_46); -x_71 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_46, x_1, x_2, x_47, x_69, x_67, x_11); +x_71 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_46, x_1, x_2, x_47, x_69, x_68, x_11); lean_dec(x_47); -x_58 = x_68; +x_58 = x_67; x_59 = x_71; goto block_66; } @@ -25440,8 +26148,8 @@ block_76: { lean_object* x_75; x_75 = lean_box(0); -x_67 = x_73; -x_68 = x_74; +x_67 = x_74; +x_68 = x_73; x_69 = x_75; x_70 = lean_box(0); goto block_72; @@ -25456,17 +26164,17 @@ lean_ctor_set(x_89, 1, x_47); x_90 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_90, 0, x_89); x_91 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_91, 0, x_80); -lean_ctor_set(x_91, 1, x_85); -lean_ctor_set(x_91, 2, x_82); -lean_ctor_set(x_91, 3, x_78); -lean_ctor_set(x_91, 4, x_79); -lean_ctor_set(x_91, 5, x_81); -lean_ctor_set(x_91, 6, x_84); +lean_ctor_set(x_91, 0, x_77); +lean_ctor_set(x_91, 1, x_81); +lean_ctor_set(x_91, 2, x_86); +lean_ctor_set(x_91, 3, x_82); +lean_ctor_set(x_91, 4, x_80); +lean_ctor_set(x_91, 5, x_84); +lean_ctor_set(x_91, 6, x_85); lean_ctor_set(x_91, 7, x_87); lean_ctor_set(x_91, 8, x_90); -lean_ctor_set(x_91, 9, x_86); -lean_ctor_set_uint8(x_91, sizeof(void*)*10, x_77); +lean_ctor_set(x_91, 9, x_83); +lean_ctor_set_uint8(x_91, sizeof(void*)*10, x_79); if (x_2 == 0) { lean_object* x_92; lean_object* x_93; @@ -25476,7 +26184,7 @@ lean_inc(x_11); lean_inc(x_46); x_93 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_46, x_1, x_2, x_47, x_92, x_91, x_11); lean_dec(x_47); -x_58 = x_83; +x_58 = x_78; x_59 = x_93; goto block_66; } @@ -25486,7 +26194,7 @@ if (lean_obj_tag(x_4) == 0) { lean_dec(x_28); x_73 = x_91; -x_74 = x_83; +x_74 = x_78; goto block_76; } else @@ -25500,7 +26208,7 @@ if (x_97 == 0) { lean_dec(x_28); x_73 = x_91; -x_74 = x_83; +x_74 = x_78; goto block_76; } else @@ -25511,8 +26219,8 @@ lean_dec(x_28); x_99 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_98); x_100 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_99, x_98); -x_67 = x_91; -x_68 = x_83; +x_67 = x_78; +x_68 = x_91; x_69 = x_100; x_70 = lean_box(0); goto block_72; @@ -25539,24 +26247,24 @@ x_112 = lean_ctor_get(x_10, 9); x_113 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_114 = lean_box(0); lean_inc(x_111); -lean_inc(x_112); -lean_inc_ref(x_105); -lean_inc(x_110); lean_inc(x_106); +lean_inc(x_110); lean_inc(x_109); -lean_inc_ref(x_104); -lean_inc(x_108); +lean_inc(x_112); lean_inc(x_107); -x_77 = x_113; -x_78 = x_107; -x_79 = x_108; -x_80 = x_104; -x_81 = x_109; -x_82 = x_106; -x_83 = x_102; -x_84 = x_110; -x_85 = x_105; -x_86 = x_112; +lean_inc_ref(x_105); +lean_inc(x_108); +lean_inc_ref(x_104); +x_77 = x_104; +x_78 = x_102; +x_79 = x_113; +x_80 = x_108; +x_81 = x_105; +x_82 = x_107; +x_83 = x_112; +x_84 = x_109; +x_85 = x_110; +x_86 = x_106; x_87 = x_111; x_88 = x_114; goto block_101; @@ -25578,24 +26286,24 @@ x_123 = lean_ctor_get(x_10, 9); x_124 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_125 = lean_box(0); lean_inc(x_122); -lean_inc(x_123); -lean_inc_ref(x_116); -lean_inc(x_121); lean_inc(x_117); +lean_inc(x_121); lean_inc(x_120); -lean_inc_ref(x_115); -lean_inc(x_119); +lean_inc(x_123); lean_inc(x_118); -x_77 = x_124; -x_78 = x_118; -x_79 = x_119; -x_80 = x_115; -x_81 = x_120; -x_82 = x_117; -x_83 = x_102; -x_84 = x_121; -x_85 = x_116; -x_86 = x_123; +lean_inc_ref(x_116); +lean_inc(x_119); +lean_inc_ref(x_115); +x_77 = x_115; +x_78 = x_102; +x_79 = x_124; +x_80 = x_119; +x_81 = x_116; +x_82 = x_118; +x_83 = x_123; +x_84 = x_120; +x_85 = x_121; +x_86 = x_117; x_87 = x_122; x_88 = x_125; goto block_101; @@ -25617,24 +26325,24 @@ x_134 = lean_ctor_get(x_10, 9); x_135 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_136 = lean_box(0); lean_inc(x_133); -lean_inc(x_134); -lean_inc_ref(x_127); -lean_inc(x_132); lean_inc(x_128); +lean_inc(x_132); lean_inc(x_131); -lean_inc_ref(x_126); -lean_inc(x_130); +lean_inc(x_134); lean_inc(x_129); -x_77 = x_135; -x_78 = x_129; -x_79 = x_130; -x_80 = x_126; -x_81 = x_131; -x_82 = x_128; -x_83 = x_102; -x_84 = x_132; -x_85 = x_127; -x_86 = x_134; +lean_inc_ref(x_127); +lean_inc(x_130); +lean_inc_ref(x_126); +x_77 = x_126; +x_78 = x_102; +x_79 = x_135; +x_80 = x_130; +x_81 = x_127; +x_82 = x_129; +x_83 = x_134; +x_84 = x_131; +x_85 = x_132; +x_86 = x_128; x_87 = x_133; x_88 = x_136; goto block_101; @@ -25662,24 +26370,24 @@ if (x_151 == 0) lean_object* x_152; x_152 = lean_box(0); lean_inc(x_145); -lean_inc(x_146); -lean_inc_ref(x_139); -lean_inc(x_144); lean_inc(x_140); +lean_inc(x_144); lean_inc(x_143); -lean_inc_ref(x_138); -lean_inc(x_142); +lean_inc(x_146); lean_inc(x_141); -x_77 = x_147; -x_78 = x_141; -x_79 = x_142; -x_80 = x_138; -x_81 = x_143; -x_82 = x_140; -x_83 = x_102; -x_84 = x_144; -x_85 = x_139; -x_86 = x_146; +lean_inc_ref(x_139); +lean_inc(x_142); +lean_inc_ref(x_138); +x_77 = x_138; +x_78 = x_102; +x_79 = x_147; +x_80 = x_142; +x_81 = x_139; +x_82 = x_141; +x_83 = x_146; +x_84 = x_143; +x_85 = x_144; +x_86 = x_140; x_87 = x_145; x_88 = x_152; goto block_101; @@ -25696,24 +26404,24 @@ lean_ctor_set(x_154, 1, x_153); x_155 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_155, 0, x_154); lean_inc(x_145); -lean_inc(x_146); -lean_inc_ref(x_139); -lean_inc(x_144); lean_inc(x_140); +lean_inc(x_144); lean_inc(x_143); -lean_inc_ref(x_138); -lean_inc(x_142); +lean_inc(x_146); lean_inc(x_141); -x_77 = x_147; -x_78 = x_141; -x_79 = x_142; -x_80 = x_138; -x_81 = x_143; -x_82 = x_140; -x_83 = x_102; -x_84 = x_144; -x_85 = x_139; -x_86 = x_146; +lean_inc_ref(x_139); +lean_inc(x_142); +lean_inc_ref(x_138); +x_77 = x_138; +x_78 = x_102; +x_79 = x_147; +x_80 = x_142; +x_81 = x_139; +x_82 = x_141; +x_83 = x_146; +x_84 = x_143; +x_85 = x_144; +x_86 = x_140; x_87 = x_145; x_88 = x_155; goto block_101; @@ -25725,7 +26433,7 @@ goto block_101; } else { -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_177; lean_object* x_178; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_192; lean_object* x_193; uint8_t x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_221; +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_177; lean_object* x_178; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_192; lean_object* x_193; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_221; lean_dec(x_16); x_164 = lean_array_uget(x_6, x_8); x_165 = lean_array_fget(x_33, x_34); @@ -25853,9 +26561,9 @@ block_191: lean_object* x_190; lean_inc(x_11); lean_inc(x_164); -x_190 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_164, x_1, x_2, x_165, x_188, x_186, x_11); +x_190 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_164, x_1, x_2, x_165, x_188, x_187, x_11); lean_dec(x_165); -x_177 = x_187; +x_177 = x_186; x_178 = x_190; goto block_185; } @@ -25863,8 +26571,8 @@ block_195: { lean_object* x_194; x_194 = lean_box(0); -x_186 = x_192; -x_187 = x_193; +x_186 = x_193; +x_187 = x_192; x_188 = x_194; x_189 = lean_box(0); goto block_191; @@ -25879,17 +26587,17 @@ lean_ctor_set(x_208, 1, x_165); x_209 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_209, 0, x_208); x_210 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_210, 0, x_199); -lean_ctor_set(x_210, 1, x_204); -lean_ctor_set(x_210, 2, x_201); -lean_ctor_set(x_210, 3, x_197); -lean_ctor_set(x_210, 4, x_198); -lean_ctor_set(x_210, 5, x_200); -lean_ctor_set(x_210, 6, x_203); +lean_ctor_set(x_210, 0, x_196); +lean_ctor_set(x_210, 1, x_200); +lean_ctor_set(x_210, 2, x_205); +lean_ctor_set(x_210, 3, x_201); +lean_ctor_set(x_210, 4, x_199); +lean_ctor_set(x_210, 5, x_203); +lean_ctor_set(x_210, 6, x_204); lean_ctor_set(x_210, 7, x_206); lean_ctor_set(x_210, 8, x_209); -lean_ctor_set(x_210, 9, x_205); -lean_ctor_set_uint8(x_210, sizeof(void*)*10, x_196); +lean_ctor_set(x_210, 9, x_202); +lean_ctor_set_uint8(x_210, sizeof(void*)*10, x_198); if (x_2 == 0) { lean_object* x_211; lean_object* x_212; @@ -25899,7 +26607,7 @@ lean_inc(x_11); lean_inc(x_164); x_212 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_164, x_1, x_2, x_165, x_211, x_210, x_11); lean_dec(x_165); -x_177 = x_202; +x_177 = x_197; x_178 = x_212; goto block_185; } @@ -25909,7 +26617,7 @@ if (lean_obj_tag(x_4) == 0) { lean_dec(x_28); x_192 = x_210; -x_193 = x_202; +x_193 = x_197; goto block_195; } else @@ -25923,7 +26631,7 @@ if (x_216 == 0) { lean_dec(x_28); x_192 = x_210; -x_193 = x_202; +x_193 = x_197; goto block_195; } else @@ -25934,8 +26642,8 @@ lean_dec(x_28); x_218 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_217); x_219 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_218, x_217); -x_186 = x_210; -x_187 = x_202; +x_186 = x_197; +x_187 = x_210; x_188 = x_219; x_189 = lean_box(0); goto block_191; @@ -25962,24 +26670,24 @@ x_231 = lean_ctor_get(x_10, 9); x_232 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_233 = lean_box(0); lean_inc(x_230); -lean_inc(x_231); -lean_inc_ref(x_224); -lean_inc(x_229); lean_inc(x_225); +lean_inc(x_229); lean_inc(x_228); -lean_inc_ref(x_223); -lean_inc(x_227); +lean_inc(x_231); lean_inc(x_226); -x_196 = x_232; -x_197 = x_226; -x_198 = x_227; -x_199 = x_223; -x_200 = x_228; -x_201 = x_225; -x_202 = x_221; -x_203 = x_229; -x_204 = x_224; -x_205 = x_231; +lean_inc_ref(x_224); +lean_inc(x_227); +lean_inc_ref(x_223); +x_196 = x_223; +x_197 = x_221; +x_198 = x_232; +x_199 = x_227; +x_200 = x_224; +x_201 = x_226; +x_202 = x_231; +x_203 = x_228; +x_204 = x_229; +x_205 = x_225; x_206 = x_230; x_207 = x_233; goto block_220; @@ -26001,24 +26709,24 @@ x_242 = lean_ctor_get(x_10, 9); x_243 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_244 = lean_box(0); lean_inc(x_241); -lean_inc(x_242); -lean_inc_ref(x_235); -lean_inc(x_240); lean_inc(x_236); +lean_inc(x_240); lean_inc(x_239); -lean_inc_ref(x_234); -lean_inc(x_238); +lean_inc(x_242); lean_inc(x_237); -x_196 = x_243; -x_197 = x_237; -x_198 = x_238; -x_199 = x_234; -x_200 = x_239; -x_201 = x_236; -x_202 = x_221; -x_203 = x_240; -x_204 = x_235; -x_205 = x_242; +lean_inc_ref(x_235); +lean_inc(x_238); +lean_inc_ref(x_234); +x_196 = x_234; +x_197 = x_221; +x_198 = x_243; +x_199 = x_238; +x_200 = x_235; +x_201 = x_237; +x_202 = x_242; +x_203 = x_239; +x_204 = x_240; +x_205 = x_236; x_206 = x_241; x_207 = x_244; goto block_220; @@ -26040,24 +26748,24 @@ x_253 = lean_ctor_get(x_10, 9); x_254 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_255 = lean_box(0); lean_inc(x_252); -lean_inc(x_253); -lean_inc_ref(x_246); -lean_inc(x_251); lean_inc(x_247); +lean_inc(x_251); lean_inc(x_250); -lean_inc_ref(x_245); -lean_inc(x_249); +lean_inc(x_253); lean_inc(x_248); -x_196 = x_254; -x_197 = x_248; -x_198 = x_249; -x_199 = x_245; -x_200 = x_250; -x_201 = x_247; -x_202 = x_221; -x_203 = x_251; -x_204 = x_246; -x_205 = x_253; +lean_inc_ref(x_246); +lean_inc(x_249); +lean_inc_ref(x_245); +x_196 = x_245; +x_197 = x_221; +x_198 = x_254; +x_199 = x_249; +x_200 = x_246; +x_201 = x_248; +x_202 = x_253; +x_203 = x_250; +x_204 = x_251; +x_205 = x_247; x_206 = x_252; x_207 = x_255; goto block_220; @@ -26085,24 +26793,24 @@ if (x_270 == 0) lean_object* x_271; x_271 = lean_box(0); lean_inc(x_264); -lean_inc(x_265); -lean_inc_ref(x_258); -lean_inc(x_263); lean_inc(x_259); +lean_inc(x_263); lean_inc(x_262); -lean_inc_ref(x_257); -lean_inc(x_261); +lean_inc(x_265); lean_inc(x_260); -x_196 = x_266; -x_197 = x_260; -x_198 = x_261; -x_199 = x_257; -x_200 = x_262; -x_201 = x_259; -x_202 = x_221; -x_203 = x_263; -x_204 = x_258; -x_205 = x_265; +lean_inc_ref(x_258); +lean_inc(x_261); +lean_inc_ref(x_257); +x_196 = x_257; +x_197 = x_221; +x_198 = x_266; +x_199 = x_261; +x_200 = x_258; +x_201 = x_260; +x_202 = x_265; +x_203 = x_262; +x_204 = x_263; +x_205 = x_259; x_206 = x_264; x_207 = x_271; goto block_220; @@ -26119,24 +26827,24 @@ lean_ctor_set(x_273, 1, x_272); x_274 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_274, 0, x_273); lean_inc(x_264); -lean_inc(x_265); -lean_inc_ref(x_258); -lean_inc(x_263); lean_inc(x_259); +lean_inc(x_263); lean_inc(x_262); -lean_inc_ref(x_257); -lean_inc(x_261); +lean_inc(x_265); lean_inc(x_260); -x_196 = x_266; -x_197 = x_260; -x_198 = x_261; -x_199 = x_257; -x_200 = x_262; -x_201 = x_259; -x_202 = x_221; -x_203 = x_263; -x_204 = x_258; -x_205 = x_265; +lean_inc_ref(x_258); +lean_inc(x_261); +lean_inc_ref(x_257); +x_196 = x_257; +x_197 = x_221; +x_198 = x_266; +x_199 = x_261; +x_200 = x_258; +x_201 = x_260; +x_202 = x_265; +x_203 = x_262; +x_204 = x_263; +x_205 = x_259; x_206 = x_264; x_207 = x_274; goto block_220; @@ -26180,7 +26888,7 @@ return x_292; } else { -lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_307; lean_object* x_308; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_322; lean_object* x_323; uint8_t x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_351; +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_307; lean_object* x_308; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_322; lean_object* x_323; lean_object* x_326; lean_object* x_327; uint8_t x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_351; lean_inc(x_285); lean_inc(x_284); lean_inc_ref(x_283); @@ -26323,9 +27031,9 @@ block_321: lean_object* x_320; lean_inc(x_11); lean_inc(x_294); -x_320 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_294, x_1, x_2, x_295, x_318, x_316, x_11); +x_320 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_294, x_1, x_2, x_295, x_318, x_317, x_11); lean_dec(x_295); -x_307 = x_317; +x_307 = x_316; x_308 = x_320; goto block_315; } @@ -26333,8 +27041,8 @@ block_325: { lean_object* x_324; x_324 = lean_box(0); -x_316 = x_322; -x_317 = x_323; +x_316 = x_323; +x_317 = x_322; x_318 = x_324; x_319 = lean_box(0); goto block_321; @@ -26349,17 +27057,17 @@ lean_ctor_set(x_338, 1, x_295); x_339 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_339, 0, x_338); x_340 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_340, 0, x_329); -lean_ctor_set(x_340, 1, x_334); -lean_ctor_set(x_340, 2, x_331); -lean_ctor_set(x_340, 3, x_327); -lean_ctor_set(x_340, 4, x_328); -lean_ctor_set(x_340, 5, x_330); -lean_ctor_set(x_340, 6, x_333); +lean_ctor_set(x_340, 0, x_326); +lean_ctor_set(x_340, 1, x_330); +lean_ctor_set(x_340, 2, x_335); +lean_ctor_set(x_340, 3, x_331); +lean_ctor_set(x_340, 4, x_329); +lean_ctor_set(x_340, 5, x_333); +lean_ctor_set(x_340, 6, x_334); lean_ctor_set(x_340, 7, x_336); lean_ctor_set(x_340, 8, x_339); -lean_ctor_set(x_340, 9, x_335); -lean_ctor_set_uint8(x_340, sizeof(void*)*10, x_326); +lean_ctor_set(x_340, 9, x_332); +lean_ctor_set_uint8(x_340, sizeof(void*)*10, x_328); if (x_2 == 0) { lean_object* x_341; lean_object* x_342; @@ -26369,7 +27077,7 @@ lean_inc(x_11); lean_inc(x_294); x_342 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_294, x_1, x_2, x_295, x_341, x_340, x_11); lean_dec(x_295); -x_307 = x_332; +x_307 = x_327; x_308 = x_342; goto block_315; } @@ -26379,7 +27087,7 @@ if (lean_obj_tag(x_4) == 0) { lean_dec(x_28); x_322 = x_340; -x_323 = x_332; +x_323 = x_327; goto block_325; } else @@ -26393,7 +27101,7 @@ if (x_346 == 0) { lean_dec(x_28); x_322 = x_340; -x_323 = x_332; +x_323 = x_327; goto block_325; } else @@ -26404,8 +27112,8 @@ lean_dec(x_28); x_348 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_347); x_349 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_348, x_347); -x_316 = x_340; -x_317 = x_332; +x_316 = x_327; +x_317 = x_340; x_318 = x_349; x_319 = lean_box(0); goto block_321; @@ -26432,24 +27140,24 @@ x_361 = lean_ctor_get(x_10, 9); x_362 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_363 = lean_box(0); lean_inc(x_360); -lean_inc(x_361); -lean_inc_ref(x_354); -lean_inc(x_359); lean_inc(x_355); +lean_inc(x_359); lean_inc(x_358); -lean_inc_ref(x_353); -lean_inc(x_357); +lean_inc(x_361); lean_inc(x_356); -x_326 = x_362; -x_327 = x_356; -x_328 = x_357; -x_329 = x_353; -x_330 = x_358; -x_331 = x_355; -x_332 = x_351; -x_333 = x_359; -x_334 = x_354; -x_335 = x_361; +lean_inc_ref(x_354); +lean_inc(x_357); +lean_inc_ref(x_353); +x_326 = x_353; +x_327 = x_351; +x_328 = x_362; +x_329 = x_357; +x_330 = x_354; +x_331 = x_356; +x_332 = x_361; +x_333 = x_358; +x_334 = x_359; +x_335 = x_355; x_336 = x_360; x_337 = x_363; goto block_350; @@ -26471,24 +27179,24 @@ x_372 = lean_ctor_get(x_10, 9); x_373 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_374 = lean_box(0); lean_inc(x_371); -lean_inc(x_372); -lean_inc_ref(x_365); -lean_inc(x_370); lean_inc(x_366); +lean_inc(x_370); lean_inc(x_369); -lean_inc_ref(x_364); -lean_inc(x_368); +lean_inc(x_372); lean_inc(x_367); -x_326 = x_373; -x_327 = x_367; -x_328 = x_368; -x_329 = x_364; -x_330 = x_369; -x_331 = x_366; -x_332 = x_351; -x_333 = x_370; -x_334 = x_365; -x_335 = x_372; +lean_inc_ref(x_365); +lean_inc(x_368); +lean_inc_ref(x_364); +x_326 = x_364; +x_327 = x_351; +x_328 = x_373; +x_329 = x_368; +x_330 = x_365; +x_331 = x_367; +x_332 = x_372; +x_333 = x_369; +x_334 = x_370; +x_335 = x_366; x_336 = x_371; x_337 = x_374; goto block_350; @@ -26510,24 +27218,24 @@ x_383 = lean_ctor_get(x_10, 9); x_384 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_385 = lean_box(0); lean_inc(x_382); -lean_inc(x_383); -lean_inc_ref(x_376); -lean_inc(x_381); lean_inc(x_377); +lean_inc(x_381); lean_inc(x_380); -lean_inc_ref(x_375); -lean_inc(x_379); +lean_inc(x_383); lean_inc(x_378); -x_326 = x_384; -x_327 = x_378; -x_328 = x_379; -x_329 = x_375; -x_330 = x_380; -x_331 = x_377; -x_332 = x_351; -x_333 = x_381; -x_334 = x_376; -x_335 = x_383; +lean_inc_ref(x_376); +lean_inc(x_379); +lean_inc_ref(x_375); +x_326 = x_375; +x_327 = x_351; +x_328 = x_384; +x_329 = x_379; +x_330 = x_376; +x_331 = x_378; +x_332 = x_383; +x_333 = x_380; +x_334 = x_381; +x_335 = x_377; x_336 = x_382; x_337 = x_385; goto block_350; @@ -26555,24 +27263,24 @@ if (x_400 == 0) lean_object* x_401; x_401 = lean_box(0); lean_inc(x_394); -lean_inc(x_395); -lean_inc_ref(x_388); -lean_inc(x_393); lean_inc(x_389); +lean_inc(x_393); lean_inc(x_392); -lean_inc_ref(x_387); -lean_inc(x_391); +lean_inc(x_395); lean_inc(x_390); -x_326 = x_396; -x_327 = x_390; -x_328 = x_391; -x_329 = x_387; -x_330 = x_392; -x_331 = x_389; -x_332 = x_351; -x_333 = x_393; -x_334 = x_388; -x_335 = x_395; +lean_inc_ref(x_388); +lean_inc(x_391); +lean_inc_ref(x_387); +x_326 = x_387; +x_327 = x_351; +x_328 = x_396; +x_329 = x_391; +x_330 = x_388; +x_331 = x_390; +x_332 = x_395; +x_333 = x_392; +x_334 = x_393; +x_335 = x_389; x_336 = x_394; x_337 = x_401; goto block_350; @@ -26589,24 +27297,24 @@ lean_ctor_set(x_403, 1, x_402); x_404 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_404, 0, x_403); lean_inc(x_394); -lean_inc(x_395); -lean_inc_ref(x_388); -lean_inc(x_393); lean_inc(x_389); +lean_inc(x_393); lean_inc(x_392); -lean_inc_ref(x_387); -lean_inc(x_391); +lean_inc(x_395); lean_inc(x_390); -x_326 = x_396; -x_327 = x_390; -x_328 = x_391; -x_329 = x_387; -x_330 = x_392; -x_331 = x_389; -x_332 = x_351; -x_333 = x_393; -x_334 = x_388; -x_335 = x_395; +lean_inc_ref(x_388); +lean_inc(x_391); +lean_inc_ref(x_387); +x_326 = x_387; +x_327 = x_351; +x_328 = x_396; +x_329 = x_391; +x_330 = x_388; +x_331 = x_390; +x_332 = x_395; +x_333 = x_392; +x_334 = x_393; +x_335 = x_389; x_336 = x_394; x_337 = x_404; goto block_350; @@ -26681,7 +27389,7 @@ return x_427; } else { -lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; uint8_t x_434; lean_object* x_442; lean_object* x_443; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_457; lean_object* x_458; uint8_t x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_486; +lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; uint8_t x_434; lean_object* x_442; lean_object* x_443; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_457; lean_object* x_458; lean_object* x_461; lean_object* x_462; uint8_t x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_486; lean_inc(x_419); lean_inc(x_418); lean_inc_ref(x_417); @@ -26824,9 +27532,9 @@ block_456: lean_object* x_455; lean_inc(x_11); lean_inc(x_429); -x_455 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_429, x_1, x_2, x_430, x_453, x_451, x_11); +x_455 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_429, x_1, x_2, x_430, x_453, x_452, x_11); lean_dec(x_430); -x_442 = x_452; +x_442 = x_451; x_443 = x_455; goto block_450; } @@ -26834,8 +27542,8 @@ block_460: { lean_object* x_459; x_459 = lean_box(0); -x_451 = x_457; -x_452 = x_458; +x_451 = x_458; +x_452 = x_457; x_453 = x_459; x_454 = lean_box(0); goto block_456; @@ -26850,17 +27558,17 @@ lean_ctor_set(x_473, 1, x_430); x_474 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_474, 0, x_473); x_475 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_475, 0, x_464); -lean_ctor_set(x_475, 1, x_469); -lean_ctor_set(x_475, 2, x_466); -lean_ctor_set(x_475, 3, x_462); -lean_ctor_set(x_475, 4, x_463); -lean_ctor_set(x_475, 5, x_465); -lean_ctor_set(x_475, 6, x_468); +lean_ctor_set(x_475, 0, x_461); +lean_ctor_set(x_475, 1, x_465); +lean_ctor_set(x_475, 2, x_470); +lean_ctor_set(x_475, 3, x_466); +lean_ctor_set(x_475, 4, x_464); +lean_ctor_set(x_475, 5, x_468); +lean_ctor_set(x_475, 6, x_469); lean_ctor_set(x_475, 7, x_471); lean_ctor_set(x_475, 8, x_474); -lean_ctor_set(x_475, 9, x_470); -lean_ctor_set_uint8(x_475, sizeof(void*)*10, x_461); +lean_ctor_set(x_475, 9, x_467); +lean_ctor_set_uint8(x_475, sizeof(void*)*10, x_463); if (x_2 == 0) { lean_object* x_476; lean_object* x_477; @@ -26870,7 +27578,7 @@ lean_inc(x_11); lean_inc(x_429); x_477 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___lam__0(x_429, x_1, x_2, x_430, x_476, x_475, x_11); lean_dec(x_430); -x_442 = x_467; +x_442 = x_462; x_443 = x_477; goto block_450; } @@ -26880,7 +27588,7 @@ if (lean_obj_tag(x_4) == 0) { lean_dec(x_414); x_457 = x_475; -x_458 = x_467; +x_458 = x_462; goto block_460; } else @@ -26894,7 +27602,7 @@ if (x_481 == 0) { lean_dec(x_414); x_457 = x_475; -x_458 = x_467; +x_458 = x_462; goto block_460; } else @@ -26905,8 +27613,8 @@ lean_dec(x_414); x_483 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); lean_inc(x_482); x_484 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_483, x_482); -x_451 = x_475; -x_452 = x_467; +x_451 = x_462; +x_452 = x_475; x_453 = x_484; x_454 = lean_box(0); goto block_456; @@ -26933,24 +27641,24 @@ x_496 = lean_ctor_get(x_10, 9); x_497 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_498 = lean_box(0); lean_inc(x_495); -lean_inc(x_496); -lean_inc_ref(x_489); -lean_inc(x_494); lean_inc(x_490); +lean_inc(x_494); lean_inc(x_493); -lean_inc_ref(x_488); -lean_inc(x_492); +lean_inc(x_496); lean_inc(x_491); -x_461 = x_497; -x_462 = x_491; -x_463 = x_492; -x_464 = x_488; -x_465 = x_493; -x_466 = x_490; -x_467 = x_486; -x_468 = x_494; -x_469 = x_489; -x_470 = x_496; +lean_inc_ref(x_489); +lean_inc(x_492); +lean_inc_ref(x_488); +x_461 = x_488; +x_462 = x_486; +x_463 = x_497; +x_464 = x_492; +x_465 = x_489; +x_466 = x_491; +x_467 = x_496; +x_468 = x_493; +x_469 = x_494; +x_470 = x_490; x_471 = x_495; x_472 = x_498; goto block_485; @@ -26972,24 +27680,24 @@ x_507 = lean_ctor_get(x_10, 9); x_508 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_509 = lean_box(0); lean_inc(x_506); -lean_inc(x_507); -lean_inc_ref(x_500); -lean_inc(x_505); lean_inc(x_501); +lean_inc(x_505); lean_inc(x_504); -lean_inc_ref(x_499); -lean_inc(x_503); +lean_inc(x_507); lean_inc(x_502); -x_461 = x_508; -x_462 = x_502; -x_463 = x_503; -x_464 = x_499; -x_465 = x_504; -x_466 = x_501; -x_467 = x_486; -x_468 = x_505; -x_469 = x_500; -x_470 = x_507; +lean_inc_ref(x_500); +lean_inc(x_503); +lean_inc_ref(x_499); +x_461 = x_499; +x_462 = x_486; +x_463 = x_508; +x_464 = x_503; +x_465 = x_500; +x_466 = x_502; +x_467 = x_507; +x_468 = x_504; +x_469 = x_505; +x_470 = x_501; x_471 = x_506; x_472 = x_509; goto block_485; @@ -27011,24 +27719,24 @@ x_518 = lean_ctor_get(x_10, 9); x_519 = lean_ctor_get_uint8(x_10, sizeof(void*)*10); x_520 = lean_box(0); lean_inc(x_517); -lean_inc(x_518); -lean_inc_ref(x_511); -lean_inc(x_516); lean_inc(x_512); +lean_inc(x_516); lean_inc(x_515); -lean_inc_ref(x_510); -lean_inc(x_514); +lean_inc(x_518); lean_inc(x_513); -x_461 = x_519; -x_462 = x_513; -x_463 = x_514; -x_464 = x_510; -x_465 = x_515; -x_466 = x_512; -x_467 = x_486; -x_468 = x_516; -x_469 = x_511; -x_470 = x_518; +lean_inc_ref(x_511); +lean_inc(x_514); +lean_inc_ref(x_510); +x_461 = x_510; +x_462 = x_486; +x_463 = x_519; +x_464 = x_514; +x_465 = x_511; +x_466 = x_513; +x_467 = x_518; +x_468 = x_515; +x_469 = x_516; +x_470 = x_512; x_471 = x_517; x_472 = x_520; goto block_485; @@ -27056,24 +27764,24 @@ if (x_535 == 0) lean_object* x_536; x_536 = lean_box(0); lean_inc(x_529); -lean_inc(x_530); -lean_inc_ref(x_523); -lean_inc(x_528); lean_inc(x_524); +lean_inc(x_528); lean_inc(x_527); -lean_inc_ref(x_522); -lean_inc(x_526); +lean_inc(x_530); lean_inc(x_525); -x_461 = x_531; -x_462 = x_525; -x_463 = x_526; -x_464 = x_522; -x_465 = x_527; -x_466 = x_524; -x_467 = x_486; -x_468 = x_528; -x_469 = x_523; -x_470 = x_530; +lean_inc_ref(x_523); +lean_inc(x_526); +lean_inc_ref(x_522); +x_461 = x_522; +x_462 = x_486; +x_463 = x_531; +x_464 = x_526; +x_465 = x_523; +x_466 = x_525; +x_467 = x_530; +x_468 = x_527; +x_469 = x_528; +x_470 = x_524; x_471 = x_529; x_472 = x_536; goto block_485; @@ -27090,24 +27798,24 @@ lean_ctor_set(x_538, 1, x_537); x_539 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_539, 0, x_538); lean_inc(x_529); -lean_inc(x_530); -lean_inc_ref(x_523); -lean_inc(x_528); lean_inc(x_524); +lean_inc(x_528); lean_inc(x_527); -lean_inc_ref(x_522); -lean_inc(x_526); +lean_inc(x_530); lean_inc(x_525); -x_461 = x_531; -x_462 = x_525; -x_463 = x_526; -x_464 = x_522; -x_465 = x_527; -x_466 = x_524; -x_467 = x_486; -x_468 = x_528; -x_469 = x_523; -x_470 = x_530; +lean_inc_ref(x_523); +lean_inc(x_526); +lean_inc_ref(x_522); +x_461 = x_522; +x_462 = x_486; +x_463 = x_531; +x_464 = x_526; +x_465 = x_523; +x_466 = x_525; +x_467 = x_530; +x_468 = x_527; +x_469 = x_528; +x_470 = x_524; x_471 = x_529; x_472 = x_539; goto block_485; @@ -27189,12 +27897,12 @@ lean_dec(x_189); x_193 = lean_ctor_get(x_186, 1); x_194 = lean_box(0); lean_inc(x_193); -x_137 = x_191; -x_138 = x_190; -x_139 = x_193; -x_140 = lean_box(0); +x_137 = x_193; +x_138 = x_192; +x_139 = lean_box(0); +x_140 = x_191; x_141 = x_187; -x_142 = x_192; +x_142 = x_190; x_143 = x_194; goto block_144; } @@ -27217,15 +27925,15 @@ x_202 = l_Lean_Language_DynamicSnapshot_toTyped_x3f___redArg(x_200, x_201); lean_dec(x_201); if (lean_obj_tag(x_202) == 0) { -lean_inc(x_198); lean_inc_ref(x_190); -x_128 = x_196; -x_129 = x_190; -x_130 = x_198; -x_131 = x_202; -x_132 = lean_box(0); -x_133 = x_187; -x_134 = x_197; +lean_inc(x_198); +x_128 = x_197; +x_129 = x_198; +x_130 = lean_box(0); +x_131 = x_187; +x_132 = x_196; +x_133 = x_202; +x_134 = x_190; goto block_136; } else @@ -27238,16 +27946,16 @@ x_205 = lean_ctor_get(x_203, 3); x_206 = lean_name_eq(x_204, x_5); if (x_206 == 0) { -lean_inc(x_198); lean_inc_ref(x_190); -x_173 = x_196; -x_174 = x_190; -x_175 = x_202; -x_176 = x_198; +lean_inc(x_198); +x_173 = x_197; +x_174 = x_198; +x_175 = lean_box(0); +x_176 = x_202; x_177 = x_187; -x_178 = lean_box(0); -x_179 = x_197; -x_180 = x_203; +x_178 = x_196; +x_179 = x_203; +x_180 = x_190; x_181 = x_206; goto block_184; } @@ -27255,16 +27963,16 @@ else { uint8_t x_207; x_207 = lean_nat_dec_eq(x_205, x_196); -lean_inc(x_198); lean_inc_ref(x_190); -x_173 = x_196; -x_174 = x_190; -x_175 = x_202; -x_176 = x_198; +lean_inc(x_198); +x_173 = x_197; +x_174 = x_198; +x_175 = lean_box(0); +x_176 = x_202; x_177 = x_187; -x_178 = lean_box(0); -x_179 = x_197; -x_180 = x_203; +x_178 = x_196; +x_179 = x_203; +x_180 = x_190; x_181 = x_207; goto block_184; } @@ -27284,17 +27992,17 @@ return x_213; block_78: { size_t x_21; size_t x_22; lean_object* x_23; -x_21 = lean_array_size(x_17); +x_21 = lean_array_size(x_16); x_22 = 0; -lean_inc_ref(x_17); -x_23 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_21, x_22, x_17); +lean_inc_ref(x_16); +x_23 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_21, x_22, x_16); 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; lean_object* x_34; lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t 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; x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); lean_dec_ref(x_23); -x_25 = lean_ctor_get(x_14, 9); +x_25 = lean_ctor_get(x_17, 9); x_26 = ((lean_object*)(l_Lean_Elab_Command_Linter_name___autoParam___closed__0)); x_27 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn___closed__5_00___x40_Lean_Elab_Command_1365833295____hygCtx___hyg_2_)); lean_inc_ref(x_1); @@ -27303,9 +28011,9 @@ x_29 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn x_30 = l_Lean_Name_str___override(x_28, x_29); x_31 = lean_unsigned_to_nat(0u); x_32 = l_Lean_Name_num___override(x_30, x_31); -x_33 = lean_ctor_get(x_19, 0); +x_33 = lean_ctor_get(x_13, 0); lean_inc_ref(x_33); -lean_dec_ref(x_19); +lean_dec_ref(x_13); x_34 = lean_ctor_get(x_33, 2); lean_inc(x_34); lean_dec_ref(x_33); @@ -27331,18 +28039,18 @@ x_48 = lean_nat_dec_lt(x_31, x_34); lean_dec(x_34); x_49 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__2; lean_inc(x_25); -x_50 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__7(x_4, x_3, x_25, x_24, x_17, x_31, x_49); +x_50 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__7(x_4, x_3, x_25, x_24, x_16, x_31, x_49); x_51 = lean_alloc_ctor(0, 5, 1); lean_ctor_set(x_51, 0, x_47); lean_ctor_set(x_51, 1, x_5); lean_ctor_set(x_51, 2, x_6); -lean_ctor_set(x_51, 3, x_12); +lean_ctor_set(x_51, 3, x_15); lean_ctor_set(x_51, 4, x_50); lean_ctor_set_uint8(x_51, sizeof(void*)*5, x_48); x_52 = l_Lean_Language_DynamicSnapshot_ofTyped___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__5(x_35, x_51); -x_53 = lean_io_promise_resolve(x_52, x_13); -lean_dec(x_13); -x_54 = lean_st_ref_get(x_16); +x_53 = lean_io_promise_resolve(x_52, x_12); +lean_dec(x_12); +x_54 = lean_st_ref_get(x_19); x_55 = lean_ctor_get(x_54, 2); lean_inc(x_55); lean_dec(x_54); @@ -27353,7 +28061,7 @@ lean_inc_ref(x_57); lean_dec(x_56); x_58 = lean_array_get_size(x_24); x_59 = l_Array_toSubarray___redArg(x_24, x_31, x_58); -x_60 = lean_array_get_size(x_17); +x_60 = lean_array_get_size(x_16); x_61 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__3)); x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_61); @@ -27365,10 +28073,10 @@ lean_ctor_set(x_64, 1, x_63); x_65 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_65, 0, x_59); lean_ctor_set(x_65, 1, x_64); -x_66 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__8(x_4, x_3, x_57, x_15, x_20, x_17, x_21, x_22, x_65, x_14, x_16); -lean_dec_ref(x_17); +x_66 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__8(x_4, x_3, x_57, x_18, x_20, x_16, x_21, x_22, x_65, x_17, x_19); +lean_dec_ref(x_16); lean_dec(x_20); -lean_dec(x_15); +lean_dec(x_18); lean_dec_ref(x_57); if (lean_obj_tag(x_66) == 0) { @@ -27417,12 +28125,12 @@ else { uint8_t x_75; lean_dec(x_20); -lean_dec_ref(x_19); +lean_dec(x_19); +lean_dec(x_18); lean_dec_ref(x_17); -lean_dec(x_16); +lean_dec_ref(x_16); lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); +lean_dec_ref(x_13); lean_dec(x_12); lean_dec_ref(x_7); lean_dec(x_6); @@ -27450,13 +28158,13 @@ block_89: lean_object* x_88; x_88 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_88, 0, x_87); -x_12 = x_79; +x_12 = x_81; x_13 = x_80; -x_14 = x_81; -x_15 = x_82; -x_16 = x_84; -x_17 = x_83; -x_18 = lean_box(0); +x_14 = lean_box(0); +x_15 = x_83; +x_16 = x_82; +x_17 = x_84; +x_18 = x_85; x_19 = x_86; x_20 = x_88; goto block_78; @@ -27464,9 +28172,9 @@ goto block_78; block_104: { lean_object* x_99; uint8_t x_100; -x_99 = lean_ctor_get(x_93, 2); +x_99 = lean_ctor_get(x_95, 2); lean_inc(x_99); -lean_dec_ref(x_93); +lean_dec_ref(x_95); lean_inc(x_99); x_100 = l_Lean_Syntax_isOfKind(x_99, x_8); if (x_100 == 0) @@ -27474,14 +28182,14 @@ if (x_100 == 0) lean_object* x_101; lean_object* x_102; x_101 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__4; x_102 = lean_array_push(x_101, x_99); -x_79 = x_90; -x_80 = x_91; -x_81 = x_96; +x_79 = lean_box(0); +x_80 = x_90; +x_81 = x_91; x_82 = x_92; -x_83 = x_94; -x_84 = x_97; -x_85 = lean_box(0); -x_86 = x_95; +x_83 = x_93; +x_84 = x_96; +x_85 = x_94; +x_86 = x_97; x_87 = x_102; goto block_89; } @@ -27490,46 +28198,46 @@ else lean_object* x_103; x_103 = l_Lean_Syntax_getArgs(x_99); lean_dec(x_99); -x_79 = x_90; -x_80 = x_91; -x_81 = x_96; +x_79 = lean_box(0); +x_80 = x_90; +x_81 = x_91; x_82 = x_92; -x_83 = x_94; -x_84 = x_97; -x_85 = lean_box(0); -x_86 = x_95; +x_83 = x_93; +x_84 = x_96; +x_85 = x_94; +x_86 = x_97; x_87 = x_103; goto block_89; } } block_115: { -if (lean_obj_tag(x_107) == 0) +if (lean_obj_tag(x_109) == 0) { lean_object* x_113; x_113 = lean_box(0); -x_12 = x_105; -x_13 = x_106; -x_14 = x_110; -x_15 = x_107; -x_16 = x_111; -x_17 = x_108; -x_18 = lean_box(0); -x_19 = x_109; +x_12 = x_106; +x_13 = x_105; +x_14 = lean_box(0); +x_15 = x_108; +x_16 = x_107; +x_17 = x_110; +x_18 = x_109; +x_19 = x_111; x_20 = x_113; goto block_78; } else { lean_object* x_114; -x_114 = lean_ctor_get(x_107, 0); +x_114 = lean_ctor_get(x_109, 0); lean_inc(x_114); x_90 = x_105; x_91 = x_106; x_92 = x_107; -x_93 = x_114; -x_94 = x_108; -x_95 = x_109; +x_93 = x_108; +x_94 = x_109; +x_95 = x_114; x_96 = x_110; x_97 = x_111; x_98 = lean_box(0); @@ -27538,13 +28246,13 @@ goto block_104; } block_127: { -if (lean_obj_tag(x_117) == 0) +if (lean_obj_tag(x_122) == 0) { -x_105 = x_116; -x_106 = x_118; -x_107 = x_119; -x_108 = x_120; -x_109 = x_122; +x_105 = x_117; +x_106 = x_116; +x_107 = x_120; +x_108 = x_119; +x_109 = x_121; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -27553,19 +28261,19 @@ goto block_115; else { lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; -x_123 = lean_ctor_get(x_117, 0); +x_123 = lean_ctor_get(x_122, 0); lean_inc(x_123); -lean_dec_ref(x_117); +lean_dec_ref(x_122); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec(x_123); x_125 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); x_126 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_125, x_124); -x_105 = x_116; -x_106 = x_118; -x_107 = x_119; -x_108 = x_120; -x_109 = x_122; +x_105 = x_117; +x_106 = x_116; +x_107 = x_120; +x_108 = x_119; +x_109 = x_121; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -27574,14 +28282,14 @@ goto block_115; } block_136: { -if (lean_obj_tag(x_131) == 0) +if (lean_obj_tag(x_133) == 0) { -x_116 = x_128; -x_117 = x_129; -x_118 = x_130; -x_119 = x_131; -x_120 = x_133; -x_121 = lean_box(0); +x_116 = x_129; +x_117 = x_128; +x_118 = lean_box(0); +x_119 = x_132; +x_120 = x_131; +x_121 = x_133; x_122 = x_134; goto block_127; } @@ -27590,15 +28298,15 @@ else if (x_3 == 0) { lean_object* x_135; -lean_dec(x_129); -x_135 = lean_ctor_get(x_131, 0); +lean_dec(x_134); +x_135 = lean_ctor_get(x_133, 0); lean_inc(x_135); x_90 = x_128; -x_91 = x_130; +x_91 = x_129; x_92 = x_131; -x_93 = x_135; +x_93 = x_132; x_94 = x_133; -x_95 = x_134; +x_95 = x_135; x_96 = x_9; x_97 = x_10; x_98 = lean_box(0); @@ -27606,12 +28314,12 @@ goto block_104; } else { -x_116 = x_128; -x_117 = x_129; -x_118 = x_130; -x_119 = x_131; -x_120 = x_133; -x_121 = lean_box(0); +x_116 = x_129; +x_117 = x_128; +x_118 = lean_box(0); +x_119 = x_132; +x_120 = x_131; +x_121 = x_133; x_122 = x_134; goto block_127; } @@ -27621,12 +28329,12 @@ block_144: { if (x_3 == 0) { -lean_dec(x_138); -x_105 = x_137; -x_106 = x_139; -x_107 = x_143; -x_108 = x_141; -x_109 = x_142; +lean_dec(x_142); +x_105 = x_138; +x_106 = x_137; +x_107 = x_141; +x_108 = x_140; +x_109 = x_143; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -27634,24 +28342,24 @@ goto block_115; } else { -x_128 = x_137; -x_129 = x_138; -x_130 = x_139; -x_131 = x_143; -x_132 = lean_box(0); -x_133 = x_141; +x_128 = x_138; +x_129 = x_137; +x_130 = lean_box(0); +x_131 = x_141; +x_132 = x_140; +x_133 = x_143; x_134 = x_142; goto block_136; } } block_152: { -if (lean_obj_tag(x_146) == 0) +if (lean_obj_tag(x_150) == 0) { x_137 = x_145; x_138 = x_146; -x_139 = x_147; -x_140 = lean_box(0); +x_139 = lean_box(0); +x_140 = x_148; x_141 = x_149; x_142 = x_150; x_143 = x_151; @@ -27659,12 +28367,12 @@ goto block_144; } else { -x_128 = x_145; -x_129 = x_146; -x_130 = x_147; -x_131 = x_151; -x_132 = lean_box(0); -x_133 = x_149; +x_128 = x_146; +x_129 = x_145; +x_130 = lean_box(0); +x_131 = x_149; +x_132 = x_148; +x_133 = x_151; x_134 = x_150; goto block_136; } @@ -27673,10 +28381,10 @@ block_160: { lean_object* x_159; x_159 = lean_box(0); -x_145 = x_153; -x_146 = x_154; -x_147 = x_155; -x_148 = lean_box(0); +x_145 = x_154; +x_146 = x_153; +x_147 = lean_box(0); +x_148 = x_157; x_149 = x_156; x_150 = x_158; x_151 = x_159; @@ -27685,7 +28393,7 @@ goto block_152; block_172: { lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; -x_168 = lean_ctor_get(x_167, 0); +x_168 = lean_ctor_get(x_162, 0); x_169 = lean_ctor_get(x_168, 2); x_170 = lean_unsigned_to_nat(0u); x_171 = lean_nat_dec_lt(x_170, x_169); @@ -27693,23 +28401,23 @@ if (x_171 == 0) { x_145 = x_161; x_146 = x_162; -x_147 = x_164; -x_148 = lean_box(0); +x_147 = lean_box(0); +x_148 = x_166; x_149 = x_165; x_150 = x_167; -x_151 = x_163; +x_151 = x_164; goto block_152; } else { if (x_3 == 0) { -lean_dec(x_163); -x_153 = x_161; -x_154 = x_162; -x_155 = x_164; +lean_dec(x_164); +x_153 = x_162; +x_154 = x_161; +x_155 = lean_box(0); x_156 = x_165; -x_157 = lean_box(0); +x_157 = x_166; x_158 = x_167; goto block_160; } @@ -27717,11 +28425,11 @@ else { x_145 = x_161; x_146 = x_162; -x_147 = x_164; -x_148 = lean_box(0); +x_147 = lean_box(0); +x_148 = x_166; x_149 = x_165; x_150 = x_167; -x_151 = x_163; +x_151 = x_164; goto block_152; } } @@ -27731,56 +28439,56 @@ block_184: if (x_181 == 0) { lean_object* x_182; -lean_dec_ref(x_180); -lean_dec(x_175); +lean_dec_ref(x_179); +lean_dec(x_176); x_182 = lean_box(0); -x_145 = x_173; -x_146 = x_174; -x_147 = x_176; -x_148 = lean_box(0); +x_145 = x_174; +x_146 = x_173; +x_147 = lean_box(0); +x_148 = x_178; x_149 = x_177; -x_150 = x_179; +x_150 = x_180; x_151 = x_182; goto block_152; } else { uint8_t x_183; -x_183 = lean_ctor_get_uint8(x_180, sizeof(void*)*5); -lean_dec_ref(x_180); +x_183 = lean_ctor_get_uint8(x_179, sizeof(void*)*5); +lean_dec_ref(x_179); if (x_183 == 0) { -x_161 = x_173; -x_162 = x_174; -x_163 = x_175; +x_161 = x_174; +x_162 = x_173; +x_163 = lean_box(0); x_164 = x_176; x_165 = x_177; -x_166 = lean_box(0); -x_167 = x_179; +x_166 = x_178; +x_167 = x_180; goto block_172; } else { if (x_3 == 0) { -lean_dec(x_175); +lean_dec(x_176); x_153 = x_173; x_154 = x_174; -x_155 = x_176; +x_155 = lean_box(0); x_156 = x_177; -x_157 = lean_box(0); -x_158 = x_179; +x_157 = x_178; +x_158 = x_180; goto block_160; } else { -x_161 = x_173; -x_162 = x_174; -x_163 = x_175; +x_161 = x_174; +x_162 = x_173; +x_163 = lean_box(0); x_164 = x_176; x_165 = x_177; -x_166 = lean_box(0); -x_167 = x_179; +x_166 = x_178; +x_167 = x_180; goto block_172; } } @@ -27912,13 +28620,13 @@ lean_dec(x_183); x_187 = lean_ctor_get(x_180, 1); x_188 = lean_box(0); lean_inc(x_187); -x_128 = x_184; -x_129 = x_186; -x_130 = x_188; -x_131 = lean_box(0); +x_128 = lean_box(0); +x_129 = x_184; +x_130 = x_181; +x_131 = x_187; x_132 = x_185; -x_133 = x_187; -x_134 = x_181; +x_133 = x_188; +x_134 = x_186; x_135 = x_3; goto block_137; } @@ -27943,13 +28651,13 @@ if (lean_obj_tag(x_196) == 0) { lean_inc(x_192); lean_inc_ref(x_184); -x_128 = x_184; -x_129 = x_191; -x_130 = x_196; -x_131 = lean_box(0); +x_128 = lean_box(0); +x_129 = x_184; +x_130 = x_181; +x_131 = x_192; x_132 = x_190; -x_133 = x_192; -x_134 = x_181; +x_133 = x_196; +x_134 = x_191; x_135 = x_4; goto block_137; } @@ -27965,14 +28673,14 @@ if (x_200 == 0) { lean_inc(x_192); lean_inc_ref(x_184); -x_167 = x_191; +x_167 = lean_box(0); x_168 = x_184; -x_169 = x_196; -x_170 = lean_box(0); +x_169 = x_181; +x_170 = x_192; x_171 = x_190; -x_172 = x_197; -x_173 = x_181; -x_174 = x_192; +x_172 = x_191; +x_173 = x_196; +x_174 = x_197; x_175 = x_200; goto block_178; } @@ -27982,14 +28690,14 @@ uint8_t x_201; x_201 = lean_nat_dec_eq(x_199, x_190); lean_inc(x_192); lean_inc_ref(x_184); -x_167 = x_191; +x_167 = lean_box(0); x_168 = x_184; -x_169 = x_196; -x_170 = lean_box(0); +x_169 = x_181; +x_170 = x_192; x_171 = x_190; -x_172 = x_197; -x_173 = x_181; -x_174 = x_192; +x_172 = x_191; +x_173 = x_196; +x_174 = x_197; x_175 = x_201; goto block_178; } @@ -28009,10 +28717,10 @@ return x_207; block_78: { size_t x_21; size_t x_22; lean_object* x_23; -x_21 = lean_array_size(x_19); +x_21 = lean_array_size(x_13); x_22 = 0; -lean_inc_ref(x_19); -x_23 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_21, x_22, x_19); +lean_inc_ref(x_13); +x_23 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__3___redArg(x_21, x_22, 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; lean_object* x_34; lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t 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; @@ -28028,9 +28736,9 @@ x_29 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn x_30 = l_Lean_Name_str___override(x_28, x_29); x_31 = lean_unsigned_to_nat(0u); x_32 = l_Lean_Name_num___override(x_30, x_31); -x_33 = lean_ctor_get(x_12, 0); +x_33 = lean_ctor_get(x_17, 0); lean_inc_ref(x_33); -lean_dec_ref(x_12); +lean_dec_ref(x_17); x_34 = lean_ctor_get(x_33, 2); lean_inc(x_34); lean_dec_ref(x_33); @@ -28056,18 +28764,18 @@ x_48 = lean_nat_dec_lt(x_31, x_34); lean_dec(x_34); x_49 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__2; lean_inc(x_25); -x_50 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__7(x_4, x_3, x_25, x_24, x_19, x_31, x_49); +x_50 = l_Array_zipWithMAux___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__7(x_4, x_3, x_25, x_24, x_13, x_31, x_49); x_51 = lean_alloc_ctor(0, 5, 1); lean_ctor_set(x_51, 0, x_47); lean_ctor_set(x_51, 1, x_5); lean_ctor_set(x_51, 2, x_6); -lean_ctor_set(x_51, 3, x_16); +lean_ctor_set(x_51, 3, x_15); lean_ctor_set(x_51, 4, x_50); lean_ctor_set_uint8(x_51, sizeof(void*)*5, x_48); x_52 = l_Lean_Language_DynamicSnapshot_ofTyped___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__5(x_35, x_51); -x_53 = lean_io_promise_resolve(x_52, x_17); -lean_dec(x_17); -x_54 = lean_st_ref_get(x_14); +x_53 = lean_io_promise_resolve(x_52, x_14); +lean_dec(x_14); +x_54 = lean_st_ref_get(x_19); x_55 = lean_ctor_get(x_54, 2); lean_inc(x_55); lean_dec(x_54); @@ -28078,7 +28786,7 @@ lean_inc_ref(x_57); lean_dec(x_56); x_58 = lean_array_get_size(x_24); x_59 = l_Array_toSubarray___redArg(x_24, x_31, x_58); -x_60 = lean_array_get_size(x_19); +x_60 = lean_array_get_size(x_13); x_61 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__3)); x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_61); @@ -28090,10 +28798,10 @@ lean_ctor_set(x_64, 1, x_63); x_65 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_65, 0, x_59); lean_ctor_set(x_65, 1, x_64); -x_66 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__8(x_4, x_3, x_57, x_15, x_20, x_19, x_21, x_22, x_65, x_18, x_14); -lean_dec_ref(x_19); +x_66 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__8(x_4, x_3, x_57, x_16, x_20, x_13, x_21, x_22, x_65, x_18, x_19); +lean_dec_ref(x_13); lean_dec(x_20); -lean_dec(x_15); +lean_dec(x_16); lean_dec_ref(x_57); if (lean_obj_tag(x_66) == 0) { @@ -28142,13 +28850,13 @@ else { uint8_t x_75; lean_dec(x_20); -lean_dec_ref(x_19); +lean_dec(x_19); lean_dec_ref(x_18); -lean_dec(x_17); +lean_dec_ref(x_17); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); -lean_dec_ref(x_12); +lean_dec_ref(x_13); lean_dec_ref(x_7); lean_dec(x_6); lean_dec(x_5); @@ -28175,23 +28883,23 @@ block_89: lean_object* x_88; x_88 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_88, 0, x_87); -x_12 = x_81; -x_13 = lean_box(0); -x_14 = x_79; +x_12 = lean_box(0); +x_13 = x_80; +x_14 = x_81; x_15 = x_82; x_16 = x_83; -x_17 = x_86; +x_17 = x_84; x_18 = x_85; -x_19 = x_84; +x_19 = x_86; x_20 = x_88; goto block_78; } block_104: { lean_object* x_99; uint8_t x_100; -x_99 = lean_ctor_get(x_92, 2); +x_99 = lean_ctor_get(x_94, 2); lean_inc(x_99); -lean_dec_ref(x_92); +lean_dec_ref(x_94); lean_inc(x_99); x_100 = l_Lean_Syntax_isOfKind(x_99, x_8); if (x_100 == 0) @@ -28199,14 +28907,14 @@ if (x_100 == 0) lean_object* x_101; lean_object* x_102; x_101 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__5___closed__4; x_102 = lean_array_push(x_101, x_99); -x_79 = x_97; -x_80 = lean_box(0); -x_81 = x_90; -x_82 = x_91; +x_79 = lean_box(0); +x_80 = x_90; +x_81 = x_91; +x_82 = x_92; x_83 = x_93; -x_84 = x_94; +x_84 = x_95; x_85 = x_96; -x_86 = x_95; +x_86 = x_97; x_87 = x_102; goto block_89; } @@ -28215,45 +28923,45 @@ else lean_object* x_103; x_103 = l_Lean_Syntax_getArgs(x_99); lean_dec(x_99); -x_79 = x_97; -x_80 = lean_box(0); -x_81 = x_90; -x_82 = x_91; +x_79 = lean_box(0); +x_80 = x_90; +x_81 = x_91; +x_82 = x_92; x_83 = x_93; -x_84 = x_94; +x_84 = x_95; x_85 = x_96; -x_86 = x_95; +x_86 = x_97; x_87 = x_103; goto block_89; } } block_115: { -if (lean_obj_tag(x_106) == 0) +if (lean_obj_tag(x_108) == 0) { lean_object* x_113; x_113 = lean_box(0); -x_12 = x_105; -x_13 = lean_box(0); -x_14 = x_111; -x_15 = x_106; -x_16 = x_107; +x_12 = lean_box(0); +x_13 = x_105; +x_14 = x_106; +x_15 = x_107; +x_16 = x_108; x_17 = x_109; x_18 = x_110; -x_19 = x_108; +x_19 = x_111; x_20 = x_113; goto block_78; } else { lean_object* x_114; -x_114 = lean_ctor_get(x_106, 0); +x_114 = lean_ctor_get(x_108, 0); lean_inc(x_114); x_90 = x_105; x_91 = x_106; -x_92 = x_114; -x_93 = x_107; -x_94 = x_108; +x_92 = x_107; +x_93 = x_108; +x_94 = x_114; x_95 = x_109; x_96 = x_110; x_97 = x_111; @@ -28265,11 +28973,11 @@ block_127: { if (lean_obj_tag(x_117) == 0) { -x_105 = x_116; -x_106 = x_118; +x_105 = x_118; +x_106 = x_119; x_107 = x_120; -x_108 = x_122; -x_109 = x_121; +x_108 = x_121; +x_109 = x_122; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -28286,11 +28994,11 @@ lean_inc(x_124); lean_dec(x_123); x_125 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go_spec__6___closed__0)); x_126 = l_Lean_Language_SnapshotTask_cancelRec___redArg(x_125, x_124); -x_105 = x_116; -x_106 = x_118; +x_105 = x_118; +x_106 = x_119; x_107 = x_120; -x_108 = x_122; -x_109 = x_121; +x_108 = x_121; +x_109 = x_122; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -28301,12 +29009,12 @@ block_137: { if (x_135 == 0) { -lean_dec(x_128); -x_105 = x_129; -x_106 = x_130; +lean_dec(x_129); +x_105 = x_130; +x_106 = x_131; x_107 = x_132; -x_108 = x_134; -x_109 = x_133; +x_108 = x_133; +x_109 = x_134; x_110 = x_9; x_111 = x_10; x_112 = lean_box(0); @@ -28314,12 +29022,12 @@ goto block_115; } else { -if (lean_obj_tag(x_130) == 0) +if (lean_obj_tag(x_133) == 0) { -x_116 = x_129; -x_117 = x_128; +x_116 = lean_box(0); +x_117 = x_129; x_118 = x_130; -x_119 = lean_box(0); +x_119 = x_131; x_120 = x_132; x_121 = x_133; x_122 = x_134; @@ -28330,15 +29038,15 @@ else if (x_3 == 0) { lean_object* x_136; -lean_dec(x_128); -x_136 = lean_ctor_get(x_130, 0); +lean_dec(x_129); +x_136 = lean_ctor_get(x_133, 0); lean_inc(x_136); -x_90 = x_129; -x_91 = x_130; -x_92 = x_136; -x_93 = x_132; -x_94 = x_134; -x_95 = x_133; +x_90 = x_130; +x_91 = x_131; +x_92 = x_132; +x_93 = x_133; +x_94 = x_136; +x_95 = x_134; x_96 = x_9; x_97 = x_10; x_98 = lean_box(0); @@ -28346,10 +29054,10 @@ goto block_104; } else { -x_116 = x_129; -x_117 = x_128; +x_116 = lean_box(0); +x_117 = x_129; x_118 = x_130; -x_119 = lean_box(0); +x_119 = x_131; x_120 = x_132; x_121 = x_133; x_122 = x_134; @@ -28360,26 +29068,26 @@ goto block_127; } block_145: { -if (lean_obj_tag(x_138) == 0) +if (lean_obj_tag(x_139) == 0) { -x_128 = x_138; +x_128 = lean_box(0); x_129 = x_139; -x_130 = x_144; -x_131 = lean_box(0); -x_132 = x_141; -x_133 = x_142; +x_130 = x_140; +x_131 = x_141; +x_132 = x_142; +x_133 = x_144; x_134 = x_143; x_135 = x_3; goto block_137; } else { -x_128 = x_138; +x_128 = lean_box(0); x_129 = x_139; -x_130 = x_144; -x_131 = lean_box(0); -x_132 = x_141; -x_133 = x_142; +x_130 = x_140; +x_131 = x_141; +x_132 = x_142; +x_133 = x_144; x_134 = x_143; x_135 = x_4; goto block_137; @@ -28389,12 +29097,12 @@ block_153: { lean_object* x_152; x_152 = lean_box(0); -x_138 = x_147; -x_139 = x_146; -x_140 = lean_box(0); +x_138 = lean_box(0); +x_139 = x_147; +x_140 = x_148; x_141 = x_149; -x_142 = x_151; -x_143 = x_150; +x_142 = x_150; +x_143 = x_151; x_144 = x_152; goto block_145; } @@ -28402,55 +29110,55 @@ block_166: { if (x_161 == 0) { -lean_dec(x_156); -x_146 = x_155; -x_147 = x_154; -x_148 = lean_box(0); -x_149 = x_158; -x_150 = x_160; +lean_dec(x_160); +x_146 = lean_box(0); +x_147 = x_155; +x_148 = x_156; +x_149 = x_157; +x_150 = x_158; x_151 = x_159; goto block_153; } else { lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_162 = lean_ctor_get(x_155, 0); +x_162 = lean_ctor_get(x_159, 0); x_163 = lean_ctor_get(x_162, 2); x_164 = lean_unsigned_to_nat(0u); x_165 = lean_nat_dec_lt(x_164, x_163); if (x_165 == 0) { -x_138 = x_154; +x_138 = lean_box(0); x_139 = x_155; -x_140 = lean_box(0); -x_141 = x_158; -x_142 = x_159; -x_143 = x_160; -x_144 = x_156; +x_140 = x_156; +x_141 = x_157; +x_142 = x_158; +x_143 = x_159; +x_144 = x_160; goto block_145; } else { if (x_3 == 0) { -lean_dec(x_156); -x_146 = x_155; -x_147 = x_154; -x_148 = lean_box(0); -x_149 = x_158; -x_150 = x_160; +lean_dec(x_160); +x_146 = lean_box(0); +x_147 = x_155; +x_148 = x_156; +x_149 = x_157; +x_150 = x_158; x_151 = x_159; goto block_153; } else { -x_138 = x_154; +x_138 = lean_box(0); x_139 = x_155; -x_140 = lean_box(0); -x_141 = x_158; -x_142 = x_159; -x_143 = x_160; -x_144 = x_156; +x_140 = x_156; +x_141 = x_157; +x_142 = x_158; +x_143 = x_159; +x_144 = x_160; goto block_145; } } @@ -28461,43 +29169,43 @@ block_178: if (x_175 == 0) { lean_object* x_176; -lean_dec_ref(x_172); -lean_dec(x_169); +lean_dec_ref(x_174); +lean_dec(x_173); x_176 = lean_box(0); -x_138 = x_168; -x_139 = x_167; -x_140 = lean_box(0); -x_141 = x_171; -x_142 = x_174; -x_143 = x_173; +x_138 = lean_box(0); +x_139 = x_168; +x_140 = x_169; +x_141 = x_170; +x_142 = x_171; +x_143 = x_172; x_144 = x_176; goto block_145; } else { uint8_t x_177; -x_177 = lean_ctor_get_uint8(x_172, sizeof(void*)*5); -lean_dec_ref(x_172); +x_177 = lean_ctor_get_uint8(x_174, sizeof(void*)*5); +lean_dec_ref(x_174); if (x_177 == 0) { -x_154 = x_168; -x_155 = x_167; +x_154 = lean_box(0); +x_155 = x_168; x_156 = x_169; -x_157 = lean_box(0); +x_157 = x_170; x_158 = x_171; -x_159 = x_174; +x_159 = x_172; x_160 = x_173; x_161 = x_4; goto block_166; } else { -x_154 = x_168; -x_155 = x_167; +x_154 = lean_box(0); +x_155 = x_168; x_156 = x_169; -x_157 = lean_box(0); +x_157 = x_170; x_158 = x_171; -x_159 = x_174; +x_159 = x_172; x_160 = x_173; x_161 = x_3; goto block_166; @@ -28721,7 +29429,7 @@ x_9 = lean_name_eq(x_6, x_8); x_10 = 1; if (x_9 == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_74; uint8_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_110; uint8_t x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_193; lean_object* x_213; uint8_t x_214; +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; uint8_t x_121; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_193; lean_object* x_213; uint8_t x_214; x_11 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn___closed__0_00___x40_Lean_Elab_Command_1365833295____hygCtx___hyg_2_)); x_45 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_initFn___closed__0_00___x40_Lean_Elab_Command_254742214____hygCtx___hyg_2_)); x_213 = ((lean_object*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__8___closed__5)); @@ -28861,7 +29569,7 @@ block_64: { lean_object* x_53; double x_54; double x_55; double x_56; double x_57; double x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; x_53 = lean_io_mono_nanos_now(); -x_54 = lean_float_of_nat(x_49); +x_54 = lean_float_of_nat(x_47); x_55 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_runLinters_spec__4___closed__0; x_56 = lean_float_div(x_54, x_55); x_57 = lean_float_of_nat(x_53); @@ -28874,8 +29582,8 @@ lean_ctor_set(x_61, 1, x_60); x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_51); lean_ctor_set(x_62, 1, x_61); -x_63 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Elab_Command_runLinters_spec__3___redArg(x_45, x_10, x_46, x_50, x_48, x_47, x_2, x_62, x_3, x_4); -lean_dec_ref(x_50); +x_63 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Elab_Command_runLinters_spec__3___redArg(x_45, x_10, x_46, x_49, x_50, x_48, x_2, x_62, x_3, x_4); +lean_dec_ref(x_49); return x_63; } block_73: @@ -28884,8 +29592,8 @@ lean_object* x_72; x_72 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_72, 0, x_70); x_46 = x_65; -x_47 = x_67; -x_48 = x_66; +x_47 = x_66; +x_48 = x_67; x_49 = x_68; x_50 = x_69; x_51 = x_72; @@ -28902,8 +29610,8 @@ if (x_80 == 0) { lean_ctor_set_tag(x_79, 1); x_46 = x_74; -x_47 = x_76; -x_48 = x_75; +x_47 = x_75; +x_48 = x_76; x_49 = x_77; x_50 = x_78; x_51 = x_79; @@ -28919,8 +29627,8 @@ lean_dec(x_79); x_82 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_82, 0, x_81); x_46 = x_74; -x_47 = x_76; -x_48 = x_75; +x_47 = x_75; +x_48 = x_76; x_49 = x_77; x_50 = x_78; x_51 = x_82; @@ -28948,7 +29656,7 @@ block_100: { lean_object* x_92; double x_93; double x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; x_92 = lean_io_get_num_heartbeats(); -x_93 = lean_float_of_nat(x_88); +x_93 = lean_float_of_nat(x_87); x_94 = lean_float_of_nat(x_92); x_95 = lean_box_float(x_93); x_96 = lean_box_float(x_94); @@ -28958,8 +29666,8 @@ lean_ctor_set(x_97, 1, x_96); x_98 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_98, 0, x_90); lean_ctor_set(x_98, 1, x_97); -x_99 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Elab_Command_runLinters_spec__3___redArg(x_45, x_10, x_85, x_89, x_87, x_86, x_2, x_98, x_3, x_4); -lean_dec_ref(x_89); +x_99 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00Lean_Elab_Command_runLinters_spec__3___redArg(x_45, x_10, x_85, x_88, x_89, x_86, x_2, x_98, x_3, x_4); +lean_dec_ref(x_88); return x_99; } block_109: @@ -29078,7 +29786,7 @@ lean_closure_set(x_140, 0, lean_box(0)); lean_closure_set(x_140, 1, x_139); x_141 = lean_box(x_10); x_142 = lean_box(x_130); -x_143 = lean_box(x_124); +x_143 = lean_box(x_122); lean_inc_ref(x_1); lean_inc(x_138); x_144 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommand_go___lam__4___boxed), 12, 9); @@ -29088,7 +29796,7 @@ lean_closure_set(x_144, 2, x_141); lean_closure_set(x_144, 3, x_142); lean_closure_set(x_144, 4, x_143); lean_closure_set(x_144, 5, x_138); -lean_closure_set(x_144, 6, x_123); +lean_closure_set(x_144, 6, x_124); lean_closure_set(x_144, 7, x_8); lean_closure_set(x_144, 8, x_1); x_145 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkInfoTree___boxed), 6, 2); @@ -29098,10 +29806,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_146 = l_Lean_Elab_withInfoTreeContext___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing_spec__1___redArg(x_144, x_145, x_3, x_4); x_74 = x_125; -x_75 = x_121; +x_75 = x_131; x_76 = x_128; -x_77 = x_131; -x_78 = x_126; +x_77 = x_126; +x_78 = x_121; x_79 = x_146; goto block_84; } @@ -29109,7 +29817,7 @@ else { lean_object* x_147; lean_object* x_148; lean_dec(x_136); -lean_dec_ref(x_123); +lean_dec_ref(x_124); x_147 = l_Lean_Elab_Command_commandElabAttribute; x_148 = l_Lean_KeyedDeclsAttribute_getEntries___redArg(x_147, x_133, x_6); if (lean_obj_tag(x_148) == 0) @@ -29137,10 +29845,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_157 = l_Lean_Elab_withInfoTreeContext___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing_spec__1___redArg(x_154, x_156, x_3, x_4); x_74 = x_125; -x_75 = x_121; +x_75 = x_131; x_76 = x_128; -x_77 = x_131; -x_78 = x_126; +x_77 = x_126; +x_78 = x_121; x_79 = x_157; goto block_84; } @@ -29151,10 +29859,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_158 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing(x_132, x_1, x_148, x_3, x_4); x_74 = x_125; -x_75 = x_121; +x_75 = x_131; x_76 = x_128; -x_77 = x_131; -x_78 = x_126; +x_77 = x_126; +x_78 = x_121; x_79 = x_158; goto block_84; } @@ -29165,16 +29873,16 @@ else lean_object* x_159; lean_dec_ref(x_133); lean_dec(x_132); -lean_dec_ref(x_123); +lean_dec_ref(x_124); lean_dec_ref(x_1); x_159 = lean_ctor_get(x_135, 0); lean_inc(x_159); lean_dec_ref(x_135); x_65 = x_125; -x_66 = x_121; +x_66 = x_131; x_67 = x_128; -x_68 = x_131; -x_69 = x_126; +x_68 = x_126; +x_69 = x_121; x_70 = x_159; x_71 = lean_box(0); goto block_73; @@ -29228,7 +29936,7 @@ lean_closure_set(x_173, 2, x_170); lean_closure_set(x_173, 3, x_171); lean_closure_set(x_173, 4, x_172); lean_closure_set(x_173, 5, x_167); -lean_closure_set(x_173, 6, x_123); +lean_closure_set(x_173, 6, x_124); lean_closure_set(x_173, 7, x_8); lean_closure_set(x_173, 8, x_1); x_174 = lean_alloc_closure((void*)(l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkInfoTree___boxed), 6, 2); @@ -29238,10 +29946,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_175 = l_Lean_Elab_withInfoTreeContext___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing_spec__1___redArg(x_173, x_174, x_3, x_4); x_110 = x_125; -x_111 = x_121; +x_111 = x_160; x_112 = x_128; -x_113 = x_160; -x_114 = x_126; +x_113 = x_126; +x_114 = x_121; x_115 = x_175; goto block_120; } @@ -29249,7 +29957,7 @@ else { lean_object* x_176; lean_object* x_177; lean_dec(x_165); -lean_dec_ref(x_123); +lean_dec_ref(x_124); x_176 = l_Lean_Elab_Command_commandElabAttribute; x_177 = l_Lean_KeyedDeclsAttribute_getEntries___redArg(x_176, x_162, x_6); if (lean_obj_tag(x_177) == 0) @@ -29277,10 +29985,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_186 = l_Lean_Elab_withInfoTreeContext___at___00__private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing_spec__1___redArg(x_183, x_185, x_3, x_4); x_110 = x_125; -x_111 = x_121; +x_111 = x_160; x_112 = x_128; -x_113 = x_160; -x_114 = x_126; +x_113 = x_126; +x_114 = x_121; x_115 = x_186; goto block_120; } @@ -29291,10 +29999,10 @@ lean_inc(x_4); lean_inc_ref(x_3); x_187 = l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing(x_161, x_1, x_177, x_3, x_4); x_110 = x_125; -x_111 = x_121; +x_111 = x_160; x_112 = x_128; -x_113 = x_160; -x_114 = x_126; +x_113 = x_126; +x_114 = x_121; x_115 = x_187; goto block_120; } @@ -29305,16 +30013,16 @@ else lean_object* x_188; lean_dec_ref(x_162); lean_dec(x_161); -lean_dec_ref(x_123); +lean_dec_ref(x_124); lean_dec_ref(x_1); x_188 = lean_ctor_get(x_164, 0); lean_inc(x_188); lean_dec_ref(x_164); x_101 = x_125; -x_102 = x_121; +x_102 = x_160; x_103 = x_128; -x_104 = x_160; -x_105 = x_126; +x_104 = x_126; +x_105 = x_121; x_106 = x_188; x_107 = lean_box(0); goto block_109; @@ -29326,7 +30034,7 @@ else uint8_t x_189; lean_dec_ref(x_126); lean_dec_ref(x_125); -lean_dec_ref(x_123); +lean_dec_ref(x_124); lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); @@ -29407,9 +30115,9 @@ uint8_t x_207; x_207 = lean_unbox(x_201); lean_dec(x_201); x_121 = x_207; -x_122 = lean_box(0); -x_123 = x_196; -x_124 = x_199; +x_122 = x_199; +x_123 = lean_box(0); +x_124 = x_196; x_125 = x_203; x_126 = x_198; goto block_192; @@ -29421,9 +30129,9 @@ uint8_t x_208; x_208 = lean_unbox(x_201); lean_dec(x_201); x_121 = x_208; -x_122 = lean_box(0); -x_123 = x_196; -x_124 = x_199; +x_122 = x_199; +x_123 = lean_box(0); +x_124 = x_196; x_125 = x_203; x_126 = x_198; goto block_192; @@ -32173,18 +32881,18 @@ block_22: { lean_object* x_20; lean_object* x_21; x_20 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_20, 0, x_12); -lean_ctor_set(x_20, 1, x_11); -lean_ctor_set(x_20, 2, x_14); -lean_ctor_set(x_20, 3, x_17); -lean_ctor_set(x_20, 4, x_10); -lean_ctor_set(x_20, 5, x_15); +lean_ctor_set(x_20, 0, x_10); +lean_ctor_set(x_20, 1, x_18); +lean_ctor_set(x_20, 2, x_16); +lean_ctor_set(x_20, 3, x_14); +lean_ctor_set(x_20, 4, x_15); +lean_ctor_set(x_20, 5, x_8); lean_ctor_set(x_20, 6, x_9); -lean_ctor_set(x_20, 7, x_18); -lean_ctor_set(x_20, 8, x_16); -lean_ctor_set(x_20, 9, x_8); +lean_ctor_set(x_20, 7, x_13); +lean_ctor_set(x_20, 8, x_17); +lean_ctor_set(x_20, 9, x_12); lean_ctor_set_uint8(x_20, sizeof(void*)*10, x_19); -x_21 = l_Lean_Elab_Command_withInitQuotContext(x_13, x_2, x_20, x_5); +x_21 = l_Lean_Elab_Command_withInitQuotContext(x_11, x_2, x_20, x_5); return x_21; } block_59: @@ -32222,17 +32930,17 @@ x_41 = l_Lean_Option_get___at___00__private_Lean_Elab_Command_0__Lean_Elab_Comma lean_dec_ref(x_25); if (x_41 == 0) { -x_8 = x_37; +x_8 = x_33; x_9 = x_34; -x_10 = x_32; -x_11 = x_29; -x_12 = x_28; -x_13 = x_26; -x_14 = x_30; -x_15 = x_33; -x_16 = x_36; -x_17 = x_31; -x_18 = x_35; +x_10 = x_28; +x_11 = x_26; +x_12 = x_37; +x_13 = x_35; +x_14 = x_31; +x_15 = x_32; +x_16 = x_30; +x_17 = x_36; +x_18 = x_29; x_19 = x_38; goto block_22; } @@ -32240,17 +32948,17 @@ else { uint8_t x_42; x_42 = 0; -x_8 = x_37; +x_8 = x_33; x_9 = x_34; -x_10 = x_32; -x_11 = x_29; -x_12 = x_28; -x_13 = x_26; -x_14 = x_30; -x_15 = x_33; -x_16 = x_36; -x_17 = x_31; -x_18 = x_35; +x_10 = x_28; +x_11 = x_26; +x_12 = x_37; +x_13 = x_35; +x_14 = x_31; +x_15 = x_32; +x_16 = x_30; +x_17 = x_36; +x_18 = x_29; x_19 = x_42; goto block_22; } @@ -32308,17 +33016,17 @@ x_57 = l_Lean_Option_get___at___00__private_Lean_Elab_Command_0__Lean_Elab_Comma lean_dec_ref(x_25); if (x_57 == 0) { -x_8 = x_52; +x_8 = x_48; x_9 = x_49; -x_10 = x_47; -x_11 = x_44; -x_12 = x_43; -x_13 = x_26; -x_14 = x_45; -x_15 = x_48; -x_16 = x_51; -x_17 = x_46; -x_18 = x_50; +x_10 = x_43; +x_11 = x_26; +x_12 = x_52; +x_13 = x_50; +x_14 = x_46; +x_15 = x_47; +x_16 = x_45; +x_17 = x_51; +x_18 = x_44; x_19 = x_53; goto block_22; } @@ -32326,17 +33034,17 @@ else { uint8_t x_58; x_58 = 0; -x_8 = x_52; +x_8 = x_48; x_9 = x_49; -x_10 = x_47; -x_11 = x_44; -x_12 = x_43; -x_13 = x_26; -x_14 = x_45; -x_15 = x_48; -x_16 = x_51; -x_17 = x_46; -x_18 = x_50; +x_10 = x_43; +x_11 = x_26; +x_12 = x_52; +x_13 = x_50; +x_14 = x_46; +x_15 = x_47; +x_16 = x_45; +x_17 = x_51; +x_18 = x_44; x_19 = x_58; goto block_22; } @@ -36524,7 +37232,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 = ((lean_object*)(l_Lean_Elab_Command_modifyScope___redArg___closed__2)); x_2 = lean_unsigned_to_nat(16u); -x_3 = lean_unsigned_to_nat(773u); +x_3 = lean_unsigned_to_nat(775u); x_4 = ((lean_object*)(l_Lean_Elab_Command_modifyScope___redArg___closed__1)); x_5 = ((lean_object*)(l_Lean_Elab_Command_modifyScope___redArg___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -39145,13 +39853,13 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = l_Lean_MessageData_ofFormat(x_11); x_13 = l_Lean_indentD(x_12); x_14 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_14, 0, x_9); +lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l___private_Lean_Elab_SetOption_0__Lean_Elab_validateOptionValue_throwMistypedOptionValue___at___00Lean_Elab_validateOptionValue___at___00__private_Lean_Elab_SetOption_0__Lean_Elab_elabSetOption_setOption___at___00Lean_Elab_elabSetOption___at___00Lean_withSetOptionIn_spec__0_spec__3_spec__5_spec__6___closed__1; x_16 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_MessageData_ofExpr(x_10); +x_17 = l_Lean_MessageData_ofExpr(x_9); x_18 = l_Lean_indentD(x_17); x_19 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_19, 0, x_16); @@ -39191,8 +39899,8 @@ x_33 = lean_ctor_get(x_2, 0); x_34 = l_String_quote(x_33); lean_ctor_set_tag(x_2, 3); lean_ctor_set(x_2, 0, x_34); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_2; goto block_29; } @@ -39205,8 +39913,8 @@ lean_dec(x_2); x_36 = l_String_quote(x_35); x_37 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_37, 0, x_36); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_37; goto block_29; } @@ -39220,8 +39928,8 @@ if (x_38 == 0) { lean_object* x_39; x_39 = ((lean_object*)(l___private_Lean_Elab_SetOption_0__Lean_Elab_validateOptionValue_throwMistypedOptionValue___at___00Lean_Elab_validateOptionValue___at___00__private_Lean_Elab_SetOption_0__Lean_Elab_elabSetOption_setOption___at___00Lean_Elab_elabSetOption___at___00Lean_withSetOptionIn_spec__0_spec__3_spec__5_spec__6___closed__9)); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_39; goto block_29; } @@ -39229,8 +39937,8 @@ else { lean_object* x_40; x_40 = ((lean_object*)(l___private_Lean_Elab_SetOption_0__Lean_Elab_validateOptionValue_throwMistypedOptionValue___at___00Lean_Elab_validateOptionValue___at___00__private_Lean_Elab_SetOption_0__Lean_Elab_elabSetOption_setOption___at___00Lean_Elab_elabSetOption___at___00Lean_withSetOptionIn_spec__0_spec__3_spec__5_spec__6___closed__11)); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_40; goto block_29; } @@ -39251,8 +39959,8 @@ lean_ctor_set(x_2, 0, x_45); x_46 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_46, 0, x_43); lean_ctor_set(x_46, 1, x_2); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_46; goto block_29; } @@ -39270,8 +39978,8 @@ lean_ctor_set(x_51, 0, x_50); x_52 = lean_alloc_ctor(5, 2, 0); lean_ctor_set(x_52, 0, x_48); lean_ctor_set(x_52, 1, x_51); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_52; goto block_29; } @@ -39286,8 +39994,8 @@ lean_object* x_54; lean_object* x_55; x_54 = lean_ctor_get(x_2, 0); x_55 = l_Nat_reprFast(x_54); lean_ctor_set(x_2, 0, x_55); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_2; goto block_29; } @@ -39300,8 +40008,8 @@ lean_dec(x_2); x_57 = l_Nat_reprFast(x_56); x_58 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_58, 0, x_57); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_58; goto block_29; } @@ -39324,8 +40032,8 @@ lean_dec(x_60); x_64 = l_Nat_reprFast(x_63); lean_ctor_set_tag(x_2, 3); lean_ctor_set(x_2, 0, x_64); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_2; goto block_29; } @@ -39345,8 +40053,8 @@ x_71 = lean_string_append(x_68, x_70); lean_dec_ref(x_70); lean_ctor_set_tag(x_2, 3); lean_ctor_set(x_2, 0, x_71); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_2; goto block_29; } @@ -39367,8 +40075,8 @@ lean_dec(x_72); x_76 = l_Nat_reprFast(x_75); x_77 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_77, 0, x_76); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_77; goto block_29; } @@ -39388,8 +40096,8 @@ x_84 = lean_string_append(x_81, x_83); lean_dec_ref(x_83); x_85 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_85, 0, x_84); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_85; goto block_29; } @@ -39404,8 +40112,8 @@ lean_dec_ref(x_2); x_87 = lean_box(0); x_88 = 0; x_89 = l_Lean_Syntax_formatStx(x_86, x_87, x_88); -x_9 = x_31; -x_10 = x_30; +x_9 = x_30; +x_10 = x_31; x_11 = x_89; goto block_29; } diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 997bb2c03b..8652f6e26a 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -2663,67 +2663,67 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___la LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__4___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___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_Elab_Command_Structure_elabStructureCommand___lam__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__5___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_enableRealizationsForConst(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(lean_object*, size_t, size_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addDocStringOf(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedFileMap_default; -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_substitute(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16___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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14___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_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11___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___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18___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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17___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_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0___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___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0___boxed, .m_arity = 7, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___closed__0 = (const lean_object*)&l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___closed__0_value; -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0___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_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0___boxed, .m_arity = 7, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___closed__0 = (const lean_object*)&l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___closed__0_value; +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___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_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg___boxed(lean_object*, lean_object*); extern lean_object* l___private_Lean_Structure_0__Lean_instInhabitedStructureState; -static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0; -static const lean_string_object l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 35, .m_capacity = 35, .m_length = 34, .m_data = "cannot set structure parents for `"}; -static const lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__1 = (const lean_object*)&l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__1_value; -static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2; -static const lean_string_object l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 43, .m_capacity = 43, .m_length = 42, .m_data = "`, structure not defined in current module"}; -static const lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__3 = (const lean_object*)&l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__3_value; -static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4; +static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0; +static const lean_string_object l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 35, .m_capacity = 35, .m_length = 34, .m_data = "cannot set structure parents for `"}; +static const lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__1 = (const lean_object*)&l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__1_value; +static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2; +static const lean_string_object l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 43, .m_capacity = 43, .m_length = 42, .m_data = "`, structure not defined in current module"}; +static const lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__3 = (const lean_object*)&l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__3_value; +static lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4; extern lean_object* l___private_Lean_Structure_0__Lean_structureExt; lean_object* l_Lean_PersistentEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_addDocStringOf(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___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_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(lean_object*, uint8_t, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(lean_object*, uint8_t, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8___boxed(lean_object**); static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0; static lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__1; @@ -2738,22 +2738,22 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___la static const lean_closure_object l_Lean_Elab_Command_Structure_elabStructureCommand___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Command_Structure_elabStructureCommand___lam__10___boxed, .m_arity = 9, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___closed__0 = (const lean_object*)&l_Lean_Elab_Command_Structure_elabStructureCommand___closed__0_value; LEAN_EXPORT const lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand = (const lean_object*)&l_Lean_Elab_Command_Structure_elabStructureCommand___closed__0_value; -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___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_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8(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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___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_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15(lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___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_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10(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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___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_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_ctor_object l_Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__0_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__5_00___x40_Lean_Elab_Structure_771155504____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__0_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__0_value_aux_0),((lean_object*)&l_Lean_Elab_elabAttr___at___00Lean_Elab_elabAttrs___at___00Lean_Elab_elabDeclAttrs___at___00Lean_Elab_elabModifiers___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__2_spec__5_spec__9_spec__18___lam__1___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__0_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Command_Structure_elabStructureCommand___regBuiltin_Lean_Elab_Command_Structure_elabStructureCommand__1___closed__0_value_aux_1),((lean_object*)&l___private_Lean_Elab_Structure_0__Lean_Elab_Command_initFn___closed__13_00___x40_Lean_Elab_Structure_771155504____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; @@ -85209,135 +85209,6 @@ return x_19; } else { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; -x_20 = lean_array_uget(x_1, x_3); -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get_uint8(x_20, sizeof(void*)*5); -x_23 = lean_ctor_get(x_20, 4); -lean_inc(x_23); -lean_dec(x_20); -x_24 = lean_box(0); -if (x_22 == 0) -{ -lean_dec(x_23); -lean_dec(x_21); -x_12 = x_24; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_25; -lean_inc_ref(x_9); -lean_inc_ref(x_5); -x_25 = l_Lean_mkConstWithLevelParams___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__1(x_23, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec_ref(x_25); -x_27 = 0; -x_28 = lean_box(0); -x_29 = lean_box(0); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_30 = l_Lean_Elab_Term_addTermInfo_x27(x_21, x_26, x_28, x_28, x_29, x_22, x_27, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_30) == 0) -{ -lean_dec_ref(x_30); -x_12 = x_24; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_30; -} -} -else -{ -uint8_t x_31; -lean_dec(x_21); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_31 = !lean_is_exclusive(x_25); -if (x_31 == 0) -{ -return x_25; -} -else -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_25, 0); -lean_inc(x_32); -lean_dec(x_25); -x_33 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_33, 0, x_32); -return x_33; -} -} -} -} -block_17: -{ -size_t x_14; size_t x_15; -x_14 = 1; -x_15 = lean_usize_add(x_3, x_14); -x_3 = x_15; -x_4 = x_12; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec_ref(x_1); -return x_14; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; -x_18 = lean_usize_dec_lt(x_3, x_2); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_4); -return x_19; -} -else -{ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; x_20 = lean_st_ref_get(x_10); x_21 = lean_ctor_get(x_20, 0); @@ -85439,7 +85310,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -85447,7 +85318,136 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_3, x_2); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_4); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_array_uget(x_1, x_3); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get_uint8(x_20, sizeof(void*)*5); +x_23 = lean_ctor_get(x_20, 4); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_box(0); +if (x_22 == 0) +{ +lean_dec(x_23); +lean_dec(x_21); +x_12 = x_24; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_25; +lean_inc_ref(x_9); +lean_inc_ref(x_5); +x_25 = l_Lean_mkConstWithLevelParams___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__1(x_23, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec_ref(x_25); +x_27 = 0; +x_28 = lean_box(0); +x_29 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_30 = l_Lean_Elab_Term_addTermInfo_x27(x_21, x_26, x_28, x_28, x_29, x_22, x_27, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_30) == 0) +{ +lean_dec_ref(x_30); +x_12 = x_24; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +return x_30; +} +} +else +{ +uint8_t x_31; +lean_dec(x_21); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +x_31 = !lean_is_exclusive(x_25); +if (x_31 == 0) +{ +return x_25; +} +else +{ +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_25, 0); +lean_inc(x_32); +lean_dec(x_25); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +return x_33; +} +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_1); return x_14; } @@ -85462,13 +85462,13 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); -x_13 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_13) == 0) { size_t x_14; lean_object* x_15; lean_dec_ref(x_13); x_14 = lean_array_size(x_5); -x_15 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__5(x_5, x_14, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(x_5, x_14, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -85521,7 +85521,7 @@ lean_dec_ref(x_1); return x_15; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; lean_object* x_9; uint8_t x_14; @@ -85583,7 +85583,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg___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) { _start: { size_t x_8; size_t x_9; lean_object* x_10; @@ -85591,94 +85591,137 @@ x_8 = lean_unbox_usize(x_2); lean_dec(x_2); x_9 = lean_unbox_usize(x_3); lean_dec(x_3); -x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_1, x_8, x_9, x_4, x_5, x_6); +x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg(x_1, x_8, x_9, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, uint8_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(lean_object* x_1, size_t x_2, size_t 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_14; -lean_inc_ref(x_11); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_1, x_2, x_3, x_4, x_11, x_12); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -lean_object* x_16; -x_16 = lean_ctor_get(x_14, 0); -lean_dec(x_16); -if (x_5 == 0) -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_ctor_set(x_14, 0, x_4); -return x_14; -} -else -{ -lean_object* x_17; -lean_free_object(x_14); -x_17 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances(x_6, x_9, x_10, x_11, x_12); -return x_17; -} -} -else -{ -lean_dec(x_14); -if (x_5 == 0) -{ -lean_object* x_18; -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_4); -return x_18; -} -else +lean_object* x_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_3, x_2); +if (x_18 == 0) { lean_object* x_19; -x_19 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances(x_6, x_9, x_10, x_11, x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_4); return x_19; } +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_20 = lean_st_ref_get(x_10); +x_21 = lean_ctor_get(x_20, 0); +lean_inc_ref(x_21); +lean_dec(x_20); +x_22 = lean_array_uget(x_1, x_3); +x_23 = lean_ctor_get(x_22, 1); +lean_inc_ref(x_23); +x_24 = lean_ctor_get(x_22, 2); +lean_inc(x_24); +x_25 = lean_ctor_get(x_22, 6); +lean_inc(x_25); +lean_dec(x_22); +x_26 = lean_box(0); +lean_inc(x_24); +x_27 = l_Lean_Environment_contains(x_21, x_24, x_18); +if (x_27 == 0) +{ +lean_dec(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +x_12 = x_26; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_23, 1); +lean_inc(x_28); +lean_dec_ref(x_23); +if (lean_obj_tag(x_28) == 1) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = lean_unbox(x_31); +lean_dec(x_31); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_33 = l_Lean_addDocStringOf(x_32, x_24, x_25, x_30, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_33) == 0) +{ +lean_dec_ref(x_33); +x_12 = x_26; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +return x_33; } } else { -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); +lean_dec(x_28); +lean_dec(x_25); +lean_dec(x_24); +x_12 = x_26; +x_13 = lean_box(0); +goto block_17; +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); return x_14; } } -} -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___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: -{ -size_t x_14; size_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_15 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(x_1, x_14, x_15, x_4, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { 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; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -85716,22 +85759,22 @@ lean_ctor_set(x_17, 0, x_16); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg(x_1, x_2, x_3); +x_5 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg(x_1, x_2, x_3); lean_dec(x_3); lean_dec_ref(x_2); lean_dec(x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7(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_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg(x_4, x_5, x_6); +x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg(x_4, x_5, x_6); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -85838,11 +85881,11 @@ return x_36; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7___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_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9___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) { _start: { lean_object* x_8; -x_8 = l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -85852,11 +85895,11 @@ lean_dec_ref(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0(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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9(x_1, x_2, x_3, x_4, x_5, x_6); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -85885,11 +85928,11 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0___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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0___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) { _start: { lean_object* x_8; -x_8 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -85899,131 +85942,7 @@ lean_dec_ref(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg(lean_object* x_1) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_3 = lean_st_ref_get(x_1); -x_4 = lean_ctor_get(x_3, 7); -lean_inc_ref(x_4); -lean_dec(x_3); -x_5 = lean_ctor_get(x_4, 2); -lean_inc_ref(x_5); -lean_dec_ref(x_4); -x_6 = lean_st_ref_take(x_1); -x_7 = !lean_is_exclusive(x_6); -if (x_7 == 0) -{ -lean_object* x_8; uint8_t x_9; -x_8 = lean_ctor_get(x_6, 7); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = lean_ctor_get(x_8, 2); -lean_dec(x_10); -x_11 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; -lean_ctor_set(x_8, 2, x_11); -x_12 = lean_st_ref_set(x_1, x_6); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_5); -return x_13; -} -else -{ -uint8_t 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; -x_14 = lean_ctor_get_uint8(x_8, sizeof(void*)*3); -x_15 = lean_ctor_get(x_8, 0); -x_16 = lean_ctor_get(x_8, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_8); -x_17 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; -x_18 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_18, 0, x_15); -lean_ctor_set(x_18, 1, x_16); -lean_ctor_set(x_18, 2, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*3, x_14); -lean_ctor_set(x_6, 7, x_18); -x_19 = lean_st_ref_set(x_1, x_6); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_5); -return x_20; -} -} -else -{ -lean_object* x_21; 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; uint8_t 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; -x_21 = lean_ctor_get(x_6, 7); -x_22 = lean_ctor_get(x_6, 0); -x_23 = lean_ctor_get(x_6, 1); -x_24 = lean_ctor_get(x_6, 2); -x_25 = lean_ctor_get(x_6, 3); -x_26 = lean_ctor_get(x_6, 4); -x_27 = lean_ctor_get(x_6, 5); -x_28 = lean_ctor_get(x_6, 6); -x_29 = lean_ctor_get(x_6, 8); -lean_inc(x_29); -lean_inc(x_21); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_6); -x_30 = lean_ctor_get_uint8(x_21, sizeof(void*)*3); -x_31 = lean_ctor_get(x_21, 0); -lean_inc_ref(x_31); -x_32 = lean_ctor_get(x_21, 1); -lean_inc_ref(x_32); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - lean_ctor_release(x_21, 2); - x_33 = x_21; -} else { - lean_dec_ref(x_21); - x_33 = lean_box(0); -} -x_34 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; -if (lean_is_scalar(x_33)) { - x_35 = lean_alloc_ctor(0, 3, 1); -} else { - x_35 = x_33; -} -lean_ctor_set(x_35, 0, x_31); -lean_ctor_set(x_35, 1, x_32); -lean_ctor_set(x_35, 2, x_34); -lean_ctor_set_uint8(x_35, sizeof(void*)*3, x_30); -x_36 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_36, 0, x_22); -lean_ctor_set(x_36, 1, x_23); -lean_ctor_set(x_36, 2, x_24); -lean_ctor_set(x_36, 3, x_25); -lean_ctor_set(x_36, 4, x_26); -lean_ctor_set(x_36, 5, x_27); -lean_ctor_set(x_36, 6, x_28); -lean_ctor_set(x_36, 7, x_35); -lean_ctor_set(x_36, 8, x_29); -x_37 = lean_st_ref_set(x_1, x_36); -x_38 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_38, 0, x_5); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg(x_1); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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: { uint8_t x_13; @@ -86125,7 +86044,7 @@ return x_32; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18___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) { _start: { size_t x_13; size_t x_14; lean_object* x_15; @@ -86133,11 +86052,11 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(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) { _start: { if (lean_obj_tag(x_3) == 0) @@ -86150,7 +86069,7 @@ lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; x_12 = lean_ctor_get(x_3, 0); x_13 = lean_array_size(x_12); x_14 = 0; -x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16(x_1, x_2, x_13, x_14, x_12, x_4, x_5, x_6, x_7, x_8, x_9); +x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18(x_1, x_2, x_13, x_14, x_12, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -86204,7 +86123,7 @@ lean_inc(x_23); lean_dec(x_3); x_24 = lean_array_size(x_23); x_25 = 0; -x_26 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16(x_1, x_2, x_24, x_25, x_23, x_4, x_5, x_6, x_7, x_8, x_9); +x_26 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18(x_1, x_2, x_24, x_25, x_23, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; @@ -86259,7 +86178,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; x_35 = lean_ctor_get(x_3, 0); x_36 = lean_array_size(x_35); x_37 = 0; -x_38 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(x_1, x_2, x_36, x_37, x_35, x_4, x_5, x_6, x_7, x_8, x_9); +x_38 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(x_1, x_2, x_36, x_37, x_35, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_38) == 0) { uint8_t x_39; @@ -86313,7 +86232,7 @@ lean_inc(x_46); lean_dec(x_3); x_47 = lean_array_size(x_46); x_48 = 0; -x_49 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(x_1, x_2, x_47, x_48, x_46, x_4, x_5, x_6, x_7, x_8, x_9); +x_49 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(x_1, x_2, x_47, x_48, x_46, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_49) == 0) { lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; @@ -86360,7 +86279,7 @@ return x_56; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18(lean_object* x_1, lean_object* x_2, size_t x_3, size_t 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: { uint8_t x_13; @@ -86392,7 +86311,7 @@ lean_inc(x_7); lean_inc_ref(x_6); lean_inc_ref(x_2); lean_inc_ref(x_1); -x_16 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11); +x_16 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(x_1, x_2, x_15, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; @@ -86439,7 +86358,7 @@ return x_26; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18___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) { _start: { size_t x_13; size_t x_14; lean_object* x_15; @@ -86447,19 +86366,19 @@ x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = lean_unbox_usize(x_4); lean_dec(x_4); -x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14_spec__16(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17_spec__18(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14___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_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17___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_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11(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_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14(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) { _start: { uint8_t x_11; @@ -86479,7 +86398,7 @@ lean_inc(x_5); lean_inc_ref(x_4); lean_inc_ref(x_2); lean_inc_ref(x_1); -x_16 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; @@ -86488,7 +86407,7 @@ lean_inc(x_17); lean_dec_ref(x_16); x_18 = lean_array_size(x_13); x_19 = 0; -x_20 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(x_1, x_2, x_18, x_19, x_13, x_4, x_5, x_6, x_7, x_8, x_9); +x_20 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(x_1, x_2, x_18, x_19, x_13, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_20) == 0) { uint8_t x_21; @@ -86592,7 +86511,7 @@ lean_inc(x_5); lean_inc_ref(x_4); lean_inc_ref(x_2); lean_inc_ref(x_1); -x_36 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__14(x_1, x_2, x_31, x_4, x_5, x_6, x_7, x_8, x_9); +x_36 = l_Lean_PersistentArray_mapMAux___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__17(x_1, x_2, x_31, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; size_t x_38; size_t x_39; lean_object* x_40; @@ -86601,7 +86520,7 @@ lean_inc(x_37); lean_dec_ref(x_36); x_38 = lean_array_size(x_32); x_39 = 0; -x_40 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11_spec__15(x_1, x_2, x_38, x_39, x_32, x_4, x_5, x_6, x_7, x_8, x_9); +x_40 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14_spec__18(x_1, x_2, x_38, x_39, x_32, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_40) == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; @@ -86686,15 +86605,15 @@ return x_50; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11___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_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14___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_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(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_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(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) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -86705,7 +86624,7 @@ lean_dec(x_11); x_13 = lean_ctor_get(x_12, 2); lean_inc_ref(x_13); lean_inc(x_1); -x_14 = l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__11(x_12, x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_1); +x_14 = l_Lean_PersistentArray_mapM___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__14(x_12, x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_1); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -86933,16 +86852,140 @@ return x_74; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0___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_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0___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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg(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_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_st_ref_get(x_1); +x_4 = lean_ctor_get(x_3, 7); +lean_inc_ref(x_4); +lean_dec(x_3); +x_5 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_5); +lean_dec_ref(x_4); +x_6 = lean_st_ref_take(x_1); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_ctor_get(x_6, 7); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_8, 2); +lean_dec(x_10); +x_11 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; +lean_ctor_set(x_8, 2, x_11); +x_12 = lean_st_ref_set(x_1, x_6); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_5); +return x_13; +} +else +{ +uint8_t 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; +x_14 = lean_ctor_get_uint8(x_8, sizeof(void*)*3); +x_15 = lean_ctor_get(x_8, 0); +x_16 = lean_ctor_get(x_8, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_8); +x_17 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; +x_18 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_18, 0, x_15); +lean_ctor_set(x_18, 1, x_16); +lean_ctor_set(x_18, 2, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*3, x_14); +lean_ctor_set(x_6, 7, x_18); +x_19 = lean_st_ref_set(x_1, x_6); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_5); +return x_20; +} +} +else +{ +lean_object* x_21; 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; uint8_t 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; +x_21 = lean_ctor_get(x_6, 7); +x_22 = lean_ctor_get(x_6, 0); +x_23 = lean_ctor_get(x_6, 1); +x_24 = lean_ctor_get(x_6, 2); +x_25 = lean_ctor_get(x_6, 3); +x_26 = lean_ctor_get(x_6, 4); +x_27 = lean_ctor_get(x_6, 5); +x_28 = lean_ctor_get(x_6, 6); +x_29 = lean_ctor_get(x_6, 8); +lean_inc(x_29); +lean_inc(x_21); +lean_inc(x_28); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_6); +x_30 = lean_ctor_get_uint8(x_21, sizeof(void*)*3); +x_31 = lean_ctor_get(x_21, 0); +lean_inc_ref(x_31); +x_32 = lean_ctor_get(x_21, 1); +lean_inc_ref(x_32); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + lean_ctor_release(x_21, 2); + x_33 = x_21; +} else { + lean_dec_ref(x_21); + x_33 = lean_box(0); +} +x_34 = l_Lean_Elab_pushInfoLeaf___at___00Lean_Elab_checkNotAlreadyDeclared___at___00Lean_Elab_applyVisibility___at___00__private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_expandCtor_spec__0_spec__0_spec__2___closed__2; +if (lean_is_scalar(x_33)) { + x_35 = lean_alloc_ctor(0, 3, 1); +} else { + x_35 = x_33; +} +lean_ctor_set(x_35, 0, x_31); +lean_ctor_set(x_35, 1, x_32); +lean_ctor_set(x_35, 2, x_34); +lean_ctor_set_uint8(x_35, sizeof(void*)*3, x_30); +x_36 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_36, 0, x_22); +lean_ctor_set(x_36, 1, x_23); +lean_ctor_set(x_36, 2, x_24); +lean_ctor_set(x_36, 3, x_25); +lean_ctor_set(x_36, 4, x_26); +lean_ctor_set(x_36, 5, x_27); +lean_ctor_set(x_36, 6, x_28); +lean_ctor_set(x_36, 7, x_35); +lean_ctor_set(x_36, 8, x_29); +x_37 = lean_st_ref_set(x_1, x_36); +x_38 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_38, 0, x_5); +return x_38; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg(x_1); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg(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) { _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; @@ -86962,7 +87005,7 @@ return x_13; else { lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg(x_8); +x_14 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg(x_8); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); lean_dec_ref(x_14); @@ -86983,7 +87026,7 @@ lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); lean_ctor_set_tag(x_16, 1); -x_19 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_16); +x_19 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_16); lean_dec_ref(x_16); if (lean_obj_tag(x_19) == 0) { @@ -87036,7 +87079,7 @@ lean_dec(x_16); lean_inc(x_26); x_27 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_27, 0, x_26); -x_28 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_27); +x_28 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_27); lean_dec_ref(x_27); if (lean_obj_tag(x_28) == 0) { @@ -87086,7 +87129,7 @@ x_34 = lean_ctor_get(x_16, 0); lean_inc(x_34); lean_dec_ref(x_16); x_35 = lean_box(0); -x_36 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_35); +x_36 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___lam__0(x_8, x_2, x_3, x_4, x_5, x_6, x_7, x_15, x_35); if (lean_obj_tag(x_36) == 0) { uint8_t x_37; @@ -87133,32 +87176,154 @@ return x_42; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg___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_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg___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) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg(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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(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) { _start: { lean_object* x_9; lean_object* x_10; -x_9 = ((lean_object*)(l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___closed__0)); -x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = ((lean_object*)(l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___closed__0)); +x_10 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg___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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t 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, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_30; +lean_inc_ref(x_13); +x_30 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg(x_1, x_2, x_3, x_4, x_13, x_14); +if (lean_obj_tag(x_30) == 0) +{ +lean_dec_ref(x_30); +if (x_7 == 0) +{ +x_16 = x_9; +x_17 = x_10; +x_18 = x_11; +x_19 = x_12; +x_20 = x_13; +x_21 = x_14; +x_22 = lean_box(0); +goto block_29; +} +else +{ +lean_object* x_31; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +x_31 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_addParentInstances(x_8, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_31) == 0) +{ +lean_dec_ref(x_31); +x_16 = x_9; +x_17 = x_10; +x_18 = x_11; +x_19 = x_12; +x_20 = x_13; +x_21 = x_14; +x_22 = lean_box(0); +goto block_29; +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +return x_31; +} +} +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +return x_30; +} +block_29: +{ +size_t x_23; lean_object* x_24; +x_23 = lean_array_size(x_5); +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +x_24 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__4(x_5, x_23, x_3, x_4, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec_ref(x_24); +x_25 = lean_box_usize(x_23); +x_26 = lean_box_usize(x_3); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__5___boxed), 12, 5); +lean_closure_set(x_27, 0, x_5); +lean_closure_set(x_27, 1, x_25); +lean_closure_set(x_27, 2, x_26); +lean_closure_set(x_27, 3, x_4); +lean_closure_set(x_27, 4, x_6); +x_28 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_27, x_16, x_17, x_18, x_19, x_20, x_21); +return x_28; +} +else +{ +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___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, lean_object* x_14, lean_object* x_15) { +_start: +{ +size_t x_16; size_t x_17; uint8_t x_18; lean_object* x_19; +x_16 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_17 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_18 = lean_unbox(x_7); +x_19 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6(x_1, x_16, x_17, x_4, x_5, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec_ref(x_8); +lean_dec_ref(x_1); +return x_19; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -87198,18 +87363,18 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg(x_1, x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec_ref(x_2); lean_dec_ref(x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -87344,44 +87509,44 @@ x_37 = lean_ctor_get(x_1, 1); lean_inc_ref(x_37); lean_dec_ref(x_1); x_38 = lean_unsigned_to_nat(0u); -x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg(x_36, x_37, x_38, x_3); +x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg(x_36, x_37, x_38, x_3); lean_dec_ref(x_37); lean_dec_ref(x_36); return x_39; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg(x_1, x_4, x_3); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(lean_object* x_1, lean_object* x_2) { _start: { uint64_t x_3; size_t x_4; lean_object* x_5; x_3 = l_Lean_Name_hash___override(x_2); x_4 = lean_uint64_to_usize(x_3); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg(x_1, x_4, x_2); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg(x_1, x_4, x_2); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(x_1, x_2); +x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(x_1, x_2); lean_dec(x_2); return x_3; } } -static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0() { +static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -87393,25 +87558,25 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2() { +static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__1)); +x_1 = ((lean_object*)(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__1)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4() { +static lean_object* _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__3)); +x_1 = ((lean_object*)(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__3)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(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_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(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) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -87426,7 +87591,7 @@ x_14 = lean_ctor_get(x_13, 2); lean_inc(x_14); lean_dec_ref(x_13); x_15 = lean_box(0); -x_16 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0; +x_16 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0; x_17 = lean_box(0); x_18 = l_Lean_PersistentEnvExtension_getState___redArg(x_16, x_12, x_11, x_14, x_17); x_19 = !lean_is_exclusive(x_18); @@ -87436,7 +87601,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_18, 1); x_21 = lean_ctor_get(x_18, 0); lean_dec(x_21); -x_22 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(x_20, x_1); +x_22 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(x_20, x_1); if (lean_obj_tag(x_22) == 1) { uint8_t x_23; @@ -87786,12 +87951,12 @@ lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_dec(x_22); lean_dec(x_14); lean_dec_ref(x_2); -x_118 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2; +x_118 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2; x_119 = l_Lean_MessageData_ofName(x_1); lean_ctor_set_tag(x_18, 7); lean_ctor_set(x_18, 1, x_119); lean_ctor_set(x_18, 0, x_118); -x_120 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4; +x_120 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4; x_121 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_121, 0, x_18); lean_ctor_set(x_121, 1, x_120); @@ -87805,7 +87970,7 @@ lean_object* x_123; lean_object* x_124; x_123 = lean_ctor_get(x_18, 1); lean_inc(x_123); lean_dec(x_18); -x_124 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(x_123, x_1); +x_124 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(x_123, x_1); if (lean_obj_tag(x_124) == 1) { lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; @@ -87942,12 +88107,12 @@ lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_dec(x_124); lean_dec(x_14); lean_dec_ref(x_2); -x_156 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2; +x_156 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2; x_157 = l_Lean_MessageData_ofName(x_1); x_158 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_158, 0, x_156); lean_ctor_set(x_158, 1, x_157); -x_159 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4; +x_159 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4; x_160 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_160, 0, x_158); lean_ctor_set(x_160, 1, x_159); @@ -87957,11 +88122,11 @@ return x_161; } } } -LEAN_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___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_EXPORT lean_object* l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___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) { _start: { lean_object* x_10; -x_10 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -87970,130 +88135,6 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; -x_18 = lean_usize_dec_lt(x_3, x_2); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_4); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_20 = lean_st_ref_get(x_10); -x_21 = lean_ctor_get(x_20, 0); -lean_inc_ref(x_21); -lean_dec(x_20); -x_22 = lean_array_uget(x_1, x_3); -x_23 = lean_ctor_get(x_22, 1); -lean_inc_ref(x_23); -x_24 = lean_ctor_get(x_22, 2); -lean_inc(x_24); -x_25 = lean_ctor_get(x_22, 6); -lean_inc(x_25); -lean_dec(x_22); -x_26 = lean_box(0); -lean_inc(x_24); -x_27 = l_Lean_Environment_contains(x_21, x_24, x_18); -if (x_27 == 0) -{ -lean_dec(x_25); -lean_dec(x_24); -lean_dec_ref(x_23); -x_12 = x_26; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_28; -x_28 = lean_ctor_get(x_23, 1); -lean_inc(x_28); -lean_dec_ref(x_23); -if (lean_obj_tag(x_28) == 1) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -lean_dec_ref(x_28); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -x_32 = lean_unbox(x_31); -lean_dec(x_31); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_33 = l_Lean_addDocStringOf(x_32, x_24, x_25, x_30, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_33) == 0) -{ -lean_dec_ref(x_33); -x_12 = x_26; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -return x_33; -} -} -else -{ -lean_dec(x_28); -lean_dec(x_25); -lean_dec(x_24); -x_12 = x_26; -x_13 = lean_box(0); -goto block_17; -} -} -} -block_17: -{ -size_t x_14; size_t x_15; -x_14 = 1; -x_15 = lean_usize_add(x_3, x_14); -x_3 = x_15; -x_4 = x_12; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec_ref(x_1); -return x_14; -} -} static lean_object* _init_l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1() { _start: { @@ -88103,482 +88144,215 @@ x_2 = lean_box_usize(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(uint8_t 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, uint8_t x_12, lean_object* x_13, 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, lean_object* x_21, lean_object* x_22, lean_object* x_23) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(uint8_t 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, uint8_t x_12, lean_object* x_13, 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, lean_object* x_21) { _start: { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_box(x_1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_box(x_1); lean_inc_ref(x_6); -lean_inc(x_15); +lean_inc(x_13); lean_inc_ref(x_5); lean_inc(x_4); lean_inc_ref(x_3); -lean_inc_ref(x_16); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__3___boxed), 16, 9); -lean_closure_set(x_26, 0, x_25); -lean_closure_set(x_26, 1, x_16); -lean_closure_set(x_26, 2, x_2); -lean_closure_set(x_26, 3, x_3); -lean_closure_set(x_26, 4, x_4); -lean_closure_set(x_26, 5, x_5); -lean_closure_set(x_26, 6, x_15); -lean_closure_set(x_26, 7, x_17); -lean_closure_set(x_26, 8, x_6); -lean_inc(x_23); -lean_inc_ref(x_22); +lean_inc_ref(x_14); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__3___boxed), 16, 9); +lean_closure_set(x_24, 0, x_23); +lean_closure_set(x_24, 1, x_14); +lean_closure_set(x_24, 2, x_2); +lean_closure_set(x_24, 3, x_3); +lean_closure_set(x_24, 4, x_4); +lean_closure_set(x_24, 5, x_5); +lean_closure_set(x_24, 6, x_13); +lean_closure_set(x_24, 7, x_15); +lean_closure_set(x_24, 8, x_6); lean_inc(x_21); lean_inc_ref(x_20); lean_inc(x_19); lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); lean_inc_ref(x_8); lean_inc_ref(x_7); -x_27 = l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___redArg(x_7, x_8, x_26, x_18, x_19, x_20, x_21, x_22, x_23); -if (lean_obj_tag(x_27) == 0) +x_25 = l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___redArg(x_7, x_8, x_24, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_25) == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec_ref(x_27); -lean_inc_ref(x_9); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__4___boxed), 12, 4); -lean_closure_set(x_28, 0, x_5); -lean_closure_set(x_28, 1, x_15); -lean_closure_set(x_28, 2, x_16); -lean_closure_set(x_28, 3, x_9); -x_29 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_runStructElabM___boxed), 10, 3); -lean_closure_set(x_29, 0, lean_box(0)); -lean_closure_set(x_29, 1, x_28); -lean_closure_set(x_29, 2, x_6); -lean_inc(x_23); -lean_inc_ref(x_22); +lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec_ref(x_25); +x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__4___boxed), 12, 4); +lean_closure_set(x_26, 0, x_5); +lean_closure_set(x_26, 1, x_13); +lean_closure_set(x_26, 2, x_14); +lean_closure_set(x_26, 3, x_9); +x_27 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_runStructElabM___boxed), 10, 3); +lean_closure_set(x_27, 0, lean_box(0)); +lean_closure_set(x_27, 1, x_26); +lean_closure_set(x_27, 2, x_6); lean_inc(x_21); lean_inc_ref(x_20); lean_inc(x_19); lean_inc_ref(x_18); -x_30 = l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___redArg(x_7, x_8, x_29, x_18, x_19, x_20, x_21, x_22, x_23); +lean_inc(x_17); +lean_inc_ref(x_16); +x_28 = l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___redArg(x_7, x_8, x_27, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +lean_inc_ref(x_16); +lean_inc(x_29); +lean_inc(x_4); +x_30 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(x_4, x_29, x_16, x_17, x_18, x_19, x_20, x_21); if (lean_obj_tag(x_30) == 0) { -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_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_92; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); +lean_object* x_31; lean_dec_ref(x_30); -lean_inc_ref(x_18); -lean_inc(x_31); -lean_inc(x_4); -x_92 = l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(x_4, x_31, x_18, x_19, x_20, x_21, x_22, x_23); -if (lean_obj_tag(x_92) == 0) +x_31 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder(x_4, x_16, x_17, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_31) == 0) { -lean_dec_ref(x_92); -if (lean_obj_tag(x_13) == 1) +uint8_t x_32; +x_32 = !lean_is_exclusive(x_31); +if (x_32 == 0) { -lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; lean_object* x_97; -x_93 = lean_ctor_get(x_13, 0); -lean_inc(x_93); -lean_dec_ref(x_13); -x_94 = lean_ctor_get(x_93, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_93, 1); -lean_inc(x_95); -lean_dec(x_93); -x_96 = lean_unbox(x_95); -lean_dec(x_95); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc(x_21); -lean_inc_ref(x_20); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_4); -x_97 = l_Lean_addDocStringOf(x_96, x_4, x_14, x_94, x_18, x_19, x_20, x_21, x_22, x_23); -if (lean_obj_tag(x_97) == 0) -{ -lean_dec_ref(x_97); -x_71 = x_18; -x_72 = x_19; -x_73 = x_20; -x_74 = x_21; -x_75 = x_22; -x_76 = x_23; -x_77 = lean_box(0); -goto block_91; -} -else -{ -uint8_t x_98; -lean_dec(x_31); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -x_98 = !lean_is_exclusive(x_97); -if (x_98 == 0) -{ -return x_97; -} -else -{ -lean_object* x_99; lean_object* x_100; -x_99 = lean_ctor_get(x_97, 0); -lean_inc(x_99); -lean_dec(x_97); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -return x_100; -} -} -} -else -{ -lean_dec(x_14); -lean_dec(x_13); -x_71 = x_18; -x_72 = x_19; -x_73 = x_20; -x_74 = x_21; -x_75 = x_22; -x_76 = x_23; -x_77 = lean_box(0); -goto block_91; -} -} -else -{ -uint8_t x_101; -lean_dec(x_31); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_4); -lean_dec_ref(x_3); -x_101 = !lean_is_exclusive(x_92); -if (x_101 == 0) -{ -return x_92; -} -else -{ -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_92, 0); -lean_inc(x_102); -lean_dec(x_92); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; -} -} -block_70: -{ -lean_object* x_39; size_t x_40; size_t x_41; lean_object* x_42; -x_39 = lean_box(0); -x_40 = lean_array_size(x_10); -x_41 = 0; -lean_inc(x_37); -lean_inc_ref(x_36); -lean_inc(x_35); -lean_inc_ref(x_34); -lean_inc(x_33); -lean_inc_ref(x_32); -x_42 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3(x_10, x_40, x_41, x_39, x_32, x_33, x_34, x_35, x_36, x_37); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -lean_dec_ref(x_42); -x_43 = lean_box_usize(x_40); -x_44 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; -x_45 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__5___boxed), 12, 5); -lean_closure_set(x_45, 0, x_10); -lean_closure_set(x_45, 1, x_43); -lean_closure_set(x_45, 2, x_44); -lean_closure_set(x_45, 3, x_39); -lean_closure_set(x_45, 4, x_11); -lean_inc(x_37); -lean_inc_ref(x_36); -lean_inc(x_35); -lean_inc_ref(x_34); -lean_inc(x_33); -lean_inc_ref(x_32); -x_46 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg(x_45, x_32, x_33, x_34, x_35, x_36, x_37); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; -lean_dec_ref(x_46); -x_47 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder(x_4, x_32, x_33, x_34, x_35, x_36, x_37); -if (lean_obj_tag(x_47) == 0) -{ -uint8_t x_48; -x_48 = !lean_is_exclusive(x_47); -if (x_48 == 0) -{ -lean_object* x_49; size_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_49 = lean_ctor_get(x_47, 0); -lean_dec(x_49); -x_50 = lean_array_size(x_3); -x_51 = lean_box_usize(x_50); -x_52 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; -x_53 = lean_box(x_12); -x_54 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___boxed), 13, 6); -lean_closure_set(x_54, 0, x_3); -lean_closure_set(x_54, 1, x_51); -lean_closure_set(x_54, 2, x_52); -lean_closure_set(x_54, 3, x_39); -lean_closure_set(x_54, 4, x_53); -lean_closure_set(x_54, 5, x_31); -lean_ctor_set(x_47, 0, x_54); -return x_47; -} -else -{ -size_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -lean_dec(x_47); -x_55 = lean_array_size(x_3); -x_56 = lean_box_usize(x_55); -x_57 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; -x_58 = lean_box(x_12); -x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___boxed), 13, 6); -lean_closure_set(x_59, 0, x_3); -lean_closure_set(x_59, 1, x_56); -lean_closure_set(x_59, 2, x_57); -lean_closure_set(x_59, 3, x_39); -lean_closure_set(x_59, 4, x_58); -lean_closure_set(x_59, 5, x_31); -x_60 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_60, 0, x_59); -return x_60; -} -} -else -{ -uint8_t x_61; -lean_dec(x_31); -lean_dec_ref(x_3); -x_61 = !lean_is_exclusive(x_47); -if (x_61 == 0) -{ -return x_47; -} -else -{ -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_47, 0); -lean_inc(x_62); -lean_dec(x_47); -x_63 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_63, 0, x_62); -return x_63; -} -} -} -else -{ -uint8_t x_64; -lean_dec(x_37); -lean_dec_ref(x_36); -lean_dec(x_35); -lean_dec_ref(x_34); +lean_object* x_33; lean_object* x_34; size_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_33 = lean_ctor_get(x_31, 0); lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec(x_31); -lean_dec(x_4); -lean_dec_ref(x_3); -x_64 = !lean_is_exclusive(x_46); -if (x_64 == 0) +x_34 = lean_box(0); +x_35 = lean_array_size(x_3); +x_36 = lean_box_usize(x_35); +x_37 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; +x_38 = lean_box(x_12); +x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___boxed), 15, 8); +lean_closure_set(x_39, 0, x_3); +lean_closure_set(x_39, 1, x_36); +lean_closure_set(x_39, 2, x_37); +lean_closure_set(x_39, 3, x_34); +lean_closure_set(x_39, 4, x_10); +lean_closure_set(x_39, 5, x_11); +lean_closure_set(x_39, 6, x_38); +lean_closure_set(x_39, 7, x_29); +lean_ctor_set(x_31, 0, x_39); +return x_31; +} +else { +lean_object* x_40; size_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_dec(x_31); +x_40 = lean_box(0); +x_41 = lean_array_size(x_3); +x_42 = lean_box_usize(x_41); +x_43 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1; +x_44 = lean_box(x_12); +x_45 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__6___boxed), 15, 8); +lean_closure_set(x_45, 0, x_3); +lean_closure_set(x_45, 1, x_42); +lean_closure_set(x_45, 2, x_43); +lean_closure_set(x_45, 3, x_40); +lean_closure_set(x_45, 4, x_10); +lean_closure_set(x_45, 5, x_11); +lean_closure_set(x_45, 6, x_44); +lean_closure_set(x_45, 7, x_29); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); return x_46; } -else -{ -lean_object* x_65; lean_object* x_66; -x_65 = lean_ctor_get(x_46, 0); -lean_inc(x_65); -lean_dec(x_46); -x_66 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_66, 0, x_65); -return x_66; -} -} } else { -uint8_t x_67; -lean_dec(x_37); -lean_dec_ref(x_36); -lean_dec(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec(x_31); +uint8_t x_47; +lean_dec(x_29); lean_dec_ref(x_11); lean_dec_ref(x_10); -lean_dec(x_4); lean_dec_ref(x_3); -x_67 = !lean_is_exclusive(x_42); -if (x_67 == 0) +x_47 = !lean_is_exclusive(x_31); +if (x_47 == 0) { -return x_42; +return x_31; } else { -lean_object* x_68; lean_object* x_69; -x_68 = lean_ctor_get(x_42, 0); -lean_inc(x_68); -lean_dec(x_42); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_68); -return x_69; -} -} -} -block_91: -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = l_Lean_Elab_Command_Structure_StructView_ctor(x_9); -lean_dec_ref(x_9); -x_79 = lean_ctor_get(x_78, 1); -lean_inc_ref(x_79); -x_80 = lean_ctor_get(x_79, 1); -lean_inc(x_80); -lean_dec_ref(x_79); -if (lean_obj_tag(x_80) == 1) -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -lean_dec_ref(x_80); -x_82 = lean_ctor_get(x_78, 2); -lean_inc(x_82); -x_83 = lean_ctor_get(x_78, 4); -lean_inc(x_83); -lean_dec_ref(x_78); -x_84 = lean_ctor_get(x_81, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_81, 1); -lean_inc(x_85); -lean_dec(x_81); -x_86 = lean_unbox(x_85); -lean_dec(x_85); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -lean_inc(x_72); -lean_inc_ref(x_71); -x_87 = l_Lean_addDocStringOf(x_86, x_82, x_83, x_84, x_71, x_72, x_73, x_74, x_75, x_76); -if (lean_obj_tag(x_87) == 0) -{ -lean_dec_ref(x_87); -x_32 = x_71; -x_33 = x_72; -x_34 = x_73; -x_35 = x_74; -x_36 = x_75; -x_37 = x_76; -x_38 = lean_box(0); -goto block_70; -} -else -{ -uint8_t x_88; -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_72); -lean_dec_ref(x_71); +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_31, 0); +lean_inc(x_48); lean_dec(x_31); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_4); -lean_dec_ref(x_3); -x_88 = !lean_is_exclusive(x_87); -if (x_88 == 0) -{ -return x_87; -} -else -{ -lean_object* x_89; lean_object* x_90; -x_89 = lean_ctor_get(x_87, 0); -lean_inc(x_89); -lean_dec(x_87); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -return x_90; +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; } } } else { -lean_dec(x_80); -lean_dec_ref(x_78); -x_32 = x_71; -x_33 = x_72; -x_34 = x_73; -x_35 = x_74; -x_36 = x_75; -x_37 = x_76; -x_38 = lean_box(0); -goto block_70; -} -} -} -else -{ -uint8_t x_104; -lean_dec(x_23); -lean_dec_ref(x_22); +uint8_t x_50; +lean_dec(x_29); lean_dec(x_21); lean_dec_ref(x_20); lean_dec(x_19); lean_dec_ref(x_18); -lean_dec(x_14); -lean_dec(x_13); +lean_dec(x_17); +lean_dec_ref(x_16); lean_dec_ref(x_11); lean_dec_ref(x_10); -lean_dec_ref(x_9); lean_dec(x_4); lean_dec_ref(x_3); -x_104 = !lean_is_exclusive(x_30); -if (x_104 == 0) +x_50 = !lean_is_exclusive(x_30); +if (x_50 == 0) { return x_30; } else { -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_30, 0); -lean_inc(x_105); +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_30, 0); +lean_inc(x_51); lean_dec(x_30); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; } } } else { -uint8_t x_107; -lean_dec(x_23); -lean_dec_ref(x_22); +uint8_t x_53; lean_dec(x_21); lean_dec_ref(x_20); lean_dec(x_19); lean_dec_ref(x_18); +lean_dec(x_17); lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec(x_14); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec(x_4); +lean_dec_ref(x_3); +x_53 = !lean_is_exclusive(x_28); +if (x_53 == 0) +{ +return x_28; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_28, 0); +lean_inc(x_54); +lean_dec(x_28); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_54); +return x_55; +} +} +} +else +{ +uint8_t x_56; +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_11); lean_dec_ref(x_10); @@ -88589,20 +88363,20 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -x_107 = !lean_is_exclusive(x_27); -if (x_107 == 0) +x_56 = !lean_is_exclusive(x_25); +if (x_56 == 0) { -return x_27; +return x_25; } else { -lean_object* x_108; lean_object* x_109; -x_108 = lean_ctor_get(x_27, 0); -lean_inc(x_108); -lean_dec(x_27); -x_109 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_109, 0, x_108); -return x_109; +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_25, 0); +lean_inc(x_57); +lean_dec(x_25); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_57); +return x_58; } } } @@ -88630,636 +88404,612 @@ lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; lean_object* x_21 = _args[20]; lean_object* x_22 = _args[21]; -lean_object* x_23 = _args[22]; -lean_object* x_24 = _args[23]; _start: { -uint8_t x_25; uint8_t x_26; lean_object* x_27; -x_25 = lean_unbox(x_1); -x_26 = lean_unbox(x_12); -x_27 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_26, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23); -return x_27; +uint8_t x_23; uint8_t x_24; lean_object* x_25; +x_23 = lean_unbox(x_1); +x_24 = lean_unbox(x_12); +x_25 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7(x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_24, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_25; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(lean_object* x_1, uint8_t 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, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(lean_object* x_1, uint8_t 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, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_20; -x_20 = !lean_is_exclusive(x_17); -if (x_20 == 0) +uint8_t x_18; +x_18 = !lean_is_exclusive(x_15); +if (x_18 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_17, 5); -x_22 = l_Lean_replaceRef(x_1, x_21); -lean_dec(x_21); -lean_ctor_set(x_17, 5, x_22); -lean_inc(x_18); -lean_inc_ref(x_17); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 5); +x_20 = l_Lean_replaceRef(x_1, x_19); +lean_dec(x_19); +lean_ctor_set(x_15, 5, x_20); lean_inc(x_16); lean_inc_ref(x_15); lean_inc(x_14); lean_inc_ref(x_13); -x_23 = l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(x_2, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_23) == 0) +lean_inc(x_12); +lean_inc_ref(x_11); +x_21 = l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(x_2, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_24; -lean_dec_ref(x_23); -lean_inc(x_18); -lean_inc_ref(x_17); +lean_object* x_22; +lean_dec_ref(x_21); lean_inc(x_16); lean_inc_ref(x_15); lean_inc(x_14); lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); lean_inc(x_3); -x_24 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults(x_3, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_24) == 0) +x_22 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults(x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_22) == 0) { -lean_object* x_25; uint8_t x_26; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -lean_dec_ref(x_24); -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) +lean_object* x_23; uint8_t x_24; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec_ref(x_22); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_25, 1); -x_28 = lean_ctor_get(x_25, 0); -lean_dec(x_28); -x_29 = l_Lean_Meta_getLocalInstances___redArg(x_15); -if (lean_obj_tag(x_29) == 0) +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_23, 1); +x_26 = lean_ctor_get(x_23, 0); +lean_dec(x_26); +x_27 = l_Lean_Meta_getLocalInstances___redArg(x_13); +if (lean_obj_tag(x_27) == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec_ref(x_29); -x_31 = lean_ctor_get(x_27, 0); +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +lean_dec_ref(x_27); +x_29 = lean_ctor_get(x_25, 0); +lean_inc_ref(x_29); +x_30 = lean_ctor_get(x_25, 1); +lean_inc_ref(x_30); +x_31 = lean_ctor_get(x_13, 2); lean_inc_ref(x_31); -x_32 = lean_ctor_get(x_27, 1); -lean_inc_ref(x_32); -x_33 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_33); -lean_inc(x_27); +lean_inc(x_25); lean_inc_ref(x_5); lean_inc_ref(x_4); -x_34 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_27, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_34) == 0) +x_32 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_25, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_32) == 0) { -uint8_t x_35; +uint8_t x_33; +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +lean_object* x_34; uint8_t x_35; +x_34 = lean_ctor_get(x_32, 0); x_35 = !lean_is_exclusive(x_34); if (x_35 == 0) { -lean_object* x_36; uint8_t x_37; +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; lean_object* x_45; x_36 = lean_ctor_get(x_34, 0); -x_37 = !lean_is_exclusive(x_36); -if (x_37 == 0) -{ -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; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_38 = lean_ctor_get(x_36, 0); -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_39 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); -lean_closure_set(x_39, 0, x_32); -lean_closure_set(x_39, 1, x_33); -lean_closure_set(x_39, 2, x_30); -x_40 = lean_box(x_2); -x_41 = lean_box(x_9); -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_42 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 24, 14); -lean_closure_set(x_42, 0, x_40); -lean_closure_set(x_42, 1, x_5); -lean_closure_set(x_42, 2, x_32); -lean_closure_set(x_42, 3, x_3); -lean_closure_set(x_42, 4, x_7); -lean_closure_set(x_42, 5, x_27); -lean_closure_set(x_42, 6, x_33); -lean_closure_set(x_42, 7, x_30); -lean_closure_set(x_42, 8, x_4); -lean_closure_set(x_42, 9, x_8); -lean_closure_set(x_42, 10, x_31); -lean_closure_set(x_42, 11, x_41); -lean_closure_set(x_42, 12, x_10); -lean_closure_set(x_42, 13, x_11); -x_43 = lean_box(0); -lean_ctor_set_tag(x_25, 1); -lean_ctor_set(x_25, 1, x_43); -lean_ctor_set(x_25, 0, x_38); -lean_inc_ref(x_32); -lean_inc(x_30); -lean_inc_ref(x_33); -x_44 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); -lean_closure_set(x_44, 0, x_33); -lean_closure_set(x_44, 1, x_30); -lean_closure_set(x_44, 2, x_32); -x_45 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); -lean_closure_set(x_45, 0, x_32); -x_46 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); -lean_closure_set(x_46, 0, lean_box(0)); -lean_closure_set(x_46, 1, x_33); -lean_closure_set(x_46, 2, x_30); -lean_closure_set(x_46, 3, x_45); -x_47 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_47, 0, x_25); -lean_ctor_set(x_47, 1, x_44); -lean_ctor_set(x_47, 2, x_39); -lean_ctor_set(x_47, 3, x_46); -lean_ctor_set(x_47, 4, x_42); -lean_ctor_set(x_36, 0, x_47); -return x_34; +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); +lean_closure_set(x_37, 0, x_30); +lean_closure_set(x_37, 1, x_31); +lean_closure_set(x_37, 2, x_28); +x_38 = lean_box(x_2); +x_39 = lean_box(x_9); +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_40 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 22, 12); +lean_closure_set(x_40, 0, x_38); +lean_closure_set(x_40, 1, x_5); +lean_closure_set(x_40, 2, x_30); +lean_closure_set(x_40, 3, x_3); +lean_closure_set(x_40, 4, x_7); +lean_closure_set(x_40, 5, x_25); +lean_closure_set(x_40, 6, x_31); +lean_closure_set(x_40, 7, x_28); +lean_closure_set(x_40, 8, x_4); +lean_closure_set(x_40, 9, x_8); +lean_closure_set(x_40, 10, x_29); +lean_closure_set(x_40, 11, x_39); +x_41 = lean_box(0); +lean_ctor_set_tag(x_23, 1); +lean_ctor_set(x_23, 1, x_41); +lean_ctor_set(x_23, 0, x_36); +lean_inc_ref(x_30); +lean_inc(x_28); +lean_inc_ref(x_31); +x_42 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); +lean_closure_set(x_42, 0, x_31); +lean_closure_set(x_42, 1, x_28); +lean_closure_set(x_42, 2, x_30); +x_43 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); +lean_closure_set(x_43, 0, x_30); +x_44 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); +lean_closure_set(x_44, 0, lean_box(0)); +lean_closure_set(x_44, 1, x_31); +lean_closure_set(x_44, 2, x_28); +lean_closure_set(x_44, 3, x_43); +x_45 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_45, 0, x_23); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set(x_45, 2, x_37); +lean_ctor_set(x_45, 3, x_44); +lean_ctor_set(x_45, 4, x_40); +lean_ctor_set(x_34, 0, x_45); +return x_32; } else { -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; -x_48 = lean_ctor_get(x_36, 0); -x_49 = lean_ctor_get(x_36, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_36); -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_50 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); -lean_closure_set(x_50, 0, x_32); -lean_closure_set(x_50, 1, x_33); -lean_closure_set(x_50, 2, x_30); -x_51 = lean_box(x_2); -x_52 = lean_box(x_9); -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_53 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 24, 14); -lean_closure_set(x_53, 0, x_51); -lean_closure_set(x_53, 1, x_5); -lean_closure_set(x_53, 2, x_32); -lean_closure_set(x_53, 3, x_3); -lean_closure_set(x_53, 4, x_7); -lean_closure_set(x_53, 5, x_27); -lean_closure_set(x_53, 6, x_33); -lean_closure_set(x_53, 7, x_30); -lean_closure_set(x_53, 8, x_4); -lean_closure_set(x_53, 9, x_8); -lean_closure_set(x_53, 10, x_31); -lean_closure_set(x_53, 11, x_52); -lean_closure_set(x_53, 12, x_10); -lean_closure_set(x_53, 13, x_11); -x_54 = lean_box(0); -lean_ctor_set_tag(x_25, 1); -lean_ctor_set(x_25, 1, x_54); -lean_ctor_set(x_25, 0, x_48); -lean_inc_ref(x_32); -lean_inc(x_30); -lean_inc_ref(x_33); -x_55 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); -lean_closure_set(x_55, 0, x_33); -lean_closure_set(x_55, 1, x_30); -lean_closure_set(x_55, 2, x_32); -x_56 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); -lean_closure_set(x_56, 0, x_32); -x_57 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); -lean_closure_set(x_57, 0, lean_box(0)); -lean_closure_set(x_57, 1, x_33); -lean_closure_set(x_57, 2, x_30); -lean_closure_set(x_57, 3, x_56); -x_58 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_58, 0, x_25); -lean_ctor_set(x_58, 1, x_55); -lean_ctor_set(x_58, 2, x_50); -lean_ctor_set(x_58, 3, x_57); -lean_ctor_set(x_58, 4, x_53); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_49); -lean_ctor_set(x_34, 0, x_59); -return x_34; -} -} -else -{ -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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_60 = lean_ctor_get(x_34, 0); -lean_inc(x_60); +lean_object* x_46; 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; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_46 = lean_ctor_get(x_34, 0); +x_47 = lean_ctor_get(x_34, 1); +lean_inc(x_47); +lean_inc(x_46); lean_dec(x_34); -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_63 = x_60; -} else { - lean_dec_ref(x_60); - x_63 = lean_box(0); -} -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_64 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); -lean_closure_set(x_64, 0, x_32); -lean_closure_set(x_64, 1, x_33); -lean_closure_set(x_64, 2, x_30); -x_65 = lean_box(x_2); -x_66 = lean_box(x_9); -lean_inc(x_30); -lean_inc_ref(x_33); -lean_inc_ref(x_32); -x_67 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 24, 14); -lean_closure_set(x_67, 0, x_65); -lean_closure_set(x_67, 1, x_5); -lean_closure_set(x_67, 2, x_32); -lean_closure_set(x_67, 3, x_3); -lean_closure_set(x_67, 4, x_7); -lean_closure_set(x_67, 5, x_27); -lean_closure_set(x_67, 6, x_33); -lean_closure_set(x_67, 7, x_30); -lean_closure_set(x_67, 8, x_4); -lean_closure_set(x_67, 9, x_8); -lean_closure_set(x_67, 10, x_31); -lean_closure_set(x_67, 11, x_66); -lean_closure_set(x_67, 12, x_10); -lean_closure_set(x_67, 13, x_11); -x_68 = lean_box(0); -lean_ctor_set_tag(x_25, 1); -lean_ctor_set(x_25, 1, x_68); -lean_ctor_set(x_25, 0, x_61); -lean_inc_ref(x_32); -lean_inc(x_30); -lean_inc_ref(x_33); -x_69 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); -lean_closure_set(x_69, 0, x_33); -lean_closure_set(x_69, 1, x_30); -lean_closure_set(x_69, 2, x_32); -x_70 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); -lean_closure_set(x_70, 0, x_32); -x_71 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); -lean_closure_set(x_71, 0, lean_box(0)); -lean_closure_set(x_71, 1, x_33); -lean_closure_set(x_71, 2, x_30); -lean_closure_set(x_71, 3, x_70); -x_72 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_72, 0, x_25); -lean_ctor_set(x_72, 1, x_69); -lean_ctor_set(x_72, 2, x_64); -lean_ctor_set(x_72, 3, x_71); -lean_ctor_set(x_72, 4, x_67); -if (lean_is_scalar(x_63)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_63; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_62); -x_74 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_74, 0, x_73); -return x_74; +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_48 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); +lean_closure_set(x_48, 0, x_30); +lean_closure_set(x_48, 1, x_31); +lean_closure_set(x_48, 2, x_28); +x_49 = lean_box(x_2); +x_50 = lean_box(x_9); +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 22, 12); +lean_closure_set(x_51, 0, x_49); +lean_closure_set(x_51, 1, x_5); +lean_closure_set(x_51, 2, x_30); +lean_closure_set(x_51, 3, x_3); +lean_closure_set(x_51, 4, x_7); +lean_closure_set(x_51, 5, x_25); +lean_closure_set(x_51, 6, x_31); +lean_closure_set(x_51, 7, x_28); +lean_closure_set(x_51, 8, x_4); +lean_closure_set(x_51, 9, x_8); +lean_closure_set(x_51, 10, x_29); +lean_closure_set(x_51, 11, x_50); +x_52 = lean_box(0); +lean_ctor_set_tag(x_23, 1); +lean_ctor_set(x_23, 1, x_52); +lean_ctor_set(x_23, 0, x_46); +lean_inc_ref(x_30); +lean_inc(x_28); +lean_inc_ref(x_31); +x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); +lean_closure_set(x_53, 0, x_31); +lean_closure_set(x_53, 1, x_28); +lean_closure_set(x_53, 2, x_30); +x_54 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); +lean_closure_set(x_54, 0, x_30); +x_55 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); +lean_closure_set(x_55, 0, lean_box(0)); +lean_closure_set(x_55, 1, x_31); +lean_closure_set(x_55, 2, x_28); +lean_closure_set(x_55, 3, x_54); +x_56 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_56, 0, x_23); +lean_ctor_set(x_56, 1, x_53); +lean_ctor_set(x_56, 2, x_48); +lean_ctor_set(x_56, 3, x_55); +lean_ctor_set(x_56, 4, x_51); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_47); +lean_ctor_set(x_32, 0, x_57); +return x_32; } } else { -uint8_t x_75; -lean_dec_ref(x_33); -lean_dec_ref(x_32); +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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_58 = lean_ctor_get(x_32, 0); +lean_inc(x_58); +lean_dec(x_32); +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_61 = x_58; +} else { + lean_dec_ref(x_58); + x_61 = lean_box(0); +} +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_62 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); +lean_closure_set(x_62, 0, x_30); +lean_closure_set(x_62, 1, x_31); +lean_closure_set(x_62, 2, x_28); +x_63 = lean_box(x_2); +x_64 = lean_box(x_9); +lean_inc(x_28); +lean_inc_ref(x_31); +lean_inc_ref(x_30); +x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 22, 12); +lean_closure_set(x_65, 0, x_63); +lean_closure_set(x_65, 1, x_5); +lean_closure_set(x_65, 2, x_30); +lean_closure_set(x_65, 3, x_3); +lean_closure_set(x_65, 4, x_7); +lean_closure_set(x_65, 5, x_25); +lean_closure_set(x_65, 6, x_31); +lean_closure_set(x_65, 7, x_28); +lean_closure_set(x_65, 8, x_4); +lean_closure_set(x_65, 9, x_8); +lean_closure_set(x_65, 10, x_29); +lean_closure_set(x_65, 11, x_64); +x_66 = lean_box(0); +lean_ctor_set_tag(x_23, 1); +lean_ctor_set(x_23, 1, x_66); +lean_ctor_set(x_23, 0, x_59); +lean_inc_ref(x_30); +lean_inc(x_28); +lean_inc_ref(x_31); +x_67 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); +lean_closure_set(x_67, 0, x_31); +lean_closure_set(x_67, 1, x_28); +lean_closure_set(x_67, 2, x_30); +x_68 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); +lean_closure_set(x_68, 0, x_30); +x_69 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); +lean_closure_set(x_69, 0, lean_box(0)); +lean_closure_set(x_69, 1, x_31); +lean_closure_set(x_69, 2, x_28); +lean_closure_set(x_69, 3, x_68); +x_70 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_70, 0, x_23); +lean_ctor_set(x_70, 1, x_67); +lean_ctor_set(x_70, 2, x_62); +lean_ctor_set(x_70, 3, x_69); +lean_ctor_set(x_70, 4, x_65); +if (lean_is_scalar(x_61)) { + x_71 = lean_alloc_ctor(0, 2, 0); +} else { + x_71 = x_61; +} +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_60); +x_72 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_72, 0, x_71); +return x_72; +} +} +else +{ +uint8_t x_73; lean_dec_ref(x_31); -lean_dec(x_30); -lean_free_object(x_25); -lean_dec(x_27); -lean_dec(x_11); -lean_dec(x_10); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_28); +lean_free_object(x_23); +lean_dec(x_25); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_75 = !lean_is_exclusive(x_34); -if (x_75 == 0) +x_73 = !lean_is_exclusive(x_32); +if (x_73 == 0) { -return x_34; +return x_32; } else { -lean_object* x_76; lean_object* x_77; -x_76 = lean_ctor_get(x_34, 0); -lean_inc(x_76); -lean_dec(x_34); -x_77 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_77, 0, x_76); -return x_77; +lean_object* x_74; lean_object* x_75; +x_74 = lean_ctor_get(x_32, 0); +lean_inc(x_74); +lean_dec(x_32); +x_75 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_75, 0, x_74); +return x_75; } } } else { -uint8_t x_78; -lean_free_object(x_25); -lean_dec(x_27); -lean_dec_ref(x_17); -lean_dec(x_18); -lean_dec(x_16); +uint8_t x_76; +lean_free_object(x_23); +lean_dec(x_25); lean_dec_ref(x_15); +lean_dec(x_16); lean_dec(x_14); lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); +lean_dec(x_12); +lean_dec_ref(x_11); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_78 = !lean_is_exclusive(x_29); -if (x_78 == 0) +x_76 = !lean_is_exclusive(x_27); +if (x_76 == 0) { -return x_29; +return x_27; +} +else +{ +lean_object* x_77; lean_object* x_78; +x_77 = lean_ctor_get(x_27, 0); +lean_inc(x_77); +lean_dec(x_27); +x_78 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_78, 0, x_77); +return x_78; +} +} } else { lean_object* x_79; lean_object* x_80; -x_79 = lean_ctor_get(x_29, 0); +x_79 = lean_ctor_get(x_23, 1); lean_inc(x_79); -lean_dec(x_29); -x_80 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_80, 0, x_79); -return x_80; -} -} -} -else +lean_dec(x_23); +x_80 = l_Lean_Meta_getLocalInstances___redArg(x_13); +if (lean_obj_tag(x_80) == 0) { -lean_object* x_81; lean_object* x_82; -x_81 = lean_ctor_get(x_25, 1); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); -lean_dec(x_25); -x_82 = l_Lean_Meta_getLocalInstances___redArg(x_15); -if (lean_obj_tag(x_82) == 0) -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_83 = lean_ctor_get(x_82, 0); -lean_inc(x_83); -lean_dec_ref(x_82); -x_84 = lean_ctor_get(x_81, 0); +lean_dec_ref(x_80); +x_82 = lean_ctor_get(x_79, 0); +lean_inc_ref(x_82); +x_83 = lean_ctor_get(x_79, 1); +lean_inc_ref(x_83); +x_84 = lean_ctor_get(x_13, 2); lean_inc_ref(x_84); -x_85 = lean_ctor_get(x_81, 1); -lean_inc_ref(x_85); -x_86 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_86); -lean_inc(x_81); +lean_inc(x_79); lean_inc_ref(x_5); lean_inc_ref(x_4); -x_87 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_81, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_87) == 0) +x_85 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_79, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_85) == 0) { -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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_88 = lean_ctor_get(x_87, 0); +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; lean_object* x_101; lean_object* x_102; +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + x_87 = x_85; +} else { + lean_dec_ref(x_85); + x_87 = lean_box(0); +} +x_88 = lean_ctor_get(x_86, 0); lean_inc(x_88); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - x_89 = x_87; +x_89 = lean_ctor_get(x_86, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_86)) { + lean_ctor_release(x_86, 0); + lean_ctor_release(x_86, 1); + x_90 = x_86; } else { - lean_dec_ref(x_87); - x_89 = lean_box(0); + lean_dec_ref(x_86); + x_90 = lean_box(0); } -x_90 = lean_ctor_get(x_88, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_88, 1); -lean_inc(x_91); -if (lean_is_exclusive(x_88)) { - lean_ctor_release(x_88, 0); - lean_ctor_release(x_88, 1); - x_92 = x_88; +lean_inc(x_81); +lean_inc_ref(x_84); +lean_inc_ref(x_83); +x_91 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); +lean_closure_set(x_91, 0, x_83); +lean_closure_set(x_91, 1, x_84); +lean_closure_set(x_91, 2, x_81); +x_92 = lean_box(x_2); +x_93 = lean_box(x_9); +lean_inc(x_81); +lean_inc_ref(x_84); +lean_inc_ref(x_83); +x_94 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 22, 12); +lean_closure_set(x_94, 0, x_92); +lean_closure_set(x_94, 1, x_5); +lean_closure_set(x_94, 2, x_83); +lean_closure_set(x_94, 3, x_3); +lean_closure_set(x_94, 4, x_7); +lean_closure_set(x_94, 5, x_79); +lean_closure_set(x_94, 6, x_84); +lean_closure_set(x_94, 7, x_81); +lean_closure_set(x_94, 8, x_4); +lean_closure_set(x_94, 9, x_8); +lean_closure_set(x_94, 10, x_82); +lean_closure_set(x_94, 11, x_93); +x_95 = lean_box(0); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_88); +lean_ctor_set(x_96, 1, x_95); +lean_inc_ref(x_83); +lean_inc(x_81); +lean_inc_ref(x_84); +x_97 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); +lean_closure_set(x_97, 0, x_84); +lean_closure_set(x_97, 1, x_81); +lean_closure_set(x_97, 2, x_83); +x_98 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); +lean_closure_set(x_98, 0, x_83); +x_99 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); +lean_closure_set(x_99, 0, lean_box(0)); +lean_closure_set(x_99, 1, x_84); +lean_closure_set(x_99, 2, x_81); +lean_closure_set(x_99, 3, x_98); +x_100 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_100, 0, x_96); +lean_ctor_set(x_100, 1, x_97); +lean_ctor_set(x_100, 2, x_91); +lean_ctor_set(x_100, 3, x_99); +lean_ctor_set(x_100, 4, x_94); +if (lean_is_scalar(x_90)) { + x_101 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_88); - x_92 = lean_box(0); + x_101 = x_90; } -lean_inc(x_83); -lean_inc_ref(x_86); -lean_inc_ref(x_85); -x_93 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); -lean_closure_set(x_93, 0, x_85); -lean_closure_set(x_93, 1, x_86); -lean_closure_set(x_93, 2, x_83); -x_94 = lean_box(x_2); -x_95 = lean_box(x_9); -lean_inc(x_83); -lean_inc_ref(x_86); -lean_inc_ref(x_85); -x_96 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 24, 14); -lean_closure_set(x_96, 0, x_94); -lean_closure_set(x_96, 1, x_5); -lean_closure_set(x_96, 2, x_85); -lean_closure_set(x_96, 3, x_3); -lean_closure_set(x_96, 4, x_7); -lean_closure_set(x_96, 5, x_81); -lean_closure_set(x_96, 6, x_86); -lean_closure_set(x_96, 7, x_83); -lean_closure_set(x_96, 8, x_4); -lean_closure_set(x_96, 9, x_8); -lean_closure_set(x_96, 10, x_84); -lean_closure_set(x_96, 11, x_95); -lean_closure_set(x_96, 12, x_10); -lean_closure_set(x_96, 13, x_11); -x_97 = lean_box(0); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_90); -lean_ctor_set(x_98, 1, x_97); -lean_inc_ref(x_85); -lean_inc(x_83); -lean_inc_ref(x_86); -x_99 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); -lean_closure_set(x_99, 0, x_86); -lean_closure_set(x_99, 1, x_83); -lean_closure_set(x_99, 2, x_85); -x_100 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); -lean_closure_set(x_100, 0, x_85); -x_101 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); -lean_closure_set(x_101, 0, lean_box(0)); -lean_closure_set(x_101, 1, x_86); -lean_closure_set(x_101, 2, x_83); -lean_closure_set(x_101, 3, x_100); -x_102 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_102, 0, x_98); -lean_ctor_set(x_102, 1, x_99); -lean_ctor_set(x_102, 2, x_93); -lean_ctor_set(x_102, 3, x_101); -lean_ctor_set(x_102, 4, x_96); -if (lean_is_scalar(x_92)) { - x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_89); +if (lean_is_scalar(x_87)) { + x_102 = lean_alloc_ctor(0, 1, 0); } else { - x_103 = x_92; + x_102 = x_87; } -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_91); -if (lean_is_scalar(x_89)) { - x_104 = lean_alloc_ctor(0, 1, 0); -} else { - x_104 = x_89; -} -lean_ctor_set(x_104, 0, x_103); -return x_104; +lean_ctor_set(x_102, 0, x_101); +return x_102; } else { -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec_ref(x_86); -lean_dec_ref(x_85); +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_dec_ref(x_84); -lean_dec(x_83); +lean_dec_ref(x_83); +lean_dec_ref(x_82); lean_dec(x_81); -lean_dec(x_11); -lean_dec(x_10); +lean_dec(x_79); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_105 = lean_ctor_get(x_87, 0); -lean_inc(x_105); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - x_106 = x_87; +x_103 = lean_ctor_get(x_85, 0); +lean_inc(x_103); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + x_104 = x_85; } else { - lean_dec_ref(x_87); - x_106 = lean_box(0); + lean_dec_ref(x_85); + x_104 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_104)) { + x_105 = lean_alloc_ctor(1, 1, 0); } else { - x_107 = x_106; + x_105 = x_104; } -lean_ctor_set(x_107, 0, x_105); -return x_107; +lean_ctor_set(x_105, 0, x_103); +return x_105; } } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; -lean_dec(x_81); -lean_dec_ref(x_17); -lean_dec(x_18); -lean_dec(x_16); +lean_object* x_106; lean_object* x_107; lean_object* x_108; +lean_dec(x_79); lean_dec_ref(x_15); +lean_dec(x_16); lean_dec(x_14); lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); +lean_dec(x_12); +lean_dec_ref(x_11); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_108 = lean_ctor_get(x_82, 0); -lean_inc(x_108); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - x_109 = x_82; +x_106 = lean_ctor_get(x_80, 0); +lean_inc(x_106); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + x_107 = x_80; } else { - lean_dec_ref(x_82); - x_109 = lean_box(0); + lean_dec_ref(x_80); + x_107 = lean_box(0); } -if (lean_is_scalar(x_109)) { - x_110 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_107)) { + x_108 = lean_alloc_ctor(1, 1, 0); } else { - x_110 = x_109; + x_108 = x_107; } -lean_ctor_set(x_110, 0, x_108); -return x_110; +lean_ctor_set(x_108, 0, x_106); +return x_108; } } } else { -uint8_t x_111; -lean_dec_ref(x_17); -lean_dec(x_18); -lean_dec(x_16); +uint8_t x_109; lean_dec_ref(x_15); +lean_dec(x_16); lean_dec(x_14); lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); +lean_dec(x_12); +lean_dec_ref(x_11); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_111 = !lean_is_exclusive(x_24); -if (x_111 == 0) +x_109 = !lean_is_exclusive(x_22); +if (x_109 == 0) { -return x_24; +return x_22; } else { -lean_object* x_112; lean_object* x_113; -x_112 = lean_ctor_get(x_24, 0); -lean_inc(x_112); -lean_dec(x_24); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_112); -return x_113; +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_22, 0); +lean_inc(x_110); +lean_dec(x_22); +x_111 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_111, 0, x_110); +return x_111; } } } else { -uint8_t x_114; -lean_dec_ref(x_17); -lean_dec(x_18); -lean_dec(x_16); +uint8_t x_112; lean_dec_ref(x_15); +lean_dec(x_16); lean_dec(x_14); lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec(x_10); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_114 = !lean_is_exclusive(x_23); -if (x_114 == 0) +x_112 = !lean_is_exclusive(x_21); +if (x_112 == 0) { -return x_23; +return x_21; } else { -lean_object* x_115; lean_object* x_116; -x_115 = lean_ctor_get(x_23, 0); -lean_inc(x_115); -lean_dec(x_23); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_115); -return x_116; +lean_object* x_113; lean_object* x_114; +x_113 = lean_ctor_get(x_21, 0); +lean_inc(x_113); +lean_dec(x_21); +x_114 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_114, 0, x_113); +return x_114; } } } else { -lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_117 = lean_ctor_get(x_17, 0); -x_118 = lean_ctor_get(x_17, 1); -x_119 = lean_ctor_get(x_17, 2); -x_120 = lean_ctor_get(x_17, 3); -x_121 = lean_ctor_get(x_17, 4); -x_122 = lean_ctor_get(x_17, 5); -x_123 = lean_ctor_get(x_17, 6); -x_124 = lean_ctor_get(x_17, 7); -x_125 = lean_ctor_get(x_17, 8); -x_126 = lean_ctor_get(x_17, 9); -x_127 = lean_ctor_get(x_17, 10); -x_128 = lean_ctor_get(x_17, 11); -x_129 = lean_ctor_get_uint8(x_17, sizeof(void*)*14); -x_130 = lean_ctor_get(x_17, 12); -x_131 = lean_ctor_get_uint8(x_17, sizeof(void*)*14 + 1); -x_132 = lean_ctor_get(x_17, 13); -lean_inc(x_132); +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_115 = lean_ctor_get(x_15, 0); +x_116 = lean_ctor_get(x_15, 1); +x_117 = lean_ctor_get(x_15, 2); +x_118 = lean_ctor_get(x_15, 3); +x_119 = lean_ctor_get(x_15, 4); +x_120 = lean_ctor_get(x_15, 5); +x_121 = lean_ctor_get(x_15, 6); +x_122 = lean_ctor_get(x_15, 7); +x_123 = lean_ctor_get(x_15, 8); +x_124 = lean_ctor_get(x_15, 9); +x_125 = lean_ctor_get(x_15, 10); +x_126 = lean_ctor_get(x_15, 11); +x_127 = lean_ctor_get_uint8(x_15, sizeof(void*)*14); +x_128 = lean_ctor_get(x_15, 12); +x_129 = lean_ctor_get_uint8(x_15, sizeof(void*)*14 + 1); +x_130 = lean_ctor_get(x_15, 13); lean_inc(x_130); lean_inc(x_128); -lean_inc(x_127); lean_inc(x_126); lean_inc(x_125); lean_inc(x_124); @@ -89270,313 +89020,305 @@ lean_inc(x_120); lean_inc(x_119); lean_inc(x_118); lean_inc(x_117); -lean_dec(x_17); -x_133 = l_Lean_replaceRef(x_1, x_122); -lean_dec(x_122); -x_134 = lean_alloc_ctor(0, 14, 2); -lean_ctor_set(x_134, 0, x_117); -lean_ctor_set(x_134, 1, x_118); -lean_ctor_set(x_134, 2, x_119); -lean_ctor_set(x_134, 3, x_120); -lean_ctor_set(x_134, 4, x_121); -lean_ctor_set(x_134, 5, x_133); -lean_ctor_set(x_134, 6, x_123); -lean_ctor_set(x_134, 7, x_124); -lean_ctor_set(x_134, 8, x_125); -lean_ctor_set(x_134, 9, x_126); -lean_ctor_set(x_134, 10, x_127); -lean_ctor_set(x_134, 11, x_128); -lean_ctor_set(x_134, 12, x_130); -lean_ctor_set(x_134, 13, x_132); -lean_ctor_set_uint8(x_134, sizeof(void*)*14, x_129); -lean_ctor_set_uint8(x_134, sizeof(void*)*14 + 1, x_131); -lean_inc(x_18); -lean_inc_ref(x_134); +lean_inc(x_116); +lean_inc(x_115); +lean_dec(x_15); +x_131 = l_Lean_replaceRef(x_1, x_120); +lean_dec(x_120); +x_132 = lean_alloc_ctor(0, 14, 2); +lean_ctor_set(x_132, 0, x_115); +lean_ctor_set(x_132, 1, x_116); +lean_ctor_set(x_132, 2, x_117); +lean_ctor_set(x_132, 3, x_118); +lean_ctor_set(x_132, 4, x_119); +lean_ctor_set(x_132, 5, x_131); +lean_ctor_set(x_132, 6, x_121); +lean_ctor_set(x_132, 7, x_122); +lean_ctor_set(x_132, 8, x_123); +lean_ctor_set(x_132, 9, x_124); +lean_ctor_set(x_132, 10, x_125); +lean_ctor_set(x_132, 11, x_126); +lean_ctor_set(x_132, 12, x_128); +lean_ctor_set(x_132, 13, x_130); +lean_ctor_set_uint8(x_132, sizeof(void*)*14, x_127); +lean_ctor_set_uint8(x_132, sizeof(void*)*14 + 1, x_129); lean_inc(x_16); -lean_inc_ref(x_15); +lean_inc_ref(x_132); lean_inc(x_14); lean_inc_ref(x_13); -x_135 = l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(x_2, x_13, x_14, x_15, x_16, x_134, x_18); -if (lean_obj_tag(x_135) == 0) +lean_inc(x_12); +lean_inc_ref(x_11); +x_133 = l_Lean_Elab_Term_synthesizeSyntheticMVarsNoPostponing(x_2, x_11, x_12, x_13, x_14, x_132, x_16); +if (lean_obj_tag(x_133) == 0) { -lean_object* x_136; -lean_dec_ref(x_135); -lean_inc(x_18); -lean_inc_ref(x_134); +lean_object* x_134; +lean_dec_ref(x_133); lean_inc(x_16); -lean_inc_ref(x_15); +lean_inc_ref(x_132); lean_inc(x_14); lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); lean_inc(x_3); -x_136 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults(x_3, x_12, x_13, x_14, x_15, x_16, x_134, x_18); -if (lean_obj_tag(x_136) == 0) +x_134 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_resolveFieldDefaults(x_3, x_10, x_11, x_12, x_13, x_14, x_132, x_16); +if (lean_obj_tag(x_134) == 0) { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_137 = lean_ctor_get(x_136, 0); -lean_inc(x_137); -lean_dec_ref(x_136); -x_138 = lean_ctor_get(x_137, 1); -lean_inc(x_138); -if (lean_is_exclusive(x_137)) { - lean_ctor_release(x_137, 0); - lean_ctor_release(x_137, 1); - x_139 = x_137; -} else { - lean_dec_ref(x_137); - x_139 = lean_box(0); -} -x_140 = l_Lean_Meta_getLocalInstances___redArg(x_15); -if (lean_obj_tag(x_140) == 0) -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_141 = lean_ctor_get(x_140, 0); -lean_inc(x_141); -lean_dec_ref(x_140); -x_142 = lean_ctor_get(x_138, 0); -lean_inc_ref(x_142); -x_143 = lean_ctor_get(x_138, 1); -lean_inc_ref(x_143); -x_144 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_144); -lean_inc(x_138); -lean_inc_ref(x_5); -lean_inc_ref(x_4); -x_145 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_138, x_13, x_14, x_15, x_16, x_134, x_18); -if (lean_obj_tag(x_145) == 0) -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - x_147 = x_145; -} else { - lean_dec_ref(x_145); - x_147 = lean_box(0); -} -x_148 = lean_ctor_get(x_146, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_146, 1); -lean_inc(x_149); -if (lean_is_exclusive(x_146)) { - lean_ctor_release(x_146, 0); - lean_ctor_release(x_146, 1); - x_150 = x_146; -} else { - lean_dec_ref(x_146); - x_150 = lean_box(0); -} -lean_inc(x_141); -lean_inc_ref(x_144); -lean_inc_ref(x_143); -x_151 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); -lean_closure_set(x_151, 0, x_143); -lean_closure_set(x_151, 1, x_144); -lean_closure_set(x_151, 2, x_141); -x_152 = lean_box(x_2); -x_153 = lean_box(x_9); -lean_inc(x_141); -lean_inc_ref(x_144); -lean_inc_ref(x_143); -x_154 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 24, 14); -lean_closure_set(x_154, 0, x_152); -lean_closure_set(x_154, 1, x_5); -lean_closure_set(x_154, 2, x_143); -lean_closure_set(x_154, 3, x_3); -lean_closure_set(x_154, 4, x_7); -lean_closure_set(x_154, 5, x_138); -lean_closure_set(x_154, 6, x_144); -lean_closure_set(x_154, 7, x_141); -lean_closure_set(x_154, 8, x_4); -lean_closure_set(x_154, 9, x_8); -lean_closure_set(x_154, 10, x_142); -lean_closure_set(x_154, 11, x_153); -lean_closure_set(x_154, 12, x_10); -lean_closure_set(x_154, 13, x_11); -x_155 = lean_box(0); -if (lean_is_scalar(x_139)) { - x_156 = lean_alloc_ctor(1, 2, 0); -} else { - x_156 = x_139; - lean_ctor_set_tag(x_156, 1); -} -lean_ctor_set(x_156, 0, x_148); -lean_ctor_set(x_156, 1, x_155); -lean_inc_ref(x_143); -lean_inc(x_141); -lean_inc_ref(x_144); -x_157 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); -lean_closure_set(x_157, 0, x_144); -lean_closure_set(x_157, 1, x_141); -lean_closure_set(x_157, 2, x_143); -x_158 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); -lean_closure_set(x_158, 0, x_143); -x_159 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); -lean_closure_set(x_159, 0, lean_box(0)); -lean_closure_set(x_159, 1, x_144); -lean_closure_set(x_159, 2, x_141); -lean_closure_set(x_159, 3, x_158); -x_160 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_160, 0, x_156); -lean_ctor_set(x_160, 1, x_157); -lean_ctor_set(x_160, 2, x_151); -lean_ctor_set(x_160, 3, x_159); -lean_ctor_set(x_160, 4, x_154); -if (lean_is_scalar(x_150)) { - x_161 = lean_alloc_ctor(0, 2, 0); -} else { - x_161 = x_150; -} -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_149); -if (lean_is_scalar(x_147)) { - x_162 = lean_alloc_ctor(0, 1, 0); -} else { - x_162 = x_147; -} -lean_ctor_set(x_162, 0, x_161); -return x_162; -} -else -{ -lean_object* x_163; lean_object* x_164; lean_object* x_165; -lean_dec_ref(x_144); -lean_dec_ref(x_143); -lean_dec_ref(x_142); -lean_dec(x_141); -lean_dec(x_139); -lean_dec(x_138); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_163 = lean_ctor_get(x_145, 0); -lean_inc(x_163); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - x_164 = x_145; -} else { - lean_dec_ref(x_145); - x_164 = lean_box(0); -} -if (lean_is_scalar(x_164)) { - x_165 = lean_alloc_ctor(1, 1, 0); -} else { - x_165 = x_164; -} -lean_ctor_set(x_165, 0, x_163); -return x_165; -} -} -else -{ -lean_object* x_166; lean_object* x_167; lean_object* x_168; -lean_dec(x_139); -lean_dec(x_138); +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); lean_dec_ref(x_134); -lean_dec(x_18); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_166 = lean_ctor_get(x_140, 0); -lean_inc(x_166); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - x_167 = x_140; -} else { - lean_dec_ref(x_140); - x_167 = lean_box(0); -} -if (lean_is_scalar(x_167)) { - x_168 = lean_alloc_ctor(1, 1, 0); -} else { - x_168 = x_167; -} -lean_ctor_set(x_168, 0, x_166); -return x_168; -} -} -else -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; -lean_dec_ref(x_134); -lean_dec(x_18); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_169 = lean_ctor_get(x_136, 0); -lean_inc(x_169); -if (lean_is_exclusive(x_136)) { - lean_ctor_release(x_136, 0); - x_170 = x_136; -} else { - lean_dec_ref(x_136); - x_170 = lean_box(0); -} -if (lean_is_scalar(x_170)) { - x_171 = lean_alloc_ctor(1, 1, 0); -} else { - x_171 = x_170; -} -lean_ctor_set(x_171, 0, x_169); -return x_171; -} -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec_ref(x_134); -lean_dec(x_18); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -x_172 = lean_ctor_get(x_135, 0); -lean_inc(x_172); +x_136 = lean_ctor_get(x_135, 1); +lean_inc(x_136); if (lean_is_exclusive(x_135)) { lean_ctor_release(x_135, 0); - x_173 = x_135; + lean_ctor_release(x_135, 1); + x_137 = x_135; } else { lean_dec_ref(x_135); - x_173 = lean_box(0); + x_137 = lean_box(0); } -if (lean_is_scalar(x_173)) { - x_174 = lean_alloc_ctor(1, 1, 0); +x_138 = l_Lean_Meta_getLocalInstances___redArg(x_13); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +lean_dec_ref(x_138); +x_140 = lean_ctor_get(x_136, 0); +lean_inc_ref(x_140); +x_141 = lean_ctor_get(x_136, 1); +lean_inc_ref(x_141); +x_142 = lean_ctor_get(x_13, 2); +lean_inc_ref(x_142); +lean_inc(x_136); +lean_inc_ref(x_5); +lean_inc_ref(x_4); +x_143 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_mkCtor(x_4, x_5, x_6, x_136, x_11, x_12, x_13, x_14, x_132, x_16); +if (lean_obj_tag(x_143) == 0) +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_144 = lean_ctor_get(x_143, 0); +lean_inc(x_144); +if (lean_is_exclusive(x_143)) { + lean_ctor_release(x_143, 0); + x_145 = x_143; } else { - x_174 = x_173; + lean_dec_ref(x_143); + x_145 = lean_box(0); } -lean_ctor_set(x_174, 0, x_172); -return x_174; +x_146 = lean_ctor_get(x_144, 0); +lean_inc(x_146); +x_147 = lean_ctor_get(x_144, 1); +lean_inc(x_147); +if (lean_is_exclusive(x_144)) { + lean_ctor_release(x_144, 0); + lean_ctor_release(x_144, 1); + x_148 = x_144; +} else { + lean_dec_ref(x_144); + x_148 = lean_box(0); +} +lean_inc(x_139); +lean_inc_ref(x_142); +lean_inc_ref(x_141); +x_149 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__1___boxed), 12, 3); +lean_closure_set(x_149, 0, x_141); +lean_closure_set(x_149, 1, x_142); +lean_closure_set(x_149, 2, x_139); +x_150 = lean_box(x_2); +x_151 = lean_box(x_9); +lean_inc(x_139); +lean_inc_ref(x_142); +lean_inc_ref(x_141); +x_152 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed), 22, 12); +lean_closure_set(x_152, 0, x_150); +lean_closure_set(x_152, 1, x_5); +lean_closure_set(x_152, 2, x_141); +lean_closure_set(x_152, 3, x_3); +lean_closure_set(x_152, 4, x_7); +lean_closure_set(x_152, 5, x_136); +lean_closure_set(x_152, 6, x_142); +lean_closure_set(x_152, 7, x_139); +lean_closure_set(x_152, 8, x_4); +lean_closure_set(x_152, 9, x_8); +lean_closure_set(x_152, 10, x_140); +lean_closure_set(x_152, 11, x_151); +x_153 = lean_box(0); +if (lean_is_scalar(x_137)) { + x_154 = lean_alloc_ctor(1, 2, 0); +} else { + x_154 = x_137; + lean_ctor_set_tag(x_154, 1); +} +lean_ctor_set(x_154, 0, x_146); +lean_ctor_set(x_154, 1, x_153); +lean_inc_ref(x_141); +lean_inc(x_139); +lean_inc_ref(x_142); +x_155 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_collectUsedFVars___boxed), 9, 3); +lean_closure_set(x_155, 0, x_142); +lean_closure_set(x_155, 1, x_139); +lean_closure_set(x_155, 2, x_141); +x_156 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkDefaults___boxed), 8, 1); +lean_closure_set(x_156, 0, x_141); +x_157 = lean_alloc_closure((void*)(l_Lean_Meta_withLCtx___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__2___boxed), 11, 4); +lean_closure_set(x_157, 0, lean_box(0)); +lean_closure_set(x_157, 1, x_142); +lean_closure_set(x_157, 2, x_139); +lean_closure_set(x_157, 3, x_156); +x_158 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_158, 0, x_154); +lean_ctor_set(x_158, 1, x_155); +lean_ctor_set(x_158, 2, x_149); +lean_ctor_set(x_158, 3, x_157); +lean_ctor_set(x_158, 4, x_152); +if (lean_is_scalar(x_148)) { + x_159 = lean_alloc_ctor(0, 2, 0); +} else { + x_159 = x_148; +} +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_147); +if (lean_is_scalar(x_145)) { + x_160 = lean_alloc_ctor(0, 1, 0); +} else { + x_160 = x_145; +} +lean_ctor_set(x_160, 0, x_159); +return x_160; +} +else +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; +lean_dec_ref(x_142); +lean_dec_ref(x_141); +lean_dec_ref(x_140); +lean_dec(x_139); +lean_dec(x_137); +lean_dec(x_136); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_161 = lean_ctor_get(x_143, 0); +lean_inc(x_161); +if (lean_is_exclusive(x_143)) { + lean_ctor_release(x_143, 0); + x_162 = x_143; +} else { + lean_dec_ref(x_143); + x_162 = lean_box(0); +} +if (lean_is_scalar(x_162)) { + x_163 = lean_alloc_ctor(1, 1, 0); +} else { + x_163 = x_162; +} +lean_ctor_set(x_163, 0, x_161); +return x_163; +} +} +else +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +lean_dec(x_137); +lean_dec(x_136); +lean_dec_ref(x_132); +lean_dec(x_16); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_164 = lean_ctor_get(x_138, 0); +lean_inc(x_164); +if (lean_is_exclusive(x_138)) { + lean_ctor_release(x_138, 0); + x_165 = x_138; +} else { + lean_dec_ref(x_138); + x_165 = lean_box(0); +} +if (lean_is_scalar(x_165)) { + x_166 = lean_alloc_ctor(1, 1, 0); +} else { + x_166 = x_165; +} +lean_ctor_set(x_166, 0, x_164); +return x_166; +} +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_dec_ref(x_132); +lean_dec(x_16); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_167 = lean_ctor_get(x_134, 0); +lean_inc(x_167); +if (lean_is_exclusive(x_134)) { + lean_ctor_release(x_134, 0); + x_168 = x_134; +} else { + lean_dec_ref(x_134); + x_168 = lean_box(0); +} +if (lean_is_scalar(x_168)) { + x_169 = lean_alloc_ctor(1, 1, 0); +} else { + x_169 = x_168; +} +lean_ctor_set(x_169, 0, x_167); +return x_169; +} +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; +lean_dec_ref(x_132); +lean_dec(x_16); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_170 = lean_ctor_get(x_133, 0); +lean_inc(x_170); +if (lean_is_exclusive(x_133)) { + lean_ctor_release(x_133, 0); + x_171 = x_133; +} else { + lean_dec_ref(x_133); + x_171 = lean_box(0); +} +if (lean_is_scalar(x_171)) { + x_172 = lean_alloc_ctor(1, 1, 0); +} else { + x_172 = x_171; +} +lean_ctor_set(x_172, 0, x_170); +return x_172; } } } @@ -89599,16 +89341,14 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; lean_object* x_22; -x_20 = lean_unbox(x_2); -x_21 = lean_unbox(x_9); -x_22 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(x_1, x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +uint8_t x_18; uint8_t x_19; lean_object* x_20; +x_18 = lean_unbox(x_2); +x_19 = lean_unbox(x_9); +x_20 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_1); -return x_22; +return x_20; } } static lean_object* _init_l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0() { @@ -89649,7 +89389,7 @@ return x_3; LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9(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) { _start: { -lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; 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_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_14 = lean_ctor_get(x_5, 1); lean_inc_ref(x_14); x_15 = lean_ctor_get(x_1, 0); @@ -89657,44 +89397,38 @@ lean_inc(x_15); x_16 = lean_ctor_get_uint8(x_1, sizeof(void*)*12); x_17 = lean_ctor_get(x_1, 4); lean_inc(x_17); -x_18 = lean_ctor_get(x_1, 6); -lean_inc(x_18); -x_19 = lean_ctor_get(x_1, 11); -lean_inc(x_19); lean_dec_ref(x_1); -x_20 = 0; -x_21 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0; -x_22 = lean_box(x_20); -x_23 = lean_box(x_16); +x_18 = 0; +x_19 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0; +x_20 = lean_box(x_18); +x_21 = lean_box(x_16); lean_inc_ref(x_3); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8___boxed), 19, 11); -lean_closure_set(x_24, 0, x_15); -lean_closure_set(x_24, 1, x_22); -lean_closure_set(x_24, 2, x_17); -lean_closure_set(x_24, 3, x_2); -lean_closure_set(x_24, 4, x_5); -lean_closure_set(x_24, 5, x_6); -lean_closure_set(x_24, 6, x_21); -lean_closure_set(x_24, 7, x_3); -lean_closure_set(x_24, 8, x_23); -lean_closure_set(x_24, 9, x_19); -lean_closure_set(x_24, 10, x_18); -x_25 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields___boxed), 12, 4); -lean_closure_set(x_25, 0, lean_box(0)); -lean_closure_set(x_25, 1, x_6); -lean_closure_set(x_25, 2, x_3); -lean_closure_set(x_25, 3, x_24); -x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents___boxed), 13, 5); -lean_closure_set(x_26, 0, lean_box(0)); -lean_closure_set(x_26, 1, x_2); -lean_closure_set(x_26, 2, x_4); -lean_closure_set(x_26, 3, x_14); -lean_closure_set(x_26, 4, x_25); -x_27 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__2; -x_28 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_runStructElabM___redArg(x_26, x_27, x_7, x_8, x_9, x_10, x_11, x_12); -return x_28; +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__8___boxed), 17, 9); +lean_closure_set(x_22, 0, x_15); +lean_closure_set(x_22, 1, x_20); +lean_closure_set(x_22, 2, x_17); +lean_closure_set(x_22, 3, x_2); +lean_closure_set(x_22, 4, x_5); +lean_closure_set(x_22, 5, x_6); +lean_closure_set(x_22, 6, x_19); +lean_closure_set(x_22, 7, x_3); +lean_closure_set(x_22, 8, x_21); +x_23 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withFields___boxed), 12, 4); +lean_closure_set(x_23, 0, lean_box(0)); +lean_closure_set(x_23, 1, x_6); +lean_closure_set(x_23, 2, x_3); +lean_closure_set(x_23, 3, x_22); +x_24 = lean_alloc_closure((void*)(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_withParents___boxed), 13, 5); +lean_closure_set(x_24, 0, lean_box(0)); +lean_closure_set(x_24, 1, x_2); +lean_closure_set(x_24, 2, x_4); +lean_closure_set(x_24, 3, x_14); +lean_closure_set(x_24, 4, x_23); +x_25 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__2; +x_26 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_runStructElabM___redArg(x_24, x_25, x_7, x_8, x_9, x_10, x_11, x_12); +return x_26; } } LEAN_EXPORT lean_object* l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___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) { @@ -89854,31 +89588,31 @@ x_10 = l_Lean_Elab_Command_Structure_elabStructureCommand___lam__10(x_1, x_2, x_ return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6___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_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(lean_object* x_1, size_t x_2, size_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(lean_object* x_1, size_t x_2, size_t 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_12; -x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___redArg(x_1, x_2, x_3, x_4, x_9, x_10); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___redArg(x_1, x_2, x_3, x_4, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___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: { size_t x_12; size_t x_13; lean_object* x_14; @@ -89886,7 +89620,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); @@ -89896,115 +89630,115 @@ lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___redArg(x_4, x_5, x_6); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8___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) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__7_spec__8(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___redArg(x_6); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10___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) { -_start: -{ -lean_object* x_8; -x_8 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8_spec__10(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_8; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8(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) { -_start: -{ -lean_object* x_11; -x_11 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8___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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__6_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___redArg(x_2, x_3); +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___redArg(x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11(x_1, x_2, x_3); +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___redArg(x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_CommandContextInfo_saveNoFileMap___at___00Lean_Elab_CommandContextInfo_save___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__9_spec__11(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___redArg(x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Elab_getResetInfoTrees___at___00__private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10_spec__13(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10(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) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10___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_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___00Lean_Elab_withSaveInfoContext___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__7_spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; lean_object* x_6; x_5 = lean_unbox_usize(x_3); lean_dec(x_3); -x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15(x_1, x_2, x_5, x_4); +x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5(x_1, x_2, x_5, x_4); lean_dec(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18(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_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___redArg(x_2, x_3, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___redArg(x_2, x_3, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18___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_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11___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) { _start: { lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8_spec__11_spec__15_spec__18(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3_spec__4_spec__5_spec__11(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_3); lean_dec_ref(x_2); @@ -90576,12 +90310,12 @@ l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOr lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__4); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__6 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__6(); lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_Structure_checkResolutionOrder___closed__6); -l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0(); -lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__0); -l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2(); -lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__2); -l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4(); -lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__8___closed__4); +l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0(); +lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__0); +l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2(); +lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__2); +l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4 = _init_l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4(); +lean_mark_persistent(l_Lean_setStructureParents___at___00Lean_Elab_Command_Structure_elabStructureCommand_spec__3___closed__4); l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1 = _init_l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Command_Structure_elabStructureCommand___lam__7___boxed__const__1); l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0 = _init_l_Lean_Elab_Command_Structure_elabStructureCommand___lam__9___closed__0(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/Attr.c b/stage0/stdlib/Lean/Elab/Tactic/Do/Attr.c index f2531311b6..4d78bcd4e2 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/Attr.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/Attr.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Do.Attr -// Imports: public import Lean.Meta.Tactic.Simp public import Std.Tactic.Do.Syntax import Init.While +// Imports: public import Lean.Meta.Tactic.Simp public import Std.Tactic.Do.Syntax import Init.While import Init.Syntax #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -225,19 +225,96 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorem LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); -static size_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__0; +static size_t l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__0; size_t lean_usize_sub(size_t, size_t); -static size_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; +static size_t l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; size_t lean_usize_land(size_t, size_t); lean_object* lean_usize_to_nat(size_t); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_right(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); +uint64_t l_Lean_Meta_DiscrTree_Key_hash(lean_object*); +size_t lean_uint64_to_usize(uint64_t); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Meta_DiscrTree_instInhabited(lean_object*); +static lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0; +lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3(lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5_spec__10(lean_object*, lean_object*, lean_object*); +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5(lean_object*, lean_object*); +uint8_t l_Lean_Meta_DiscrTree_Key_lt(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0; +static lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1; +lean_object* lean_nat_shiftr(lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6___redArg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); +static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0; +lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_le(size_t, size_t); +lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); +size_t lean_usize_mul(size_t, size_t); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 26, .m_capacity = 26, .m_length = 25, .m_data = "Lean.Meta.DiscrTree.Basic"}; +static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__0 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__0_value; +static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 35, .m_capacity = 35, .m_length = 34, .m_data = "Lean.Meta.DiscrTree.insertKeyValue"}; +static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__1 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__1_value; +static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 21, .m_capacity = 21, .m_length = 20, .m_data = "invalid key sequence"}; +static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__2 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__2_value; +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3; +uint8_t l_Array_isEmpty___redArg(lean_object*); +lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12(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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___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_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); -size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0___redArg___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased(lean_object*, lean_object*); @@ -248,31 +325,22 @@ LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_Persisten LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0; -lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_Lean_PersistentHashMap_mkCollisionNode___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -size_t lean_usize_add(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_usize_dec_le(size_t, size_t); -lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(lean_object*); -size_t lean_usize_mul(size_t, size_t); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_anyMUnsafe_any___at___00Array_contains___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_countBVarDependentMVars_go_spec__0_spec__0(lean_object*, lean_object*, size_t, size_t); @@ -311,7 +379,6 @@ lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static const lean_ctor_object l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(245, 188, 225, 225, 165, 5, 251, 132)}}; static const lean_ctor_object l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__2_value_aux_0),((lean_object*)&l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__1_value),LEAN_SCALAR_PTR_LITERAL(98, 170, 59, 223, 79, 132, 139, 119)}}; static const lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__2 = (const lean_object*)&l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__2_value; -lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__3; static lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__4; static lean_object* l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__5; @@ -333,7 +400,6 @@ uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); lean_object* l_Lean_Meta_Simp_Context_mkDefault___redArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred___lam__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_isEmpty___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheorem_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -460,9 +526,12 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkU LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst_spec__0_spec__0_spec__1_spec__3_spec__4_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst_spec__0_spec__0_spec__1_spec__3_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst_spec__0_spec__0_spec__1_spec__3_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 41, .m_capacity = 41, .m_length = 40, .m_data = "invalid 'spec', local constant not found"}; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 35, .m_capacity = 35, .m_length = 34, .m_data = "invalid 'spec', local declaration "}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__0_value; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__1; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = " not found"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__2_value; +static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3; lean_object* l_Lean_FVarId_findDecl_x3f___redArg(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -473,88 +542,24 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_SpecAttr_ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromStx_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromStx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromStx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_DiscrTree_instInhabited(lean_object*); -static lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0; -lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); -uint64_t l_Lean_Meta_DiscrTree_Key_hash(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*); -uint8_t l_Lean_Meta_DiscrTree_Key_lt(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1___boxed(lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5_spec__10(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0; -static lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1; -lean_object* lean_nat_shiftr(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6___redArg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(size_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1___redArg(lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 26, .m_capacity = 26, .m_length = 25, .m_data = "Lean.Meta.DiscrTree.Basic"}; -static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__0 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__0_value; -static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 35, .m_capacity = 35, .m_length = 34, .m_data = "Lean.Meta.DiscrTree.insertKeyValue"}; -static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__1 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__1_value; -static const lean_string_object l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 21, .m_capacity = 21, .m_length = 20, .m_data = "invalid key sequence"}; -static const lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__2 = (const lean_object*)&l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__2_value; -lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3; -lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1(lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12(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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___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_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0; -static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1; -static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2; -static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3; lean_object* l_Lean_ScopedEnvExtension_addCore___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___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_Elab_Tactic_Do_SpecAttr_addSpecTheorem(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___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_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromLocal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__0(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__0___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__1___boxed(lean_object*); -static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__0_value; static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__0___boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__1_value; @@ -573,41 +578,32 @@ lean_object* l_Lean_registerSimpleScopedEnvExtension___redArg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_initFn_00___x40_Lean_Elab_Tactic_Do_Attr_1654486625____hygCtx___hyg_2_(); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_initFn_00___x40_Lean_Elab_Tactic_Do_Attr_1654486625____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_specAttr; -static const lean_string_object l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "trace"}; -static const lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__0 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__0_value; -static const lean_ctor_object l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__0_value),LEAN_SCALAR_PTR_LITERAL(212, 145, 141, 177, 67, 149, 127, 197)}}; -static const lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__1 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__1_value; +static const lean_string_object l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "trace"}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__0 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__0_value; +static const lean_ctor_object l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__0_value),LEAN_SCALAR_PTR_LITERAL(212, 145, 141, 177, 67, 149, 127, 197)}}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__1 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__1_value; lean_object* l_Lean_Name_append(lean_object*, lean_object*); uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -double lean_float_of_nat(lean_object*); -static double l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0; -static const lean_string_object l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 1, .m_capacity = 1, .m_length = 0, .m_data = ""}; -static const lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1 = (const lean_object*)&l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1_value; -static lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2; -lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 83, .m_capacity = 83, .m_length = 82, .m_data = "Invalid 'spec': target was neither a Hoare triple specification nor a 'simp' lemma"}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__0_value; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1; -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 45, .m_capacity = 45, .m_length = 44, .m_data = "Reason for failure to apply spec attribute: "}; -static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__2_value; -static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3; -lean_object* l_Lean_Exception_toMessageData(lean_object*); -lean_object* l_Lean_getBuiltinAttributeImpl(lean_object*); -uint8_t l_Lean_Exception_isInterrupt(lean_object*); -uint8_t l_Lean_Exception_isRuntime(lean_object*); -lean_object* lean_io_error_to_string(lean_object*); -lean_object* l_Lean_MessageData_ofFormat(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +double lean_float_of_nat(lean_object*); +static double l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0; +static const lean_string_object l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 1, .m_capacity = 1, .m_length = 0, .m_data = ""}; +static const lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1 = (const lean_object*)&l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1_value; +static lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2; +lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_findAsync_x3f(lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__0; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__1; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__2; @@ -615,13 +611,35 @@ static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed_ static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__4; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__5; static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__6; -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Parser"}; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 45, .m_capacity = 45, .m_length = 44, .m_data = "Reason for failure to apply spec attribute: "}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7_value; +static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8; +lean_object* l_String_toRawSubstring_x27(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "null"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__10 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__10_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__10_value),LEAN_SCALAR_PTR_LITERAL(24, 58, 49, 223, 146, 207, 197, 136)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11_value; +lean_object* l_Array_mkArray0(lean_object*); +static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Parser"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "simple"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14_value; extern lean_object* l_Lean_Meta_instInhabitedConfigWithKey___private__1; lean_object* lean_st_mk_ref(lean_object*); -lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_getAttrParamOptPrio(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Exception_toMessageData(lean_object*); +lean_object* l_Lean_getBuiltinAttributeImpl(lean_object*); +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Exception_isInterrupt(lean_object*); +uint8_t l_Lean_Exception_isRuntime(lean_object*); +lean_object* lean_io_error_to_string(lean_object*); +lean_object* l_Lean_MessageData_ofFormat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__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*); LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__3_spec__3(lean_object*, lean_object*, lean_object*); @@ -636,25 +654,27 @@ static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___c static lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "mkSpecAttr"}; +static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___boxed, .m_arity = 6, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__7_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_0),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__0_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(52, 247, 248, 201, 92, 23, 188, 159)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(161, 230, 229, 85, 182, 144, 182, 176)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__2_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(101, 141, 64, 183, 187, 157, 254, 157)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_4 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__19_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(134, 109, 122, 82, 215, 148, 2, 116)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value_aux_4),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(131, 130, 97, 217, 238, 242, 98, 155)}}; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "mkSpecAttr"}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "spec"}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__7_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_0),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__0_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(52, 247, 248, 201, 92, 23, 188, 159)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(161, 230, 229, 85, 182, 144, 182, 176)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__2_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(101, 141, 64, 183, 187, 157, 254, 157)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_4 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__19_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(134, 109, 122, 82, 215, 148, 2, 116)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value_aux_4),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(131, 130, 97, 217, 238, 242, 98, 155)}}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 105, 220, 149, 84, 64, 243, 129)}}; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "spec"}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value; -static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___boxed, .m_arity = 5, .m_num_fixed = 1, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value)} }; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value),LEAN_SCALAR_PTR_LITERAL(0, 105, 220, 149, 84, 64, 243, 129)}}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 97, .m_capacity = 97, .m_length = 96, .m_data = "Marks Hoare triple specifications and simp theorems to use with the `mspec` and `mvcgen` tactics"}; +static const lean_closure_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___boxed, .m_arity = 5, .m_num_fixed = 1, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4_value)} }; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 8, .m_other = 3, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__1_value),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__3_value),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(1, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_string_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 97, .m_capacity = 97, .m_length = 96, .m_data = "Marks Hoare triple specifications and simp theorems to use with the `mspec` and `mvcgen` tactics"}; static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 8, .m_other = 3, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2_value),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4_value),((lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6_value),LEAN_SCALAR_PTR_LITERAL(1, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__7 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__7_value; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1841,6 +1861,1435 @@ x_1 = l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems_default; return x_1; } } +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_array_get_size(x_1); +x_6 = lean_nat_dec_lt(x_3, x_5); +if (x_6 == 0) +{ +lean_object* x_7; +lean_dec(x_3); +x_7 = lean_box(0); +return x_7; +} +else +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_array_fget_borrowed(x_1, x_3); +x_9 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_3, x_10); +lean_dec(x_3); +x_3 = x_11; +goto _start; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_array_fget_borrowed(x_2, x_3); +lean_dec(x_3); +lean_inc(x_13); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_5; +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__0() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 5; +x_2 = 1; +x_3 = lean_usize_shift_left(x_2, x_1); +return x_3; +} +} +static size_t _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1() { +_start: +{ +size_t x_1; size_t x_2; size_t x_3; +x_1 = 1; +x_2 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__0; +x_3 = lean_usize_sub(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_box(2); +x_7 = 5; +x_8 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; +x_9 = lean_usize_land(x_2, x_8); +x_10 = lean_usize_to_nat(x_9); +x_11 = lean_array_get(x_6, x_5, x_10); +lean_dec(x_10); +lean_dec_ref(x_5); +switch (lean_obj_tag(x_11)) { +case 0: +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec_ref(x_11); +x_14 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_12); +lean_dec(x_12); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec(x_13); +lean_free_object(x_1); +x_15 = lean_box(0); +return x_15; +} +else +{ +lean_ctor_set_tag(x_1, 1); +lean_ctor_set(x_1, 0, x_13); +return x_1; +} +} +case 1: +{ +lean_object* x_16; size_t x_17; +lean_free_object(x_1); +x_16 = lean_ctor_get(x_11, 0); +lean_inc(x_16); +lean_dec_ref(x_11); +x_17 = lean_usize_shift_right(x_2, x_7); +x_1 = x_16; +x_2 = x_17; +goto _start; +} +default: +{ +lean_object* x_19; +lean_free_object(x_1); +x_19 = lean_box(0); +return x_19; +} +} +} +else +{ +lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; +x_20 = lean_ctor_get(x_1, 0); +lean_inc(x_20); +lean_dec(x_1); +x_21 = lean_box(2); +x_22 = 5; +x_23 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; +x_24 = lean_usize_land(x_2, x_23); +x_25 = lean_usize_to_nat(x_24); +x_26 = lean_array_get(x_21, x_20, x_25); +lean_dec(x_25); +lean_dec_ref(x_20); +switch (lean_obj_tag(x_26)) { +case 0: +{ +lean_object* x_27; lean_object* x_28; uint8_t x_29; +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_ref(x_26); +x_29 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_27); +lean_dec(x_27); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec(x_28); +x_30 = lean_box(0); +return x_30; +} +else +{ +lean_object* x_31; +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_28); +return x_31; +} +} +case 1: +{ +lean_object* x_32; size_t x_33; +x_32 = lean_ctor_get(x_26, 0); +lean_inc(x_32); +lean_dec_ref(x_26); +x_33 = lean_usize_shift_right(x_2, x_22); +x_1 = x_32; +x_2 = x_33; +goto _start; +} +default: +{ +lean_object* x_35; +x_35 = lean_box(0); +return x_35; +} +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_36); +x_37 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_37); +lean_dec_ref(x_1); +x_38 = lean_unsigned_to_nat(0u); +x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg(x_36, x_37, x_38, x_3); +lean_dec_ref(x_37); +lean_dec_ref(x_36); +return x_39; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; lean_object* x_5; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_3); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; size_t x_4; lean_object* x_5; +x_3 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_4 = lean_uint64_to_usize(x_3); +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_DiscrTree_instInhabited(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0; +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_3); +x_6 = lean_array_push(x_1, x_2); +return x_6; +} +else +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_fget_borrowed(x_1, x_3); +lean_inc(x_7); +lean_inc_ref(x_2); +x_8 = l_Lean_Elab_Tactic_Do_SpecAttr_instBEqSpecTheorem_beq(x_2, x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_add(x_3, x_9); +lean_dec(x_3); +x_3 = x_10; +goto _start; +} +else +{ +lean_object* x_12; +x_12 = lean_array_fset(x_1, x_3, x_2); +lean_dec(x_3); +return x_12; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = lean_unsigned_to_nat(0u); +x_4 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5_spec__10(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT uint8_t l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_2, 0); +x_5 = l_Lean_Meta_DiscrTree_Key_lt(x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_1, x_2); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_add(x_1, x_6); +x_8 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_7); +lean_dec(x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = lean_nat_add(x_7, x_8); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_shiftr(x_9, x_10); +lean_dec(x_9); +x_12 = lean_array_fget(x_5, x_11); +x_13 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_12, x_6); +if (x_13 == 0) +{ +uint8_t x_14; +lean_dec(x_8); +x_14 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_6, x_12); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +lean_dec(x_7); +x_15 = lean_array_get_size(x_5); +x_16 = lean_nat_dec_lt(x_11, x_15); +if (x_16 == 0) +{ +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_5; +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_12, 1); +x_19 = lean_ctor_get(x_12, 0); +lean_dec(x_19); +x_20 = lean_box(0); +x_21 = lean_array_fset(x_5, x_11, x_20); +x_22 = lean_nat_add(x_1, x_10); +x_23 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_2, x_3, x_22, x_18); +lean_dec(x_22); +lean_ctor_set(x_12, 1, x_23); +lean_ctor_set(x_12, 0, x_4); +x_24 = lean_array_fset(x_21, x_11, x_12); +lean_dec(x_11); +return x_24; +} +else +{ +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; +x_25 = lean_ctor_get(x_12, 1); +lean_inc(x_25); +lean_dec(x_12); +x_26 = lean_box(0); +x_27 = lean_array_fset(x_5, x_11, x_26); +x_28 = lean_nat_add(x_1, x_10); +x_29 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_2, x_3, x_28, x_25); +lean_dec(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_4); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_array_fset(x_27, x_11, x_30); +lean_dec(x_11); +return x_31; +} +} +} +else +{ +lean_dec(x_12); +x_8 = x_11; +goto _start; +} +} +else +{ +uint8_t x_33; +lean_dec(x_12); +x_33 = lean_nat_dec_eq(x_11, x_7); +if (x_33 == 0) +{ +lean_dec(x_7); +x_7 = x_11; +goto _start; +} +else +{ +lean_object* x_35; 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_dec(x_11); +lean_dec(x_8); +x_35 = lean_nat_add(x_1, x_10); +x_36 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_35); +lean_dec(x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_36); +x_38 = lean_nat_add(x_7, x_10); +lean_dec(x_7); +x_39 = lean_array_get_size(x_5); +x_40 = lean_array_push(x_5, x_37); +x_41 = l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_box(0), x_38, x_40, x_39); +lean_dec(x_38); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_array_get_size(x_5); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_eq(x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_array_fget_borrowed(x_5, x_8); +x_11 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_6, x_10); +if (x_11 == 0) +{ +uint8_t x_12; +x_12 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_10, x_6); +if (x_12 == 0) +{ +uint8_t x_13; +x_13 = lean_nat_dec_lt(x_8, x_7); +if (x_13 == 0) +{ +lean_dec(x_4); +lean_dec_ref(x_3); +return x_5; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_inc(x_10); +x_14 = lean_box(0); +x_15 = lean_array_fset(x_5, x_8, x_14); +x_16 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_10); +x_17 = lean_array_fset(x_15, x_8, x_16); +return x_17; +} +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_7, x_18); +x_20 = lean_array_fget_borrowed(x_5, x_19); +x_21 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_20, x_6); +if (x_21 == 0) +{ +uint8_t x_22; +x_22 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__1(x_6, x_20); +if (x_22 == 0) +{ +uint8_t x_23; +x_23 = lean_nat_dec_lt(x_19, x_7); +if (x_23 == 0) +{ +lean_dec(x_19); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_5; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_inc(x_20); +x_24 = lean_box(0); +x_25 = lean_array_fset(x_5, x_19, x_24); +x_26 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_20); +x_27 = lean_array_fset(x_25, x_19, x_26); +lean_dec(x_19); +return x_27; +} +} +else +{ +lean_object* x_28; +x_28 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_19); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_19); +x_29 = lean_box(0); +x_30 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_29); +x_31 = lean_array_push(x_5, x_30); +return x_31; +} +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = lean_box(0); +x_33 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_32); +x_34 = lean_array_push(x_5, x_33); +x_35 = l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_box(0), x_8, x_34, x_7); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_box(0); +x_37 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_36); +x_38 = lean_array_push(x_5, x_37); +return x_38; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +x_8 = lean_array_get_size(x_1); +x_9 = lean_nat_dec_lt(x_3, x_8); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5(x_6, x_2); +lean_ctor_set(x_4, 0, x_10); +return x_4; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_11 = lean_array_fget_borrowed(x_1, x_3); +x_12 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1; +lean_inc(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +lean_inc(x_11); +x_14 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6(x_3, x_1, x_2, x_11, x_7, x_13); +lean_dec_ref(x_13); +lean_ctor_set(x_4, 1, x_14); +return x_4; +} +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_4, 0); +x_16 = lean_ctor_get(x_4, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_4); +x_17 = lean_array_get_size(x_1); +x_18 = lean_nat_dec_lt(x_3, x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__5(x_15, x_2); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_16); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_21 = lean_array_fget_borrowed(x_1, x_3); +x_22 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1; +lean_inc(x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +lean_inc(x_21); +x_24 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6(x_3, x_1, x_2, x_21, x_16, x_23); +lean_dec_ref(x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_15); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_7 = lean_ctor_get(x_5, 1); +x_8 = lean_ctor_get(x_5, 0); +lean_dec(x_8); +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_add(x_1, x_9); +x_11 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_2, x_3, x_10, x_7); +lean_dec(x_10); +lean_ctor_set(x_5, 1, x_11); +lean_ctor_set(x_5, 0, x_4); +return x_5; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_5, 1); +lean_inc(x_12); +lean_dec(x_5); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_add(x_1, x_13); +x_15 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_2, x_3, x_14, x_12); +lean_dec(x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_4); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec_ref(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = !lean_is_exclusive(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_array_get_size(x_6); +x_9 = lean_nat_dec_lt(x_2, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_2); +x_10 = lean_array_push(x_6, x_3); +x_11 = lean_array_push(x_7, x_4); +lean_ctor_set(x_1, 1, x_11); +lean_ctor_set(x_1, 0, x_10); +return x_1; +} +else +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_array_fget_borrowed(x_6, x_2); +x_13 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_add(x_2, x_14); +lean_dec(x_2); +x_2 = x_15; +goto _start; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_array_fset(x_6, x_2, x_3); +x_18 = lean_array_fset(x_7, x_2, x_4); +lean_dec(x_2); +lean_ctor_set(x_1, 1, x_18); +lean_ctor_set(x_1, 0, x_17); +return x_1; +} +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_ctor_get(x_1, 0); +x_20 = lean_ctor_get(x_1, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_1); +x_21 = lean_array_get_size(x_19); +x_22 = lean_nat_dec_lt(x_2, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_2); +x_23 = lean_array_push(x_19, x_3); +x_24 = lean_array_push(x_20, x_4); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +else +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_array_fget_borrowed(x_19, x_2); +x_27 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_19); +lean_ctor_set(x_28, 1, x_20); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_2, x_29); +lean_dec(x_2); +x_1 = x_28; +x_2 = x_30; +goto _start; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_array_fset(x_19, x_2, x_3); +x_33 = lean_array_fset(x_20, x_2, x_4); +lean_dec(x_2); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(x_1, x_4, x_2, x_3); +return x_5; +} +} +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_6 = lean_ctor_get(x_1, 0); +x_7 = 5; +x_8 = 1; +x_9 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; +x_10 = lean_usize_land(x_2, x_9); +x_11 = lean_usize_to_nat(x_10); +x_12 = lean_array_get_size(x_6); +x_13 = lean_nat_dec_lt(x_11, x_12); +if (x_13 == 0) +{ +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_4); +return x_1; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_inc_ref(x_6); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + x_14 = x_1; +} else { + lean_dec_ref(x_1); + x_14 = lean_box(0); +} +x_15 = lean_array_fget(x_6, x_11); +x_16 = lean_box(0); +x_17 = lean_array_fset(x_6, x_11, x_16); +switch (lean_obj_tag(x_15)) { +case 0: +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_15); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_15, 0); +x_24 = lean_ctor_get(x_15, 1); +x_25 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_23); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +lean_free_object(x_15); +x_26 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_23, x_24, x_4, x_5); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_18 = x_27; +goto block_21; +} +else +{ +lean_dec(x_24); +lean_dec(x_23); +lean_ctor_set(x_15, 1, x_5); +lean_ctor_set(x_15, 0, x_4); +x_18 = x_15; +goto block_21; +} +} +else +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_28 = lean_ctor_get(x_15, 0); +x_29 = lean_ctor_get(x_15, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_15); +x_30 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; +x_31 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_28, x_29, x_4, x_5); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_18 = x_32; +goto block_21; +} +else +{ +lean_object* x_33; +lean_dec(x_29); +lean_dec(x_28); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_5); +x_18 = x_33; +goto block_21; +} +} +} +case 1: +{ +uint8_t x_34; +x_34 = !lean_is_exclusive(x_15); +if (x_34 == 0) +{ +lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_15, 0); +x_36 = lean_usize_shift_right(x_2, x_7); +x_37 = lean_usize_add(x_3, x_8); +x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_35, x_36, x_37, x_4, x_5); +lean_ctor_set(x_15, 0, x_38); +x_18 = x_15; +goto block_21; +} +else +{ +lean_object* x_39; size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; +x_39 = lean_ctor_get(x_15, 0); +lean_inc(x_39); +lean_dec(x_15); +x_40 = lean_usize_shift_right(x_2, x_7); +x_41 = lean_usize_add(x_3, x_8); +x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_39, x_40, x_41, x_4, x_5); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +x_18 = x_43; +goto block_21; +} +} +default: +{ +lean_object* x_44; +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_4); +lean_ctor_set(x_44, 1, x_5); +x_18 = x_44; +goto block_21; +} +} +block_21: +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_array_fset(x_17, x_11, x_18); +lean_dec(x_11); +if (lean_is_scalar(x_14)) { + x_20 = lean_alloc_ctor(0, 1, 0); +} else { + x_20 = x_14; +} +lean_ctor_set(x_20, 0, x_19); +return x_20; +} +} +} +else +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_1); +if (x_45 == 0) +{ +lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; +x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6___redArg(x_1, x_4, x_5); +x_54 = 7; +x_55 = lean_usize_dec_le(x_54, x_3); +if (x_55 == 0) +{ +lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_56 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_46); +x_57 = lean_unsigned_to_nat(4u); +x_58 = lean_nat_dec_lt(x_56, x_57); +lean_dec(x_56); +x_47 = x_58; +goto block_53; +} +else +{ +x_47 = x_55; +goto block_53; +} +block_53: +{ +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_46, 0); +lean_inc_ref(x_48); +x_49 = lean_ctor_get(x_46, 1); +lean_inc_ref(x_49); +lean_dec_ref(x_46); +x_50 = lean_unsigned_to_nat(0u); +x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0; +x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(x_3, x_48, x_49, x_50, x_51); +lean_dec_ref(x_49); +lean_dec_ref(x_48); +return x_52; +} +else +{ +return x_46; +} +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; size_t x_70; uint8_t x_71; +x_59 = lean_ctor_get(x_1, 0); +x_60 = lean_ctor_get(x_1, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_1); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6___redArg(x_61, x_4, x_5); +x_70 = 7; +x_71 = lean_usize_dec_le(x_70, x_3); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_72 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_62); +x_73 = lean_unsigned_to_nat(4u); +x_74 = lean_nat_dec_lt(x_72, x_73); +lean_dec(x_72); +x_63 = x_74; +goto block_69; +} +else +{ +x_63 = x_71; +goto block_69; +} +block_69: +{ +if (x_63 == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_64 = lean_ctor_get(x_62, 0); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_62, 1); +lean_inc_ref(x_65); +lean_dec_ref(x_62); +x_66 = lean_unsigned_to_nat(0u); +x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0; +x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(x_3, x_64, x_65, x_66, x_67); +lean_dec_ref(x_65); +lean_dec_ref(x_64); +return x_68; +} +else +{ +return x_62; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_2); +x_7 = lean_nat_dec_lt(x_4, x_6); +if (x_7 == 0) +{ +lean_dec(x_4); +return x_5; +} +else +{ +lean_object* x_8; lean_object* x_9; uint64_t x_10; size_t x_11; size_t x_12; lean_object* x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; +x_8 = lean_array_fget_borrowed(x_2, x_4); +x_9 = lean_array_fget_borrowed(x_3, x_4); +x_10 = l_Lean_Meta_DiscrTree_Key_hash(x_8); +x_11 = lean_uint64_to_usize(x_10); +x_12 = 5; +x_13 = lean_unsigned_to_nat(1u); +x_14 = 1; +x_15 = lean_usize_sub(x_1, x_14); +x_16 = lean_usize_mul(x_12, x_15); +x_17 = lean_usize_shift_right(x_11, x_16); +x_18 = lean_nat_add(x_4, x_13); +lean_dec(x_4); +lean_inc(x_9); +lean_inc(x_8); +x_19 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_5, x_17, x_1, x_8, x_9); +x_4 = x_18; +x_5 = x_19; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; lean_object* x_7; +x_6 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(x_6, x_2, x_3, x_4, x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_1, x_6, x_7, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; +x_4 = l_Lean_Meta_DiscrTree_Key_hash(x_2); +x_5 = lean_uint64_to_usize(x_4); +x_6 = 1; +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_1, x_5, x_6, x_2, x_3); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3() { +_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 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__2)); +x_2 = lean_unsigned_to_nat(23u); +x_3 = lean_unsigned_to_nat(166u); +x_4 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__1)); +x_5 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__0)); +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Array_isEmpty___redArg(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_box(0); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_get_borrowed(x_5, x_2, x_6); +lean_inc_ref(x_1); +x_8 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg(x_1, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_unsigned_to_nat(1u); +x_10 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_9); +lean_inc(x_7); +x_11 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1___redArg(x_1, x_7, x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); +lean_dec_ref(x_8); +x_13 = lean_unsigned_to_nat(1u); +x_14 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2(x_2, x_3, x_13, x_12); +lean_inc(x_7); +x_15 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1___redArg(x_1, x_7, x_14); +return x_15; +} +} +else +{ +lean_object* x_16; lean_object* x_17; +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_16 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3; +x_17 = l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3(x_16); +return x_17; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0(x_1, x_2, x_3); +lean_dec_ref(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_5); +x_6 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0(x_4, x_5, x_2); +lean_dec_ref(x_5); +lean_ctor_set(x_1, 0, x_6); +return x_1; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_7 = lean_ctor_get(x_1, 0); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_inc(x_7); +lean_dec(x_1); +x_9 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_9); +x_10 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0(x_7, x_9, x_2); +lean_dec_ref(x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_8); +return x_11; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; lean_object* x_6; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1(x_1, x_2, x_5, x_4); +lean_dec(x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_4, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_8 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3(x_1, x_2, x_7, x_8, x_5, x_6); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1_spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___redArg(x_2, x_3, x_4, x_6, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7___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) { +_start: +{ +size_t x_8; lean_object* x_9; +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__7(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12(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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12___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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2_spec__6_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_6); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(x_2, x_3, x_4, x_5); +return x_6; +} +} LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1888,26 +3337,6 @@ x_5 = lean_box(x_4); return x_5; } } -static size_t _init_l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__0() { -_start: -{ -size_t x_1; size_t x_2; size_t x_3; -x_1 = 5; -x_2 = 1; -x_3 = lean_usize_shift_left(x_2, x_1); -return x_3; -} -} -static size_t _init_l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1() { -_start: -{ -size_t x_1; size_t x_2; size_t x_3; -x_1 = 1; -x_2 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__0; -x_3 = lean_usize_sub(x_2, x_1); -return x_3; -} -} LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { @@ -1919,7 +3348,7 @@ lean_inc_ref(x_4); lean_dec_ref(x_1); x_5 = lean_box(2); x_6 = 5; -x_7 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; +x_7 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; x_8 = lean_usize_land(x_2, x_7); x_9 = lean_usize_to_nat(x_8); x_10 = lean_array_get(x_5, x_4, x_9); @@ -2082,7 +3511,7 @@ x_8 = lean_box(x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -2188,16 +3617,16 @@ return x_34; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2___redArg(x_1, x_4, x_2, x_3); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2___redArg(x_1, x_4, x_2, x_3); return x_5; } } -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0() { +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0() { _start: { lean_object* x_1; @@ -2205,7 +3634,7 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2214,7 +3643,7 @@ lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_6 = lean_ctor_get(x_1, 0); x_7 = 5; x_8 = 1; -x_9 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; +x_9 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1; x_10 = lean_usize_land(x_2, x_9); x_11 = lean_usize_to_nat(x_10); x_12 = lean_array_get_size(x_6); @@ -2316,7 +3745,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; x_35 = lean_ctor_get(x_15, 0); x_36 = lean_usize_shift_right(x_2, x_7); x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_35, x_36, x_37, x_4, x_5); +x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_35, x_36, x_37, x_4, x_5); lean_ctor_set(x_15, 0, x_38); x_18 = x_15; goto block_21; @@ -2329,7 +3758,7 @@ lean_inc(x_39); lean_dec(x_15); x_40 = lean_usize_shift_right(x_2, x_7); x_41 = lean_usize_add(x_3, x_8); -x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_39, x_40, x_41, x_4, x_5); +x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_39, x_40, x_41, x_4, x_5); x_43 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_43, 0, x_42); x_18 = x_43; @@ -2368,7 +3797,7 @@ x_45 = !lean_is_exclusive(x_1); if (x_45 == 0) { lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; -x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_5); +x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_5); x_54 = 7; x_55 = lean_usize_dec_le(x_54, x_3); if (x_55 == 0) @@ -2397,8 +3826,8 @@ x_49 = lean_ctor_get(x_46, 1); lean_inc_ref(x_49); lean_dec_ref(x_46); x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0; -x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(x_3, x_48, x_49, x_50, x_51); +x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0; +x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(x_3, x_48, x_49, x_50, x_51); lean_dec_ref(x_49); lean_dec_ref(x_48); return x_52; @@ -2420,7 +3849,7 @@ lean_dec(x_1); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1___redArg(x_61, x_4, x_5); +x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1___redArg(x_61, x_4, x_5); x_70 = 7; x_71 = lean_usize_dec_le(x_70, x_3); if (x_71 == 0) @@ -2449,8 +3878,8 @@ x_65 = lean_ctor_get(x_62, 1); lean_inc_ref(x_65); lean_dec_ref(x_62); x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0; -x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(x_3, x_64, x_65, x_66, x_67); +x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0; +x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(x_3, x_64, x_65, x_66, x_67); lean_dec_ref(x_65); lean_dec_ref(x_64); return x_68; @@ -2464,7 +3893,7 @@ return x_62; } } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -2500,7 +3929,7 @@ x_19 = lean_nat_add(x_4, x_14); lean_dec(x_4); lean_inc(x_9); lean_inc(x_8); -x_20 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_5, x_18, x_1, x_8, x_9); +x_20 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_5, x_18, x_1, x_8, x_9); x_4 = x_19; x_5 = x_20; goto _start; @@ -2508,19 +3937,19 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; lean_object* x_7; x_6 = lean_unbox_usize(x_1); lean_dec(x_1); -x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(x_6, x_2, x_3, x_4, x_5); +x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(x_6, x_2, x_3, x_4, x_5); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -2528,11 +3957,11 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_1, x_6, x_7, x_4, x_5); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_10; @@ -2547,12 +3976,12 @@ x_5 = l_Lean_Name_hash___override(x_4); lean_dec(x_4); x_6 = lean_uint64_to_usize(x_5); x_7 = 1; -x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_1, x_6, x_7, x_2, x_3); +x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_1, x_6, x_7, x_2, x_3); return x_8; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -2562,7 +3991,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_1, 1); x_5 = lean_box(0); -x_6 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0___redArg(x_4, x_2, x_5); +x_6 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0___redArg(x_4, x_2, x_5); lean_ctor_set(x_1, 1, x_6); return x_1; } @@ -2575,7 +4004,7 @@ lean_inc(x_8); lean_inc(x_7); lean_dec(x_1); x_9 = lean_box(0); -x_10 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0___redArg(x_8, x_2, x_9); +x_10 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0___redArg(x_8, x_2, x_9); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_7); lean_ctor_set(x_11, 1, x_10); @@ -2583,23 +4012,23 @@ return x_11; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___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_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___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) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -2607,43 +4036,43 @@ x_7 = lean_unbox_usize(x_3); lean_dec(x_3); x_8 = lean_unbox_usize(x_4); lean_dec(x_4); -x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0(x_1, x_2, x_7, x_8, x_5, x_6); +x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0(x_1, x_2, x_7, x_8, x_5, x_6); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2___redArg(x_2, x_3, x_4, x_6, x_7); +x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2___redArg(x_2, x_3, x_4, x_6, x_7); return x_8; } } -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__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_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__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) { _start: { size_t x_8; lean_object* x_9; x_8 = lean_unbox_usize(x_2); lean_dec(x_2); -x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__2(x_1, x_8, x_3, x_4, x_5, x_6, x_7); +x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__2(x_1, x_8, x_3, x_4, x_5, x_6, x_7); lean_dec_ref(x_4); lean_dec_ref(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0_spec__1_spec__2___redArg(x_2, x_3, x_4, x_5); +x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0_spec__1_spec__2___redArg(x_2, x_3, x_4, x_5); return x_6; } } @@ -7061,6 +8490,15 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { @@ -7104,42 +8542,49 @@ return x_17; } else { -lean_object* x_18; lean_object* x_19; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_dec(x_9); lean_dec(x_2); -lean_dec(x_1); x_18 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__1; -x_19 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheorem_spec__0___redArg(x_18, x_3, x_4, x_5, x_6); +x_19 = l_Lean_MessageData_ofName(x_1); +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +x_21 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheorem_spec__0___redArg(x_22, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -return x_19; +return x_23; } } else { -uint8_t x_20; +uint8_t x_24; lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec(x_1); -x_20 = !lean_is_exclusive(x_8); -if (x_20 == 0) +x_24 = !lean_is_exclusive(x_8); +if (x_24 == 0) { return x_8; } else { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_8, 0); -lean_inc(x_21); +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_8, 0); +lean_inc(x_25); lean_dec(x_8); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -return x_22; +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; } } } @@ -7391,1416 +8836,7 @@ x_9 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromStx(x_1, x_2, x_3, x_4, x_ return x_9; } } -static lean_object* _init_l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Meta_DiscrTree_instInhabited(lean_box(0)); -return x_1; -} -} -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0; -x_3 = lean_panic_fn(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_array_get_size(x_1); -x_6 = lean_nat_dec_lt(x_3, x_5); -if (x_6 == 0) -{ -lean_object* x_7; -lean_dec(x_3); -x_7 = lean_box(0); -return x_7; -} -else -{ -lean_object* x_8; uint8_t x_9; -x_8 = lean_array_fget_borrowed(x_1, x_3); -x_9 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_add(x_3, x_10); -lean_dec(x_3); -x_3 = x_11; -goto _start; -} -else -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_array_fget_borrowed(x_2, x_3); -lean_dec(x_3); -lean_inc(x_13); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_13); -return x_14; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg(x_1, x_2, x_3, x_4); -lean_dec(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_box(2); -x_7 = 5; -x_8 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; -x_9 = lean_usize_land(x_2, x_8); -x_10 = lean_usize_to_nat(x_9); -x_11 = lean_array_get(x_6, x_5, x_10); -lean_dec(x_10); -lean_dec_ref(x_5); -switch (lean_obj_tag(x_11)) { -case 0: -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec_ref(x_11); -x_14 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_12); -lean_dec(x_12); -if (x_14 == 0) -{ -lean_object* x_15; -lean_dec(x_13); -lean_free_object(x_1); -x_15 = lean_box(0); -return x_15; -} -else -{ -lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 0, x_13); -return x_1; -} -} -case 1: -{ -lean_object* x_16; size_t x_17; -lean_free_object(x_1); -x_16 = lean_ctor_get(x_11, 0); -lean_inc(x_16); -lean_dec_ref(x_11); -x_17 = lean_usize_shift_right(x_2, x_7); -x_1 = x_16; -x_2 = x_17; -goto _start; -} -default: -{ -lean_object* x_19; -lean_free_object(x_1); -x_19 = lean_box(0); -return x_19; -} -} -} -else -{ -lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; -x_20 = lean_ctor_get(x_1, 0); -lean_inc(x_20); -lean_dec(x_1); -x_21 = lean_box(2); -x_22 = 5; -x_23 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; -x_24 = lean_usize_land(x_2, x_23); -x_25 = lean_usize_to_nat(x_24); -x_26 = lean_array_get(x_21, x_20, x_25); -lean_dec(x_25); -lean_dec_ref(x_20); -switch (lean_obj_tag(x_26)) { -case 0: -{ -lean_object* x_27; lean_object* x_28; uint8_t x_29; -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_ref(x_26); -x_29 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_27); -lean_dec(x_27); -if (x_29 == 0) -{ -lean_object* x_30; -lean_dec(x_28); -x_30 = lean_box(0); -return x_30; -} -else -{ -lean_object* x_31; -x_31 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_31, 0, x_28); -return x_31; -} -} -case 1: -{ -lean_object* x_32; size_t x_33; -x_32 = lean_ctor_get(x_26, 0); -lean_inc(x_32); -lean_dec_ref(x_26); -x_33 = lean_usize_shift_right(x_2, x_22); -x_1 = x_32; -x_2 = x_33; -goto _start; -} -default: -{ -lean_object* x_35; -x_35 = lean_box(0); -return x_35; -} -} -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_36); -x_37 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_37); -lean_dec_ref(x_1); -x_38 = lean_unsigned_to_nat(0u); -x_39 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg(x_36, x_37, x_38, x_3); -lean_dec_ref(x_37); -lean_dec_ref(x_36); -return x_39; -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; lean_object* x_5; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_3); -lean_dec(x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint64_t x_3; size_t x_4; lean_object* x_5; -x_3 = l_Lean_Meta_DiscrTree_Key_hash(x_2); -x_4 = lean_uint64_to_usize(x_3); -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg(x_1, x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = lean_ctor_get(x_1, 0); -x_4 = lean_ctor_get(x_2, 0); -x_5 = l_Lean_Meta_DiscrTree_Key_lt(x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_1, x_2); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_6 = lean_unsigned_to_nat(1u); -x_7 = lean_nat_add(x_1, x_6); -x_8 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_7); -lean_dec(x_7); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_4); -lean_ctor_set(x_9, 1, x_8); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = lean_array_get_size(x_1); -x_5 = lean_nat_dec_lt(x_3, x_4); -if (x_5 == 0) -{ -lean_object* x_6; -lean_dec(x_3); -x_6 = lean_array_push(x_1, x_2); -return x_6; -} -else -{ -lean_object* x_7; uint8_t x_8; -x_7 = lean_array_fget_borrowed(x_1, x_3); -lean_inc(x_7); -lean_inc_ref(x_2); -x_8 = l_Lean_Elab_Tactic_Do_SpecAttr_instBEqSpecTheorem_beq(x_2, x_7); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_add(x_3, x_9); -lean_dec(x_3); -x_3 = x_10; -goto _start; -} -else -{ -lean_object* x_12; -x_12 = lean_array_fset(x_1, x_3, x_2); -lean_dec(x_3); -return x_12; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; -x_3 = lean_unsigned_to_nat(0u); -x_4 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal_loop___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5_spec__10(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0; -x_2 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2, 0, x_1); -lean_ctor_set(x_2, 1, x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg(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) { -_start: -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_9 = lean_nat_add(x_7, x_8); -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_shiftr(x_9, x_10); -lean_dec(x_9); -x_12 = lean_array_fget(x_5, x_11); -x_13 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_12, x_6); -if (x_13 == 0) -{ -uint8_t x_14; -lean_dec(x_8); -x_14 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_6, x_12); -if (x_14 == 0) -{ -lean_object* x_15; uint8_t x_16; -lean_dec(x_7); -x_15 = lean_array_get_size(x_5); -x_16 = lean_nat_dec_lt(x_11, x_15); -if (x_16 == 0) -{ -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_5; -} -else -{ -uint8_t x_17; -x_17 = !lean_is_exclusive(x_12); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_18 = lean_ctor_get(x_12, 1); -x_19 = lean_ctor_get(x_12, 0); -lean_dec(x_19); -x_20 = lean_box(0); -x_21 = lean_array_fset(x_5, x_11, x_20); -x_22 = lean_nat_add(x_1, x_10); -x_23 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_2, x_3, x_22, x_18); -lean_dec(x_22); -lean_ctor_set(x_12, 1, x_23); -lean_ctor_set(x_12, 0, x_4); -x_24 = lean_array_fset(x_21, x_11, x_12); -lean_dec(x_11); -return x_24; -} -else -{ -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; -x_25 = lean_ctor_get(x_12, 1); -lean_inc(x_25); -lean_dec(x_12); -x_26 = lean_box(0); -x_27 = lean_array_fset(x_5, x_11, x_26); -x_28 = lean_nat_add(x_1, x_10); -x_29 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_2, x_3, x_28, x_25); -lean_dec(x_28); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_4); -lean_ctor_set(x_30, 1, x_29); -x_31 = lean_array_fset(x_27, x_11, x_30); -lean_dec(x_11); -return x_31; -} -} -} -else -{ -lean_dec(x_12); -x_8 = x_11; -goto _start; -} -} -else -{ -uint8_t x_33; -lean_dec(x_12); -x_33 = lean_nat_dec_eq(x_11, x_7); -if (x_33 == 0) -{ -lean_dec(x_7); -x_7 = x_11; -goto _start; -} -else -{ -lean_object* x_35; 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_dec(x_11); -lean_dec(x_8); -x_35 = lean_nat_add(x_1, x_10); -x_36 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_35); -lean_dec(x_35); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_4); -lean_ctor_set(x_37, 1, x_36); -x_38 = lean_nat_add(x_7, x_10); -lean_dec(x_7); -x_39 = lean_array_get_size(x_5); -x_40 = lean_array_push(x_5, x_37); -x_41 = l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_box(0), x_38, x_40, x_39); -lean_dec(x_38); -return x_41; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_array_get_size(x_5); -x_8 = lean_unsigned_to_nat(0u); -x_9 = lean_nat_dec_eq(x_7, x_8); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_array_fget_borrowed(x_5, x_8); -x_11 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_6, x_10); -if (x_11 == 0) -{ -uint8_t x_12; -x_12 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_10, x_6); -if (x_12 == 0) -{ -uint8_t x_13; -x_13 = lean_nat_dec_lt(x_8, x_7); -if (x_13 == 0) -{ -lean_dec(x_4); -lean_dec_ref(x_3); -return x_5; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -lean_inc(x_10); -x_14 = lean_box(0); -x_15 = lean_array_fset(x_5, x_8, x_14); -x_16 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_10); -x_17 = lean_array_fset(x_15, x_8, x_16); -return x_17; -} -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = lean_unsigned_to_nat(1u); -x_19 = lean_nat_sub(x_7, x_18); -x_20 = lean_array_fget_borrowed(x_5, x_19); -x_21 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_20, x_6); -if (x_21 == 0) -{ -uint8_t x_22; -x_22 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__1(x_6, x_20); -if (x_22 == 0) -{ -uint8_t x_23; -x_23 = lean_nat_dec_lt(x_19, x_7); -if (x_23 == 0) -{ -lean_dec(x_19); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_5; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_inc(x_20); -x_24 = lean_box(0); -x_25 = lean_array_fset(x_5, x_19, x_24); -x_26 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_20); -x_27 = lean_array_fset(x_25, x_19, x_26); -lean_dec(x_19); -return x_27; -} -} -else -{ -lean_object* x_28; -x_28 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_8, x_19); -return x_28; -} -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_dec(x_19); -x_29 = lean_box(0); -x_30 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_29); -x_31 = lean_array_push(x_5, x_30); -return x_31; -} -} -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_32 = lean_box(0); -x_33 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_32); -x_34 = lean_array_push(x_5, x_33); -x_35 = l___private_Init_Data_Array_Basic_0__Array_insertIdx_loop(lean_box(0), x_8, x_34, x_7); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_box(0); -x_37 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__0(x_1, x_2, x_3, x_4, x_36); -x_38 = lean_array_push(x_5, x_37); -return x_38; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_4, 1); -x_8 = lean_array_get_size(x_1); -x_9 = lean_nat_dec_lt(x_3, x_8); -if (x_9 == 0) -{ -lean_object* x_10; -x_10 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5(x_6, x_2); -lean_ctor_set(x_4, 0, x_10); -return x_4; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_array_fget_borrowed(x_1, x_3); -x_12 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1; -lean_inc(x_11); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set(x_13, 1, x_12); -lean_inc(x_11); -x_14 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6(x_3, x_1, x_2, x_11, x_7, x_13); -lean_dec_ref(x_13); -lean_ctor_set(x_4, 1, x_14); -return x_4; -} -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_4, 0); -x_16 = lean_ctor_get(x_4, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_4); -x_17 = lean_array_get_size(x_1); -x_18 = lean_nat_dec_lt(x_3, x_17); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertVal___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__5(x_15, x_2); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_16); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_21 = lean_array_fget_borrowed(x_1, x_3); -x_22 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1; -lean_inc(x_21); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -lean_inc(x_21); -x_24 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6(x_3, x_1, x_2, x_21, x_16, x_23); -lean_dec_ref(x_23); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_15); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_5); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = lean_ctor_get(x_5, 1); -x_8 = lean_ctor_get(x_5, 0); -lean_dec(x_8); -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_add(x_1, x_9); -x_11 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_2, x_3, x_10, x_7); -lean_dec(x_10); -lean_ctor_set(x_5, 1, x_11); -lean_ctor_set(x_5, 0, x_4); -return x_5; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_ctor_get(x_5, 1); -lean_inc(x_12); -lean_dec(x_5); -x_13 = lean_unsigned_to_nat(1u); -x_14 = lean_nat_add(x_1, x_13); -x_15 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_2, x_3, x_14, x_12); -lean_dec(x_14); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_4); -lean_ctor_set(x_16, 1, x_15); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___lam__2(x_1, x_2, x_3, x_4, x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_1, x_2, x_3, x_4); -lean_dec(x_3); -lean_dec_ref(x_1); -return x_5; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg___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) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6___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) { -_start: -{ -lean_object* x_7; -x_7 = l_Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_1); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_array_get_size(x_6); -x_9 = lean_nat_dec_lt(x_2, x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -lean_dec(x_2); -x_10 = lean_array_push(x_6, x_3); -x_11 = lean_array_push(x_7, x_4); -lean_ctor_set(x_1, 1, x_11); -lean_ctor_set(x_1, 0, x_10); -return x_1; -} -else -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_array_fget_borrowed(x_6, x_2); -x_13 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_unsigned_to_nat(1u); -x_15 = lean_nat_add(x_2, x_14); -lean_dec(x_2); -x_2 = x_15; -goto _start; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_array_fset(x_6, x_2, x_3); -x_18 = lean_array_fset(x_7, x_2, x_4); -lean_dec(x_2); -lean_ctor_set(x_1, 1, x_18); -lean_ctor_set(x_1, 0, x_17); -return x_1; -} -} -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = lean_ctor_get(x_1, 0); -x_20 = lean_ctor_get(x_1, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_1); -x_21 = lean_array_get_size(x_19); -x_22 = lean_nat_dec_lt(x_2, x_21); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_2); -x_23 = lean_array_push(x_19, x_3); -x_24 = lean_array_push(x_20, x_4); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -else -{ -lean_object* x_26; uint8_t x_27; -x_26 = lean_array_fget_borrowed(x_19, x_2); -x_27 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_3, x_26); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_19); -lean_ctor_set(x_28, 1, x_20); -x_29 = lean_unsigned_to_nat(1u); -x_30 = lean_nat_add(x_2, x_29); -lean_dec(x_2); -x_1 = x_28; -x_2 = x_30; -goto _start; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_array_fset(x_19, x_2, x_3); -x_33 = lean_array_fset(x_20, x_2, x_4); -lean_dec(x_2); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(x_1, x_4, x_2, x_3); -return x_5; -} -} -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_6; size_t x_7; size_t x_8; size_t x_9; size_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_6 = lean_ctor_get(x_1, 0); -x_7 = 5; -x_8 = 1; -x_9 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1; -x_10 = lean_usize_land(x_2, x_9); -x_11 = lean_usize_to_nat(x_10); -x_12 = lean_array_get_size(x_6); -x_13 = lean_nat_dec_lt(x_11, x_12); -if (x_13 == 0) -{ -lean_dec(x_11); -lean_dec(x_5); -lean_dec(x_4); -return x_1; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -lean_inc_ref(x_6); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - x_14 = x_1; -} else { - lean_dec_ref(x_1); - x_14 = lean_box(0); -} -x_15 = lean_array_fget(x_6, x_11); -x_16 = lean_box(0); -x_17 = lean_array_fset(x_6, x_11, x_16); -switch (lean_obj_tag(x_15)) { -case 0: -{ -uint8_t x_22; -x_22 = !lean_is_exclusive(x_15); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_23 = lean_ctor_get(x_15, 0); -x_24 = lean_ctor_get(x_15, 1); -x_25 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_23); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; -lean_free_object(x_15); -x_26 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_23, x_24, x_4, x_5); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -x_18 = x_27; -goto block_21; -} -else -{ -lean_dec(x_24); -lean_dec(x_23); -lean_ctor_set(x_15, 1, x_5); -lean_ctor_set(x_15, 0, x_4); -x_18 = x_15; -goto block_21; -} -} -else -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_ctor_get(x_15, 0); -x_29 = lean_ctor_get(x_15, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_15); -x_30 = l_Lean_Meta_DiscrTree_instBEqKey_beq(x_4, x_28); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; -x_31 = l_Lean_PersistentHashMap_mkCollisionNode___redArg(x_28, x_29, x_4, x_5); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -x_18 = x_32; -goto block_21; -} -else -{ -lean_object* x_33; -lean_dec(x_29); -lean_dec(x_28); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_4); -lean_ctor_set(x_33, 1, x_5); -x_18 = x_33; -goto block_21; -} -} -} -case 1: -{ -uint8_t x_34; -x_34 = !lean_is_exclusive(x_15); -if (x_34 == 0) -{ -lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; -x_35 = lean_ctor_get(x_15, 0); -x_36 = lean_usize_shift_right(x_2, x_7); -x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_35, x_36, x_37, x_4, x_5); -lean_ctor_set(x_15, 0, x_38); -x_18 = x_15; -goto block_21; -} -else -{ -lean_object* x_39; size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; -x_39 = lean_ctor_get(x_15, 0); -lean_inc(x_39); -lean_dec(x_15); -x_40 = lean_usize_shift_right(x_2, x_7); -x_41 = lean_usize_add(x_3, x_8); -x_42 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_39, x_40, x_41, x_4, x_5); -x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_42); -x_18 = x_43; -goto block_21; -} -} -default: -{ -lean_object* x_44; -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_4); -lean_ctor_set(x_44, 1, x_5); -x_18 = x_44; -goto block_21; -} -} -block_21: -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_array_fset(x_17, x_11, x_18); -lean_dec(x_11); -if (lean_is_scalar(x_14)) { - x_20 = lean_alloc_ctor(0, 1, 0); -} else { - x_20 = x_14; -} -lean_ctor_set(x_20, 0, x_19); -return x_20; -} -} -} -else -{ -uint8_t x_45; -x_45 = !lean_is_exclusive(x_1); -if (x_45 == 0) -{ -lean_object* x_46; uint8_t x_47; size_t x_54; uint8_t x_55; -x_46 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6___redArg(x_1, x_4, x_5); -x_54 = 7; -x_55 = lean_usize_dec_le(x_54, x_3); -if (x_55 == 0) -{ -lean_object* x_56; lean_object* x_57; uint8_t x_58; -x_56 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_46); -x_57 = lean_unsigned_to_nat(4u); -x_58 = lean_nat_dec_lt(x_56, x_57); -lean_dec(x_56); -x_47 = x_58; -goto block_53; -} -else -{ -x_47 = x_55; -goto block_53; -} -block_53: -{ -if (x_47 == 0) -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_48 = lean_ctor_get(x_46, 0); -lean_inc_ref(x_48); -x_49 = lean_ctor_get(x_46, 1); -lean_inc_ref(x_49); -lean_dec_ref(x_46); -x_50 = lean_unsigned_to_nat(0u); -x_51 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0; -x_52 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(x_3, x_48, x_49, x_50, x_51); -lean_dec_ref(x_49); -lean_dec_ref(x_48); -return x_52; -} -else -{ -return x_46; -} -} -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; size_t x_70; uint8_t x_71; -x_59 = lean_ctor_get(x_1, 0); -x_60 = lean_ctor_get(x_1, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_1); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6___redArg(x_61, x_4, x_5); -x_70 = 7; -x_71 = lean_usize_dec_le(x_70, x_3); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_72 = l_Lean_PersistentHashMap_getCollisionNodeSize___redArg(x_62); -x_73 = lean_unsigned_to_nat(4u); -x_74 = lean_nat_dec_lt(x_72, x_73); -lean_dec(x_72); -x_63 = x_74; -goto block_69; -} -else -{ -x_63 = x_71; -goto block_69; -} -block_69: -{ -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_64 = lean_ctor_get(x_62, 0); -lean_inc_ref(x_64); -x_65 = lean_ctor_get(x_62, 1); -lean_inc_ref(x_65); -lean_dec_ref(x_62); -x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0; -x_68 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(x_3, x_64, x_65, x_66, x_67); -lean_dec_ref(x_65); -lean_dec_ref(x_64); -return x_68; -} -else -{ -return x_62; -} -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_get_size(x_2); -x_7 = lean_nat_dec_lt(x_4, x_6); -if (x_7 == 0) -{ -lean_dec(x_4); -return x_5; -} -else -{ -lean_object* x_8; lean_object* x_9; uint64_t x_10; size_t x_11; size_t x_12; lean_object* x_13; size_t x_14; size_t x_15; size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; -x_8 = lean_array_fget_borrowed(x_2, x_4); -x_9 = lean_array_fget_borrowed(x_3, x_4); -x_10 = l_Lean_Meta_DiscrTree_Key_hash(x_8); -x_11 = lean_uint64_to_usize(x_10); -x_12 = 5; -x_13 = lean_unsigned_to_nat(1u); -x_14 = 1; -x_15 = lean_usize_sub(x_1, x_14); -x_16 = lean_usize_mul(x_12, x_15); -x_17 = lean_usize_shift_right(x_11, x_16); -x_18 = lean_nat_add(x_4, x_13); -lean_dec(x_4); -lean_inc(x_9); -lean_inc(x_8); -x_19 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_5, x_17, x_1, x_8, x_9); -x_4 = x_18; -x_5 = x_19; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -size_t x_6; lean_object* x_7; -x_6 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_7 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(x_6, x_2, x_3, x_4, x_5); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -size_t x_6; size_t x_7; lean_object* x_8; -x_6 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_7 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_1, x_6, x_7, x_4, x_5); -return x_8; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint64_t x_4; size_t x_5; size_t x_6; lean_object* x_7; -x_4 = l_Lean_Meta_DiscrTree_Key_hash(x_2); -x_5 = lean_uint64_to_usize(x_4); -x_6 = 1; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_1, x_5, x_6, x_2, x_3); -return x_7; -} -} -static lean_object* _init_l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3() { -_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 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__2)); -x_2 = lean_unsigned_to_nat(23u); -x_3 = lean_unsigned_to_nat(166u); -x_4 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__1)); -x_5 = ((lean_object*)(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__0)); -x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = l_Array_isEmpty___redArg(x_2); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_5 = lean_box(0); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_get_borrowed(x_5, x_2, x_6); -lean_inc_ref(x_1); -x_8 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg(x_1, x_7); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_unsigned_to_nat(1u); -x_10 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_createNodes(lean_box(0), x_2, x_3, x_9); -lean_inc(x_7); -x_11 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1___redArg(x_1, x_7, x_10); -return x_11; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -lean_inc(x_12); -lean_dec_ref(x_8); -x_13 = lean_unsigned_to_nat(1u); -x_14 = l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2(x_2, x_3, x_13, x_12); -lean_inc(x_7); -x_15 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1___redArg(x_1, x_7, x_14); -return x_15; -} -} -else -{ -lean_object* x_16; lean_object* x_17; -lean_dec_ref(x_3); -lean_dec_ref(x_1); -x_16 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3; -x_17 = l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3(x_16); -return x_17; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0(x_1, x_2, x_3); -lean_dec_ref(x_2); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_ctor_get(x_1, 0); -x_5 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_5); -x_6 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0(x_4, x_5, x_2); -lean_dec_ref(x_5); -lean_ctor_set(x_1, 0, x_6); -return x_1; -} -else -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = lean_ctor_get(x_1, 0); -x_8 = lean_ctor_get(x_1, 1); -lean_inc(x_8); -lean_inc(x_7); -lean_dec(x_1); -x_9 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_9); -x_10 = l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0(x_7, x_9, x_2); -lean_dec_ref(x_9); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_8); -return x_11; -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___redArg(x_2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0(x_1, x_2, x_3); -lean_dec(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; lean_object* x_6; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1(x_1, x_2, x_5, x_4); -lean_dec(x_4); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_4, x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___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) { -_start: -{ -size_t x_7; size_t x_8; lean_object* x_9; -x_7 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_8 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_9 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3(x_1, x_2, x_7, x_8, x_5, x_6); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___redArg(x_2, x_3, x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3___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) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_PersistentHashMap_findAtAux___at___00Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__0_spec__1_spec__3(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_6); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6___redArg(x_2, x_3, x_4); -return x_5; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -lean_object* x_8; -x_8 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___redArg(x_2, x_3, x_4, x_6, x_7); -return x_8; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7___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) { -_start: -{ -size_t x_8; lean_object* x_9; -x_8 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_9 = l___private_Lean_Data_PersistentHashMap_0__Lean_PersistentHashMap_insertAux_traverse___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__7(x_1, x_8, x_3, x_4, x_5, x_6, x_7); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12(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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12___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_Init_Data_Array_BinSearch_0__Array_binInsertAux___at___00Array_binInsertM___at___00__private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2_spec__6_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___00Lean_PersistentHashMap_insertAtCollisionNode___at___00Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3_spec__6_spec__8___redArg(x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0() { +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0() { _start: { lean_object* x_1; @@ -8808,32 +8844,32 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1() { +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0; +x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2() { +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1; +x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3() { +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1; +x_1 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1; x_2 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); @@ -8844,7 +8880,7 @@ lean_ctor_set(x_2, 5, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -8860,7 +8896,7 @@ x_11 = lean_ctor_get(x_9, 0); x_12 = lean_ctor_get(x_9, 5); lean_dec(x_12); x_13 = l_Lean_ScopedEnvExtension_addCore___redArg(x_11, x_1, x_2, x_3, x_8); -x_14 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2; +x_14 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2; lean_ctor_set(x_9, 5, x_14); lean_ctor_set(x_9, 0, x_13); x_15 = lean_st_ref_set(x_6, x_9); @@ -8871,7 +8907,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_18 = lean_ctor_get(x_16, 1); lean_dec(x_18); -x_19 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3; +x_19 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3; lean_ctor_set(x_16, 1, x_19); x_20 = lean_st_ref_set(x_4, x_16); x_21 = lean_box(0); @@ -8891,7 +8927,7 @@ lean_inc(x_25); lean_inc(x_24); lean_inc(x_23); lean_dec(x_16); -x_27 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3; +x_27 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3; x_28 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_28, 0, x_23); lean_ctor_set(x_28, 1, x_27); @@ -8926,7 +8962,7 @@ lean_inc(x_33); lean_inc(x_32); lean_dec(x_9); x_40 = l_Lean_ScopedEnvExtension_addCore___redArg(x_32, x_1, x_2, x_3, x_8); -x_41 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2; +x_41 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2; x_42 = lean_alloc_ctor(0, 9, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_33); @@ -8958,7 +8994,7 @@ if (lean_is_exclusive(x_44)) { lean_dec_ref(x_44); x_49 = lean_box(0); } -x_50 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3; +x_50 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3; if (lean_is_scalar(x_49)) { x_51 = lean_alloc_ctor(0, 5, 0); } else { @@ -8977,38 +9013,38 @@ return x_54; } } } -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___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_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___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) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_3); -x_9 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg(x_1, x_2, x_8, x_4, x_5, x_6); +x_9 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(x_1, x_2, x_8, x_4, x_5, x_6); lean_dec(x_6); lean_dec(x_4); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_12; -x_12 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg(x_4, x_5, x_6, x_8, x_9, x_10); +x_12 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(x_4, x_5, x_6, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___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_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_6); -x_13 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10); +x_13 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10); lean_dec(x_10); lean_dec(x_8); lean_dec_ref(x_7); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_10; @@ -9022,7 +9058,7 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); lean_dec_ref(x_10); -x_12 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg(x_1, x_11, x_4, x_6, x_7, x_8); +x_12 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(x_1, x_11, x_4, x_6, x_7, x_8); lean_dec(x_8); lean_dec(x_6); return x_12; @@ -9052,15 +9088,68 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst___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) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_4); -x_11 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); +x_11 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); return x_11; } } +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromLocal(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) { +_start: +{ +lean_object* x_9; +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +x_9 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; uint8_t x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = 1; +x_12 = l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg(x_1, x_10, x_11, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec(x_5); +return x_12; +} +else +{ +uint8_t x_13; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +x_13 = !lean_is_exclusive(x_9); +if (x_13 == 0) +{ +return x_9; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_9, 0); +lean_inc(x_14); +lean_dec(x_9); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromLocal___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromLocal(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___lam__0(uint8_t x_1, lean_object* x_2) { _start: { @@ -9158,7 +9247,7 @@ x_2 = l_Lean_Elab_Tactic_Do_SpecAttr_initFn_00___x40_Lean_Elab_Tactic_Do_Attr_16 return x_2; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; uint8_t x_5; @@ -9177,7 +9266,7 @@ else { lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; x_8 = lean_ctor_get(x_2, 13); -x_9 = ((lean_object*)(l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___closed__1)); +x_9 = ((lean_object*)(l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___closed__1)); x_10 = l_Lean_Name_append(x_9, x_1); x_11 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(x_8, x_4, x_10); lean_dec(x_10); @@ -9188,28 +9277,28 @@ return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg(x_1, x_2); +x_4 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg(x_1, x_2); lean_dec_ref(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg(x_1, x_4); +x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg(x_1, x_4); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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) { _start: { lean_object* x_7; -x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -9217,7 +9306,37 @@ lean_dec_ref(x_2); return x_7; } } -static double _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1; +x_8 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheorem_spec__0___redArg(x_7, x_2, x_3, x_4, x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +static double _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0() { _start: { lean_object* x_1; double x_2; @@ -9226,7 +9345,7 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2() { +static lean_object* _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -9235,7 +9354,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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) { _start: { lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -9257,16 +9376,16 @@ if (x_15 == 0) { lean_object* x_16; double x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; x_16 = lean_ctor_get(x_14, 0); -x_17 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0; +x_17 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0; x_18 = 0; -x_19 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1)); +x_19 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1)); x_20 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_20, 0, x_1); lean_ctor_set(x_20, 1, x_19); lean_ctor_set_float(x_20, sizeof(void*)*2, x_17); lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_17); lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_18); -x_21 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2; +x_21 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2; x_22 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_11); @@ -9289,16 +9408,16 @@ x_27 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); x_28 = lean_ctor_get(x_14, 0); lean_inc(x_28); lean_dec(x_14); -x_29 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0; +x_29 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0; x_30 = 0; -x_31 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1)); +x_31 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1)); x_32 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_32, 0, x_1); lean_ctor_set(x_32, 1, x_31); lean_ctor_set_float(x_32, sizeof(void*)*2, x_29); lean_ctor_set_float(x_32, sizeof(void*)*2 + 8, x_29); lean_ctor_set_uint8(x_32, sizeof(void*)*2 + 16, x_30); -x_33 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2; +x_33 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2; x_34 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_11); @@ -9350,16 +9469,16 @@ if (lean_is_exclusive(x_40)) { lean_dec_ref(x_40); x_51 = lean_box(0); } -x_52 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0; +x_52 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0; x_53 = 0; -x_54 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1)); +x_54 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1)); x_55 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_55, 0, x_1); lean_ctor_set(x_55, 1, x_54); lean_ctor_set_float(x_55, sizeof(void*)*2, x_52); lean_ctor_set_float(x_55, sizeof(void*)*2 + 8, x_52); lean_ctor_set_uint8(x_55, sizeof(void*)*2 + 16, x_53); -x_56 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2; +x_56 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2; x_57 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_57, 0, x_55); lean_ctor_set(x_57, 1, x_11); @@ -9442,16 +9561,16 @@ if (lean_is_exclusive(x_66)) { lean_dec_ref(x_66); x_78 = lean_box(0); } -x_79 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0; +x_79 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0; x_80 = 0; -x_81 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__1)); +x_81 = ((lean_object*)(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__1)); x_82 = lean_alloc_ctor(0, 2, 17); lean_ctor_set(x_82, 0, x_1); lean_ctor_set(x_82, 1, x_81); lean_ctor_set_float(x_82, sizeof(void*)*2, x_79); lean_ctor_set_float(x_82, sizeof(void*)*2 + 8, x_79); lean_ctor_set_uint8(x_82, sizeof(void*)*2 + 16, x_80); -x_83 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2; +x_83 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2; x_84 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_84, 0, x_82); lean_ctor_set(x_84, 1, x_64); @@ -9490,11 +9609,11 @@ return x_91; } } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -9502,385 +9621,7 @@ lean_dec_ref(x_3); return x_8; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__0)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__2)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(lean_object* x_1, lean_object* x_2, uint8_t 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) { -_start: -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_36; -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_2); -x_36 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem(x_1, x_2, x_8, x_3, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_36) == 0) -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -return x_36; -} -else -{ -lean_object* x_37; uint8_t x_38; uint8_t x_80; -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -x_80 = l_Lean_Exception_isInterrupt(x_37); -if (x_80 == 0) -{ -uint8_t x_81; -x_81 = l_Lean_Exception_isRuntime(x_37); -x_38 = x_81; -goto block_79; -} -else -{ -lean_dec(x_37); -x_38 = x_80; -goto block_79; -} -block_79: -{ -if (x_38 == 0) -{ -uint8_t x_39; -x_39 = !lean_is_exclusive(x_36); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_36, 0); -lean_dec(x_40); -x_41 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_3373485604____hygCtx___hyg_2_)); -x_42 = l_Lean_getBuiltinAttributeImpl(x_41); -if (lean_obj_tag(x_42) == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -lean_free_object(x_36); -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -lean_dec_ref(x_42); -x_44 = lean_ctor_get(x_43, 1); -lean_inc_ref(x_44); -lean_dec(x_43); -x_45 = lean_box(x_3); -lean_inc(x_12); -lean_inc_ref(x_11); -x_46 = lean_apply_6(x_44, x_2, x_7, x_45, x_11, x_12, lean_box(0)); -if (lean_obj_tag(x_46) == 0) -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_46; -} -else -{ -lean_object* x_47; uint8_t x_48; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = l_Lean_Exception_isInterrupt(x_47); -if (x_48 == 0) -{ -uint8_t x_49; -lean_inc(x_47); -x_49 = l_Lean_Exception_isRuntime(x_47); -x_22 = x_46; -x_23 = lean_box(0); -x_24 = x_47; -x_25 = x_49; -goto block_35; -} -else -{ -x_22 = x_46; -x_23 = lean_box(0); -x_24 = x_47; -x_25 = x_48; -goto block_35; -} -} -} -else -{ -uint8_t x_50; -lean_dec(x_12); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -x_50 = !lean_is_exclusive(x_42); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_51 = lean_ctor_get(x_42, 0); -x_52 = lean_ctor_get(x_11, 5); -lean_inc(x_52); -lean_dec_ref(x_11); -x_53 = lean_io_error_to_string(x_51); -lean_ctor_set_tag(x_36, 3); -lean_ctor_set(x_36, 0, x_53); -x_54 = l_Lean_MessageData_ofFormat(x_36); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_52); -lean_ctor_set(x_55, 1, x_54); -lean_ctor_set(x_42, 0, x_55); -return x_42; -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_56 = lean_ctor_get(x_42, 0); -lean_inc(x_56); -lean_dec(x_42); -x_57 = lean_ctor_get(x_11, 5); -lean_inc(x_57); -lean_dec_ref(x_11); -x_58 = lean_io_error_to_string(x_56); -lean_ctor_set_tag(x_36, 3); -lean_ctor_set(x_36, 0, x_58); -x_59 = l_Lean_MessageData_ofFormat(x_36); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_61, 0, x_60); -return x_61; -} -} -} -else -{ -lean_object* x_62; lean_object* x_63; -lean_dec(x_36); -x_62 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_3373485604____hygCtx___hyg_2_)); -x_63 = l_Lean_getBuiltinAttributeImpl(x_62); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -lean_dec_ref(x_63); -x_65 = lean_ctor_get(x_64, 1); -lean_inc_ref(x_65); -lean_dec(x_64); -x_66 = lean_box(x_3); -lean_inc(x_12); -lean_inc_ref(x_11); -x_67 = lean_apply_6(x_65, x_2, x_7, x_66, x_11, x_12, lean_box(0)); -if (lean_obj_tag(x_67) == 0) -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_67; -} -else -{ -lean_object* x_68; uint8_t x_69; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = l_Lean_Exception_isInterrupt(x_68); -if (x_69 == 0) -{ -uint8_t x_70; -lean_inc(x_68); -x_70 = l_Lean_Exception_isRuntime(x_68); -x_22 = x_67; -x_23 = lean_box(0); -x_24 = x_68; -x_25 = x_70; -goto block_35; -} -else -{ -x_22 = x_67; -x_23 = lean_box(0); -x_24 = x_68; -x_25 = x_69; -goto block_35; -} -} -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_dec(x_12); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -x_71 = lean_ctor_get(x_63, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - x_72 = x_63; -} else { - lean_dec_ref(x_63); - x_72 = lean_box(0); -} -x_73 = lean_ctor_get(x_11, 5); -lean_inc(x_73); -lean_dec_ref(x_11); -x_74 = lean_io_error_to_string(x_71); -x_75 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_75, 0, x_74); -x_76 = l_Lean_MessageData_ofFormat(x_75); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_73); -lean_ctor_set(x_77, 1, x_76); -if (lean_is_scalar(x_72)) { - x_78 = lean_alloc_ctor(1, 1, 0); -} else { - x_78 = x_72; -} -lean_ctor_set(x_78, 0, x_77); -return x_78; -} -} -} -else -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_2); -return x_36; -} -} -} -block_21: -{ -lean_object* x_19; lean_object* x_20; -x_19 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1; -x_20 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheorem_spec__0___redArg(x_19, x_14, x_15, x_16, x_17); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -return x_20; -} -block_35: -{ -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -lean_dec_ref(x_22); -x_26 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__3_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_27 = l_Lean_Name_mkStr4(x_4, x_5, x_6, x_26); -lean_inc(x_27); -x_28 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___redArg(x_27, x_11); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -lean_dec_ref(x_28); -x_30 = lean_unbox(x_29); -lean_dec(x_29); -if (x_30 == 0) -{ -lean_dec(x_27); -lean_dec_ref(x_24); -x_14 = x_9; -x_15 = x_10; -x_16 = x_11; -x_17 = x_12; -x_18 = lean_box(0); -goto block_21; -} -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_31 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3; -x_32 = l_Lean_Exception_toMessageData(x_24); -x_33 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1(x_27, x_33, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_34) == 0) -{ -lean_dec_ref(x_34); -x_14 = x_9; -x_15 = x_10; -x_16 = x_11; -x_17 = x_12; -x_18 = lean_box(0); -goto block_21; -} -else -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -return x_34; -} -} -} -else -{ -lean_dec_ref(x_24); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_22; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___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: -{ -uint8_t x_14; lean_object* x_15; -x_14 = lean_unbox(x_3); -x_15 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(x_1, x_2, x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; @@ -9920,12 +9661,12 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__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_EXPORT lean_object* l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0___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) { _start: { uint8_t x_8; lean_object* x_9; x_8 = lean_unbox(x_2); -x_9 = l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(x_1, x_8, x_3, x_4, x_5, x_6); +x_9 = l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(x_1, x_8, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec(x_4); lean_dec_ref(x_3); @@ -10021,6 +9762,32 @@ lean_ctor_set(x_2, 4, x_1); return x_2; } } +static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__0_00___x40_Lean_Elab_Tactic_Do_Attr_3373485604____hygCtx___hyg_2_)); +x_2 = l_String_toRawSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_mkArray0(lean_box(0)); +return x_1; +} +} LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__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, uint8_t x_10, lean_object* x_11, lean_object* x_12) { _start: { @@ -10058,160 +9825,560 @@ lean_ctor_set(x_26, 4, x_25); x_27 = lean_st_mk_ref(x_26); lean_inc_ref(x_11); lean_inc(x_8); -x_28 = l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(x_8, x_14, x_22, x_27, x_11, x_12); +x_28 = l_Lean_getAsyncConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__0(x_8, x_14, x_22, x_27, x_11, x_12); if (lean_obj_tag(x_28) == 0) { -lean_object* x_29; lean_object* x_30; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_dec_ref(x_28); -x_29 = lean_box(0); -lean_inc(x_9); -x_37 = l_Lean_Syntax_getKind(x_9); -x_38 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__7)); -x_39 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__12_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_40 = l_Lean_Name_mkStr4(x_6, x_38, x_39, x_7); -x_41 = lean_name_eq(x_37, x_40); -lean_dec(x_40); -lean_dec(x_37); -if (x_41 == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_unsigned_to_nat(1u); -x_43 = l_Lean_Syntax_getArg(x_9, x_42); +x_29 = lean_unsigned_to_nat(1u); +x_30 = l_Lean_Syntax_getArg(x_9, x_29); lean_inc_ref(x_11); -x_44 = l_Lean_getAttrParamOptPrio(x_43, x_11, x_12); -if (lean_obj_tag(x_44) == 0) +lean_inc(x_30); +x_31 = l_Lean_getAttrParamOptPrio(x_30, x_11, x_12); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_45; lean_object* x_46; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec_ref(x_44); -lean_inc(x_27); -x_46 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(x_2, x_8, x_10, x_3, x_4, x_5, x_9, x_45, x_22, x_27, x_11, x_12); -x_30 = x_46; -goto block_36; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_39; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_58; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + x_33 = x_31; +} else { + lean_dec_ref(x_31); + x_33 = lean_box(0); } -else -{ -uint8_t x_47; -lean_dec(x_27); -lean_dec_ref(x_22); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_47 = !lean_is_exclusive(x_44); -if (x_47 == 0) -{ -return x_44; -} -else -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_44, 0); -lean_inc(x_48); -lean_dec(x_44); -x_49 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_49, 0, x_48); -return x_49; -} -} -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_unsigned_to_nat(3u); -x_51 = l_Lean_Syntax_getArg(x_9, x_50); +x_34 = lean_box(0); +lean_inc(x_12); lean_inc_ref(x_11); -x_52 = l_Lean_getAttrParamOptPrio(x_51, x_11, x_12); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -lean_dec_ref(x_52); lean_inc(x_27); -x_54 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0(x_2, x_8, x_10, x_3, x_4, x_5, x_9, x_53, x_22, x_27, x_11, x_12); -x_30 = x_54; -goto block_36; -} -else +lean_inc_ref(x_22); +lean_inc(x_8); +x_58 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst(x_2, x_8, x_32, x_10, x_22, x_27, x_11, x_12); +if (lean_obj_tag(x_58) == 0) { -uint8_t x_55; -lean_dec(x_27); -lean_dec_ref(x_22); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_9); -lean_dec(x_8); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_55 = !lean_is_exclusive(x_52); -if (x_55 == 0) -{ -return x_52; -} -else -{ -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_52, 0); -lean_inc(x_56); -lean_dec(x_52); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; -} -} -} -block_36: -{ -if (lean_obj_tag(x_30) == 0) -{ -uint8_t x_31; -x_31 = !lean_is_exclusive(x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_30, 0); -lean_dec(x_32); -x_33 = lean_st_ref_get(x_27); -lean_dec(x_27); -lean_dec(x_33); -lean_ctor_set(x_30, 0, x_29); -return x_30; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_dec(x_30); -x_34 = lean_st_ref_get(x_27); -lean_dec(x_27); -lean_dec(x_34); -x_35 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_35, 0, x_29); -return x_35; -} +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_39 = x_58; +goto block_40; } else { -lean_dec(x_27); -return x_30; +lean_object* x_59; uint8_t x_60; uint8_t x_157; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_157 = l_Lean_Exception_isInterrupt(x_59); +if (x_157 == 0) +{ +uint8_t x_158; +x_158 = l_Lean_Exception_isRuntime(x_59); +x_60 = x_158; +goto block_156; +} +else +{ +lean_dec(x_59); +x_60 = x_157; +goto block_156; +} +block_156: +{ +if (x_60 == 0) +{ +uint8_t x_61; +x_61 = !lean_is_exclusive(x_58); +if (x_61 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_58, 0); +lean_dec(x_62); +x_63 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_3373485604____hygCtx___hyg_2_)); +x_64 = l_Lean_getBuiltinAttributeImpl(x_63); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; +lean_free_object(x_58); +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +lean_dec_ref(x_64); +x_66 = lean_ctor_get(x_11, 5); +x_67 = lean_ctor_get(x_11, 10); +x_68 = lean_ctor_get(x_11, 11); +x_69 = l_Lean_SourceInfo_fromRef(x_66, x_60); +x_70 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9; +lean_inc(x_68); +lean_inc(x_67); +x_71 = l_Lean_addMacroScope(x_67, x_63, x_68); +x_72 = lean_box(0); +lean_inc(x_69); +x_73 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_73, 0, x_69); +lean_ctor_set(x_73, 1, x_70); +lean_ctor_set(x_73, 2, x_71); +lean_ctor_set(x_73, 3, x_72); +x_74 = !lean_is_exclusive(x_65); +if (x_74 == 0) +{ +lean_object* x_75; lean_object* x_76; lean_object* 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; +x_75 = lean_ctor_get(x_65, 1); +x_76 = lean_ctor_get(x_65, 2); +lean_dec(x_76); +x_77 = lean_ctor_get(x_65, 0); +lean_dec(x_77); +x_78 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11)); +x_79 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12; +lean_inc(x_69); +lean_ctor_set_tag(x_65, 1); +lean_ctor_set(x_65, 2, x_79); +lean_ctor_set(x_65, 1, x_78); +lean_ctor_set(x_65, 0, x_69); +x_80 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13)); +x_81 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__12_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_82 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14)); +x_83 = l_Lean_Name_mkStr4(x_7, x_80, x_81, x_82); +x_84 = l_Lean_Syntax_node2(x_69, x_83, x_73, x_65); +x_85 = lean_unsigned_to_nat(3u); +x_86 = l_Lean_Syntax_setArg(x_84, x_85, x_30); +x_87 = lean_box(x_10); +lean_inc(x_12); +lean_inc_ref(x_11); +x_88 = lean_apply_6(x_75, x_8, x_86, x_87, x_11, x_12, lean_box(0)); +if (lean_obj_tag(x_88) == 0) +{ +lean_dec_ref(x_88); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_35 = lean_box(0); +goto block_38; +} +else +{ +lean_object* x_89; uint8_t x_90; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = l_Lean_Exception_isInterrupt(x_89); +if (x_90 == 0) +{ +uint8_t x_91; +lean_inc(x_89); +x_91 = l_Lean_Exception_isRuntime(x_89); +x_41 = x_88; +x_42 = lean_box(0); +x_43 = x_89; +x_44 = x_91; +goto block_57; +} +else +{ +x_41 = x_88; +x_42 = lean_box(0); +x_43 = x_89; +x_44 = x_90; +goto block_57; } } } else { -uint8_t x_58; +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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_92 = lean_ctor_get(x_65, 1); +lean_inc(x_92); +lean_dec(x_65); +x_93 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11)); +x_94 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12; +lean_inc(x_69); +x_95 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_95, 0, x_69); +lean_ctor_set(x_95, 1, x_93); +lean_ctor_set(x_95, 2, x_94); +x_96 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13)); +x_97 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__12_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_98 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14)); +x_99 = l_Lean_Name_mkStr4(x_7, x_96, x_97, x_98); +x_100 = l_Lean_Syntax_node2(x_69, x_99, x_73, x_95); +x_101 = lean_unsigned_to_nat(3u); +x_102 = l_Lean_Syntax_setArg(x_100, x_101, x_30); +x_103 = lean_box(x_10); +lean_inc(x_12); +lean_inc_ref(x_11); +x_104 = lean_apply_6(x_92, x_8, x_102, x_103, x_11, x_12, lean_box(0)); +if (lean_obj_tag(x_104) == 0) +{ +lean_dec_ref(x_104); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_35 = lean_box(0); +goto block_38; +} +else +{ +lean_object* x_105; uint8_t x_106; +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +x_106 = l_Lean_Exception_isInterrupt(x_105); +if (x_106 == 0) +{ +uint8_t x_107; +lean_inc(x_105); +x_107 = l_Lean_Exception_isRuntime(x_105); +x_41 = x_104; +x_42 = lean_box(0); +x_43 = x_105; +x_44 = x_107; +goto block_57; +} +else +{ +x_41 = x_104; +x_42 = lean_box(0); +x_43 = x_105; +x_44 = x_106; +goto block_57; +} +} +} +} +else +{ +uint8_t x_108; +lean_dec(x_33); +lean_dec(x_30); +lean_dec(x_27); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_108 = !lean_is_exclusive(x_64); +if (x_108 == 0) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_109 = lean_ctor_get(x_64, 0); +x_110 = lean_ctor_get(x_11, 5); +lean_inc(x_110); +lean_dec_ref(x_11); +x_111 = lean_io_error_to_string(x_109); +lean_ctor_set_tag(x_58, 3); +lean_ctor_set(x_58, 0, x_111); +x_112 = l_Lean_MessageData_ofFormat(x_58); +x_113 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_113, 0, x_110); +lean_ctor_set(x_113, 1, x_112); +lean_ctor_set(x_64, 0, x_113); +return x_64; +} +else +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_114 = lean_ctor_get(x_64, 0); +lean_inc(x_114); +lean_dec(x_64); +x_115 = lean_ctor_get(x_11, 5); +lean_inc(x_115); +lean_dec_ref(x_11); +x_116 = lean_io_error_to_string(x_114); +lean_ctor_set_tag(x_58, 3); +lean_ctor_set(x_58, 0, x_116); +x_117 = l_Lean_MessageData_ofFormat(x_58); +x_118 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_118, 0, x_115); +lean_ctor_set(x_118, 1, x_117); +x_119 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_119, 0, x_118); +return x_119; +} +} +} +else +{ +lean_object* x_120; lean_object* x_121; +lean_dec(x_58); +x_120 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_3373485604____hygCtx___hyg_2_)); +x_121 = l_Lean_getBuiltinAttributeImpl(x_120); +if (lean_obj_tag(x_121) == 0) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +lean_dec_ref(x_121); +x_123 = lean_ctor_get(x_11, 5); +x_124 = lean_ctor_get(x_11, 10); +x_125 = lean_ctor_get(x_11, 11); +x_126 = l_Lean_SourceInfo_fromRef(x_123, x_60); +x_127 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9; +lean_inc(x_125); +lean_inc(x_124); +x_128 = l_Lean_addMacroScope(x_124, x_120, x_125); +x_129 = lean_box(0); +lean_inc(x_126); +x_130 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_130, 0, x_126); +lean_ctor_set(x_130, 1, x_127); +lean_ctor_set(x_130, 2, x_128); +lean_ctor_set(x_130, 3, x_129); +x_131 = lean_ctor_get(x_122, 1); +lean_inc_ref(x_131); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + lean_ctor_release(x_122, 1); + lean_ctor_release(x_122, 2); + x_132 = x_122; +} else { + lean_dec_ref(x_122); + x_132 = lean_box(0); +} +x_133 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__11)); +x_134 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12; +lean_inc(x_126); +if (lean_is_scalar(x_132)) { + x_135 = lean_alloc_ctor(1, 3, 0); +} else { + x_135 = x_132; + lean_ctor_set_tag(x_135, 1); +} +lean_ctor_set(x_135, 0, x_126); +lean_ctor_set(x_135, 1, x_133); +lean_ctor_set(x_135, 2, x_134); +x_136 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__13)); +x_137 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__12_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_138 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__14)); +x_139 = l_Lean_Name_mkStr4(x_7, x_136, x_137, x_138); +x_140 = l_Lean_Syntax_node2(x_126, x_139, x_130, x_135); +x_141 = lean_unsigned_to_nat(3u); +x_142 = l_Lean_Syntax_setArg(x_140, x_141, x_30); +x_143 = lean_box(x_10); +lean_inc(x_12); +lean_inc_ref(x_11); +x_144 = lean_apply_6(x_131, x_8, x_142, x_143, x_11, x_12, lean_box(0)); +if (lean_obj_tag(x_144) == 0) +{ +lean_dec_ref(x_144); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_35 = lean_box(0); +goto block_38; +} +else +{ +lean_object* x_145; uint8_t x_146; +x_145 = lean_ctor_get(x_144, 0); +lean_inc(x_145); +x_146 = l_Lean_Exception_isInterrupt(x_145); +if (x_146 == 0) +{ +uint8_t x_147; +lean_inc(x_145); +x_147 = l_Lean_Exception_isRuntime(x_145); +x_41 = x_144; +x_42 = lean_box(0); +x_43 = x_145; +x_44 = x_147; +goto block_57; +} +else +{ +x_41 = x_144; +x_42 = lean_box(0); +x_43 = x_145; +x_44 = x_146; +goto block_57; +} +} +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec(x_33); +lean_dec(x_30); +lean_dec(x_27); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_148 = lean_ctor_get(x_121, 0); +lean_inc(x_148); +if (lean_is_exclusive(x_121)) { + lean_ctor_release(x_121, 0); + x_149 = x_121; +} else { + lean_dec_ref(x_121); + x_149 = lean_box(0); +} +x_150 = lean_ctor_get(x_11, 5); +lean_inc(x_150); +lean_dec_ref(x_11); +x_151 = lean_io_error_to_string(x_148); +x_152 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_152, 0, x_151); +x_153 = l_Lean_MessageData_ofFormat(x_152); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_150); +lean_ctor_set(x_154, 1, x_153); +if (lean_is_scalar(x_149)) { + x_155 = lean_alloc_ctor(1, 1, 0); +} else { + x_155 = x_149; +} +lean_ctor_set(x_155, 0, x_154); +return x_155; +} +} +} +else +{ +lean_dec(x_30); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_39 = x_58; +goto block_40; +} +} +} +block_38: +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_st_ref_get(x_27); +lean_dec(x_27); +lean_dec(x_36); +if (lean_is_scalar(x_33)) { + x_37 = lean_alloc_ctor(0, 1, 0); +} else { + x_37 = x_33; +} +lean_ctor_set(x_37, 0, x_34); +return x_37; +} +block_40: +{ +if (lean_obj_tag(x_39) == 0) +{ +lean_dec_ref(x_39); +x_35 = lean_box(0); +goto block_38; +} +else +{ +lean_dec(x_33); +lean_dec(x_27); +return x_39; +} +} +block_57: +{ +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +lean_dec_ref(x_41); +x_45 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__3_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_46 = l_Lean_Name_mkStr4(x_3, x_4, x_5, x_45); +lean_inc(x_46); +x_47 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___redArg(x_46, x_11); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_unbox(x_48); +lean_dec(x_48); +if (x_49 == 0) +{ +lean_object* x_50; +lean_dec(x_46); +lean_dec_ref(x_43); +lean_inc(x_27); +x_50 = lean_apply_6(x_6, x_34, x_22, x_27, x_11, x_12, lean_box(0)); +x_39 = x_50; +goto block_40; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_51 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8; +x_52 = l_Lean_Exception_toMessageData(x_43); +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2(x_46, x_53, x_22, x_27, x_11, x_12); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +lean_dec_ref(x_54); +lean_inc(x_27); +x_56 = lean_apply_6(x_6, x_55, x_22, x_27, x_11, x_12, lean_box(0)); +x_39 = x_56; +goto block_40; +} +else +{ +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +x_39 = x_54; +goto block_40; +} +} +} +else +{ +lean_dec_ref(x_43); +lean_dec(x_33); +lean_dec(x_27); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_41; +} +} +} +else +{ +uint8_t x_159; +lean_dec(x_30); lean_dec(x_27); lean_dec_ref(x_22); lean_dec(x_12); lean_dec_ref(x_11); -lean_dec(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); @@ -10219,20 +10386,51 @@ lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_58 = !lean_is_exclusive(x_28); -if (x_58 == 0) +x_159 = !lean_is_exclusive(x_31); +if (x_159 == 0) +{ +return x_31; +} +else +{ +lean_object* x_160; lean_object* x_161; +x_160 = lean_ctor_get(x_31, 0); +lean_inc(x_160); +lean_dec(x_31); +x_161 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_161, 0, x_160); +return x_161; +} +} +} +else +{ +uint8_t x_162; +lean_dec(x_27); +lean_dec_ref(x_22); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_162 = !lean_is_exclusive(x_28); +if (x_162 == 0) { return x_28; } else { -lean_object* x_59; lean_object* x_60; -x_59 = lean_ctor_get(x_28, 0); -lean_inc(x_59); +lean_object* x_163; lean_object* x_164; +x_163 = lean_ctor_get(x_28, 0); +lean_inc(x_163); lean_dec(x_28); -x_60 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_60, 0, x_59); -return x_60; +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_163); +return x_164; } } } @@ -10243,6 +10441,7 @@ _start: uint8_t x_14; lean_object* x_15; x_14 = lean_unbox(x_10); x_15 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_14, x_11, x_12); +lean_dec(x_9); return x_15; } } @@ -10376,22 +10575,22 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr(lean_object* _start: { 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; -x_2 = lean_box(1); -x_3 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__7_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_4 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__0_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_5 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_6 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__2_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); -x_7 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__2)); +x_2 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__0)); +x_3 = lean_box(1); +x_4 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__7_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_5 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__0_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_6 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__1_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); +x_7 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn___closed__2_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_)); x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___boxed), 13, 7); -lean_closure_set(x_8, 0, x_2); +lean_closure_set(x_8, 0, x_3); lean_closure_set(x_8, 1, x_1); -lean_closure_set(x_8, 2, x_4); -lean_closure_set(x_8, 3, x_5); -lean_closure_set(x_8, 4, x_6); -lean_closure_set(x_8, 5, x_3); -lean_closure_set(x_8, 6, x_7); -x_9 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__4)); -x_10 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__6)); +lean_closure_set(x_8, 2, x_5); +lean_closure_set(x_8, 3, x_6); +lean_closure_set(x_8, 4, x_7); +lean_closure_set(x_8, 5, x_2); +lean_closure_set(x_8, 6, x_4); +x_9 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__5)); +x_10 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___closed__7)); x_11 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_8); @@ -10529,6 +10728,7 @@ return x_4; lean_object* initialize_Lean_Meta_Tactic_Simp(uint8_t builtin); lean_object* initialize_Std_Tactic_Do_Syntax(uint8_t builtin); lean_object* initialize_Init_While(uint8_t builtin); +lean_object* initialize_Init_Syntax(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Do_Attr(uint8_t builtin) { lean_object * res; @@ -10543,6 +10743,9 @@ lean_dec_ref(res); res = initialize_Init_While(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Syntax(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); if (builtin) {res = l___private_Lean_Elab_Tactic_Do_Attr_0__Lean_Elab_Tactic_Do_SpecAttr_initFn_00___x40_Lean_Elab_Tactic_Do_Attr_1315642830____hygCtx___hyg_2_(); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -10585,10 +10788,20 @@ l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems_default = _init_l_Lean_ lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems_default); l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems = _init_l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_instInhabitedSpecTheorems); -l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__0(); -l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1 = _init_l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased_spec__0_spec__0___redArg___closed__1(); -l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore_spec__0_spec__0___redArg___closed__0); +l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__0 = _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__0(); +l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1 = _init_l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__0_spec__1___redArg___closed__1(); +l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0 = _init_l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0(); +lean_mark_persistent(l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__3___closed__0); +l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0 = _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__0); +l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1 = _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__2___closed__1); +l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0_spec__1_spec__3___redArg___closed__0); +l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3 = _init_l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3(); +lean_mark_persistent(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add_spec__0___closed__3); +l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase_spec__0_spec__0___redArg___closed__0); l_Lean_Elab_Tactic_Do_SpecAttr_simpSPredConfig = _init_l_Lean_Elab_Tactic_Do_SpecAttr_simpSPredConfig(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_simpSPredConfig); l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__3 = _init_l___private_Init_While_0__Lean_Loop_forIn_loop___at___00Lean_Elab_Tactic_Do_SpecAttr_computeMVarBetaPotentialForSPred_spec__0___closed__3(); @@ -10649,24 +10862,16 @@ l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_g lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromConst_spec__0_spec__0_spec__1___redArg___closed__3); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__1 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__1); -l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0 = _init_l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0(); -lean_mark_persistent(l_panic___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__3___closed__0); -l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0 = _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0(); -lean_mark_persistent(l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__0); -l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1 = _init_l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1(); -lean_mark_persistent(l___private_Lean_Meta_DiscrTree_Basic_0__Lean_Meta_DiscrTree_insertAux___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__2___closed__1); -l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0 = _init_l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0_spec__1_spec__3___redArg___closed__0); -l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3 = _init_l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3(); -lean_mark_persistent(l_Lean_Meta_DiscrTree_insertKeyValue___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry_spec__0___closed__3); -l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0(); -lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__0); -l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1(); -lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__1); -l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2(); -lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__2); -l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3(); -lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_addSpecTheorem_spec__0___redArg___closed__3); +l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal___closed__3); +l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__0); +l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__1); +l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__2); +l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3 = _init_l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00Lean_Elab_Tactic_Do_SpecAttr_SpecExtension_addSpecTheoremFromConst_spec__0___redArg___closed__3); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__5 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__5(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__5); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__6 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecExt___closed__6(); @@ -10680,13 +10885,11 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Tactic_Do_SpecAttr_specAttr = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_specAttr); lean_dec_ref(res); -}l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0 = _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__0(); -l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2 = _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2(); -lean_mark_persistent(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__1___closed__2); -l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1(); +}l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__1); -l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__0___closed__3); +l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0 = _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__0(); +l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2 = _init_l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2(); +lean_mark_persistent(l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr_spec__2___closed__2); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__0 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__0); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__1 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__1(); @@ -10701,6 +10904,12 @@ l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__5 = _init_l_Lean_El lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__5); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__6 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__6(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__6); +l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__8); +l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__9); +l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__1___closed__12); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__1 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__1); l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__3 = _init_l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecAttr___lam__2___closed__3(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c index ed620ffb8f..2a9415cab7 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen.c @@ -565,92 +565,30 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalD LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38_spec__42___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38(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_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___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_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStart(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__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* l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6___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* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___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_expr_instantiate1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "imp"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__0_value),LEAN_SCALAR_PTR_LITERAL(254, 180, 127, 119, 35, 232, 80, 131)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "binderIdent"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__3_value),LEAN_SCALAR_PTR_LITERAL(37, 194, 68, 106, 254, 181, 31, 191)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "ident"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__5_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__5_value),LEAN_SCALAR_PTR_LITERAL(52, 159, 208, 51, 14, 60, 6, 71)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 42, .m_capacity = 42, .m_length = 41, .m_data = "Target not an implication or let-binding "}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__7 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__7_value; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8; -static const lean_closure_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "Intro"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__10 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__10_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(167, 48, 44, 122, 88, 53, 63, 251)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_4 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_3),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__10_value),LEAN_SCALAR_PTR_LITERAL(121, 124, 66, 100, 237, 121, 142, 93)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value_aux_4),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(162, 53, 195, 0, 35, 253, 177, 163)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11_value; -uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l_Lean_TSyntax_getId(lean_object*); -lean_object* l_Lean_Expr_appFn_x21(lean_object*); -lean_object* l_Lean_Expr_appArg_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mStart(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_nanos_now(); @@ -665,431 +603,437 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed(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_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__2(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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34___boxed(lean_object*, lean_object*, lean_object*); -static const lean_closure_object l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0_value; -lean_object* l_Lean_replaceRef(lean_object*, lean_object*); -lean_object* l_Lean_PersistentArray_toArray___redArg(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27(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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___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* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29___boxed(lean_object*, lean_object*); -lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___boxed(lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 54, .m_capacity = 54, .m_length = 53, .m_data = ""}; -static const lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__0 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__0_value; -static lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1; -static double l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__2; -extern lean_object* l_Lean_trace_profiler; -double lean_float_sub(double, double); -uint8_t lean_float_decLt(double, double); -extern lean_object* l_Lean_trace_profiler_useHeartbeats; -extern lean_object* l_Lean_trace_profiler_threshold; -double lean_float_div(double, double); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(lean_object*, uint8_t, 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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___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_object*); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Program: "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0; +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1; +static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0_value; +static const lean_closure_object l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__1 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__1_value; +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_mkMVar(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___boxed(lean_object*, lean_object*, lean_object*); +static const lean_string_object l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ","}; +static const lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__0 = (const lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__0_value; +static const lean_ctor_object l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 3}, .m_objs = {((lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__0_value)}}; +static const lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__1 = (const lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__1_value; +static lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2; +static lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3; +lean_object* l_Lean_MessageData_ofName(lean_object*); +lean_object* l_Lean_MessageData_paren(lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_findSpec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__12(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__12___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31(lean_object*, uint8_t, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33(lean_object*, uint8_t, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___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_object* l_Lean_Meta_Simp_mkCongrArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkMVar(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getValue_x3f___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__17(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_filterOldMVars___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___boxed(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_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); -uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Parser"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__1_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "hole"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_1),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__1_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(135, 134, 219, 115, 97, 130, 74, 55)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3_value; -lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); -lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___boxed(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___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_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___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 const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "entails_cons_intro"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(121, 192, 217, 126, 138, 217, 120, 234)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1_value; -lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); -lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "List"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "cons"}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value),LEAN_SCALAR_PTR_LITERAL(245, 188, 225, 225, 165, 5, 251, 132)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value),LEAN_SCALAR_PTR_LITERAL(98, 170, 59, 223, 79, 132, 139, 119)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 31, .m_capacity = 31, .m_length = 30, .m_data = "Ambient state list not a cons "}; -static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3_value; -static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4; -lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___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_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1___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_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_TypeList_length(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_filterOldMVars___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MetavarContext_getDecl(lean_object*, lean_object*); +uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_qpartition___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "binderIdent"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__1_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__1_value),LEAN_SCALAR_PTR_LITERAL(37, 194, 68, 106, 254, 181, 31, 191)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Parser"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__4_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "hole"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__5_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_1),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__4_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__5_value),LEAN_SCALAR_PTR_LITERAL(135, 134, 219, 115, 97, 130, 74, 55)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6_value; +lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___boxed(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___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_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___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 const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "entails_cons_intro"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__0_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(121, 192, 217, 126, 138, 217, 120, 234)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1_value; +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); +lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__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*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "List"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__0_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "cons"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__1_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__0_value),LEAN_SCALAR_PTR_LITERAL(245, 188, 225, 225, 165, 5, 251, 132)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__1_value),LEAN_SCALAR_PTR_LITERAL(98, 170, 59, 223, 79, 132, 139, 119)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 31, .m_capacity = 31, .m_length = 30, .m_data = "Ambient state list not a cons "}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__3_value; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "ident"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__5_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__5_value),LEAN_SCALAR_PTR_LITERAL(52, 159, 208, 51, 14, 60, 6, 71)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6_value; +lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_appFn_x21(lean_object*); +lean_object* l_Lean_Expr_appArg_x21(lean_object*); +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l_Lean_TSyntax_getId(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___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_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1___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_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___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* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg___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_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg___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* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(lean_object*, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___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* l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__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* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___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* l_Lean_Elab_Tactic_Do_getNumJoinParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg___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* l_Lean_Meta_mkLetFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___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* l_Lean_Meta_reduceMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "isFalse"}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__0_value; -static const lean_ctor_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(113, 70, 3, 12, 31, 103, 230, 247)}}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1_value; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "isTrue"}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__0_value; -static const lean_ctor_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(125, 82, 240, 34, 69, 121, 64, 234)}}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1_value; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___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* l_Lean_Expr_abstractM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4___boxed(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_isFVar(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mask___redArg(lean_object*, lean_object*); -lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5(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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5___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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___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___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Subarray_empty(lean_object*); -static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -lean_object* l_Array_instInhabited(lean_object*); -static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0___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* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9(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*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0___boxed(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___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* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1___boxed(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_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkArrow(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0_value; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isHEq(lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 72, .m_capacity = 72, .m_length = 71, .m_data = "unexpected matcher application, motive must be lambda expression with #"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__1 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__1_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = " arguments"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__3 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__3_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11(lean_object*, lean_object*, lean_object*, uint8_t, size_t, 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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___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_object*); +lean_object* l_Lean_Meta_inferArgumentTypesN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___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_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___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_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg___boxed(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_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___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* l_Lean_indentD(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11___boxed(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_instantiateLambda(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__1___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__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*); -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 81, .m_capacity = 81, .m_length = 80, .m_data = "unexpected matcher application, insufficient number of parameters in alternative"}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__0_value; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1; +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__1___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__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*); +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 81, .m_capacity = 81, .m_length = 80, .m_data = "unexpected matcher application, insufficient number of parameters in alternative"}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__0_value; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1; uint8_t l_Lean_Exception_isInterrupt(lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___boxed(lean_object**); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4___boxed(lean_object**); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, 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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6___boxed(lean_object**); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4___boxed(lean_object**); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, 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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6___boxed(lean_object**); +lean_object* lean_panic_fn(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8___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_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 37, .m_capacity = 37, .m_length = 36, .m_data = "Lean.Meta.Match.MatcherApp.Transform"}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__0_value; -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 31, .m_capacity = 31, .m_length = 30, .m_data = "Lean.Meta.MatcherApp.transform"}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__1 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__1_value; -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 67, .m_capacity = 67, .m_length = 66, .m_data = "assertion violation: ys.size == splitterAltInfo.numFields\n "}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__2 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__2_value; +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 37, .m_capacity = 37, .m_length = 36, .m_data = "Lean.Meta.Match.MatcherApp.Transform"}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__0_value; +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 31, .m_capacity = 31, .m_length = 30, .m_data = "Lean.Meta.MatcherApp.transform"}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__1 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__1_value; +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 67, .m_capacity = 67, .m_length = 66, .m_data = "assertion violation: ys.size == splitterAltInfo.numFields\n "}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__2 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__2_value; lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3; -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Function"}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__4 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__4_value; -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "const"}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__5 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__5_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__4_value),LEAN_SCALAR_PTR_LITERAL(225, 8, 186, 189, 152, 89, 197, 12)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6_value_aux_0),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__5_value),LEAN_SCALAR_PTR_LITERAL(231, 33, 22, 82, 100, 121, 126, 178)}}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6_value; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10; -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed(lean_object**); -static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 52, .m_capacity = 52, .m_length = 51, .m_data = "assertion violation: altInfo.numOverlaps = 0\n "}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__0_value; -static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___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_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___closed__0 = (const lean_object*)&l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___closed__0_value; -lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkHEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___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___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45___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_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3; +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "Function"}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__4 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__4_value; +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "const"}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__5 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__5_value; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__4_value),LEAN_SCALAR_PTR_LITERAL(225, 8, 186, 189, 152, 89, 197, 12)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6_value_aux_0),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__5_value),LEAN_SCALAR_PTR_LITERAL(231, 33, 22, 82, 100, 121, 126, 178)}}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6_value; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10; +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed(lean_object**); +lean_object* l_Subarray_empty(lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +lean_object* l_Array_instInhabited(lean_object*); +static lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0___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* l_Lean_Meta_Match_forallAltVarsTelescope___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9(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*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___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_object*, lean_object*); +static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 52, .m_capacity = 52, .m_length = 51, .m_data = "assertion violation: altInfo.numOverlaps = 0\n "}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__0_value; +static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___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_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_get_match_equations_for(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__1___boxed(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_inferArgumentTypesN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_indentD(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8(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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___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* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_mkArrow(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0_value; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46(uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Expr_isHEq(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 72, .m_capacity = 72, .m_length = 71, .m_data = "unexpected matcher application, motive must be lambda expression with #"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__1 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__1_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = " arguments"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__3 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__3_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11(lean_object*, lean_object*, lean_object*, uint8_t, size_t, 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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___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_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___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_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__1___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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg(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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4___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_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2___boxed(lean_object**); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FVarId_getUserName___redArg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3___boxed, .m_arity = 9, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0_value; -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 70, .m_capacity = 70, .m_length = 69, .m_data = "failed to transform matcher, type error when constructing new motive:"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__0 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__0_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 83, .m_capacity = 83, .m_length = 82, .m_data = "failed to transform matcher, type error when constructing new pre-splitter motive:"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__3 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__3_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "\nfailed with"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__5 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__5_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 75, .m_capacity = 75, .m_length = 74, .m_data = "failed to transform matcher, type error when constructing splitter motive:"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__7 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__7_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "matcher "}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__9 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__9_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10; -static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 24, .m_capacity = 24, .m_length = 23, .m_data = " has no MatchInfo found"}; -static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__11 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__11_value; -static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12; -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___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_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__1___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4___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_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg(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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___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_object*, lean_object*); +static const lean_closure_object l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3___boxed, .m_arity = 9, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0_value; +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___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 const lean_closure_object l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___closed__0 = (const lean_object*)&l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___closed__0_value; +lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 70, .m_capacity = 70, .m_length = 69, .m_data = "failed to transform matcher, type error when constructing new motive:"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__0 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__0_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 83, .m_capacity = 83, .m_length = 82, .m_data = "failed to transform matcher, type error when constructing new pre-splitter motive:"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__3 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__3_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "\nfailed with"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__5 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__5_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 75, .m_capacity = 75, .m_length = 74, .m_data = "failed to transform matcher, type error when constructing splitter motive:"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__7 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__7_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "matcher "}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__9 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__9_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10; +static const lean_string_object l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 24, .m_capacity = 24, .m_length = 23, .m_data = " has no MatchInfo found"}; +static const lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__11 = (const lean_object*)&l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__11_value; +static lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1; lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Meta_mapErrorImp___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_MatcherApp_altNumParams(lean_object*); uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); -lean_object* l_Lean_MessageData_ofName(lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_getNumDiscrEqs(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37(lean_object*, uint8_t, 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_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0___boxed(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__1(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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__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 const lean_string_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ite"}; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__0_value),LEAN_SCALAR_PTR_LITERAL(15, 2, 151, 246, 61, 29, 192, 254)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__1_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "dite"}; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__2_value),LEAN_SCALAR_PTR_LITERAL(137, 166, 197, 161, 68, 218, 116, 116)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3_value; -static const lean_closure_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__2___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__4_value; -static const lean_closure_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__5_value; +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39(lean_object*, uint8_t, 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_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___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*); +static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "isFalse"}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__0_value; +static const lean_ctor_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(113, 70, 3, 12, 31, 103, 230, 247)}}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1_value; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__1(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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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* l_Lean_Expr_abstractM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "isTrue"}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__0_value; +static const lean_ctor_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(125, 82, 240, 34, 69, 121, 64, 234)}}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1_value; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59(lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___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_object* l_Array_mask___redArg(lean_object*, lean_object*); +lean_object* lean_expr_instantiate_rev(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5(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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5___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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__1(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__1___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ite"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__0_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__0_value),LEAN_SCALAR_PTR_LITERAL(15, 2, 151, 246, 61, 29, 192, 254)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__1_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "dite"}; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__2_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__2_value),LEAN_SCALAR_PTR_LITERAL(137, 166, 197, 161, 68, 218, 116, 116)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3_value; +static const lean_closure_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__2___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__4_value; +static const lean_closure_object l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__5_value; lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); lean_object* l_Lean_mkNot(lean_object*); lean_object* l_Lean_Meta_MatcherApp_toExpr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__1___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___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* l_Lean_Meta_reduceMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__1___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1109,354 +1053,441 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "PredTrans"}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0_value; -static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "apply"}; -static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__1_value; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__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*); +static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "PredTrans"}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0_value; +static const lean_string_object l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "apply"}; +static const lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__1_value; lean_object* l_Array_extract___redArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_emptyHyp(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0(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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__2(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0(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_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___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* l_Lean_Elab_Tactic_Do_getSplitInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0___boxed(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__2___boxed(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Prod"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__0_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__0_value),LEAN_SCALAR_PTR_LITERAL(121, 119, 164, 206, 221, 118, 48, 212)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1_value; -static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__10_value)} }; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__2_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "handle"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__3_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__3_value),LEAN_SCALAR_PTR_LITERAL(209, 181, 56, 93, 215, 12, 123, 79)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__4_value; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___boxed(lean_object**); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "pure"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__0_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__0_value),LEAN_SCALAR_PTR_LITERAL(180, 100, 130, 79, 119, 57, 99, 92)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1_value; -static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__2_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "arg"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__3_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__3_value),LEAN_SCALAR_PTR_LITERAL(88, 239, 236, 102, 234, 147, 60, 81)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "except"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__5 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__5_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__5_value),LEAN_SCALAR_PTR_LITERAL(219, 111, 107, 74, 125, 186, 73, 31)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "e"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__7 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__7_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__7_value),LEAN_SCALAR_PTR_LITERAL(26, 154, 90, 102, 217, 192, 49, 255)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8_value; -static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8_value)} }; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__9 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__9_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__5_value),LEAN_SCALAR_PTR_LITERAL(57, 223, 221, 59, 39, 25, 212, 154)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "And"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__11 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__11_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__11_value),LEAN_SCALAR_PTR_LITERAL(49, 220, 212, 156, 122, 214, 55, 135)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(58, 46, 244, 208, 18, 71, 77, 162)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "entails_true"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__13 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__13_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "true"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__14 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__14_value; -uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); -static uint64_t l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "entails_false"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__16 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__16_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "ExceptConds"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "false"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__18 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__18_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17_value),LEAN_SCALAR_PTR_LITERAL(244, 224, 84, 66, 133, 22, 35, 247)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__18_value),LEAN_SCALAR_PTR_LITERAL(155, 33, 255, 249, 3, 79, 124, 43)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "refl"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__20 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__20_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17_value),LEAN_SCALAR_PTR_LITERAL(244, 224, 84, 66, 133, 22, 35, 247)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(72, 205, 41, 157, 129, 142, 231, 99)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__20_value),LEAN_SCALAR_PTR_LITERAL(27, 17, 159, 44, 239, 63, 224, 32)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__6_value),LEAN_SCALAR_PTR_LITERAL(78, 21, 103, 131, 118, 13, 187, 164)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(177, 152, 123, 219, 220, 182, 189, 250)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23; -uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); -lean_object* l_Lean_Meta_Context_config(lean_object*); -uint64_t l_Lean_Meta_Context_configKey(lean_object*); -uint64_t lean_uint64_shift_right(uint64_t, uint64_t); -lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint64_t lean_uint64_shift_left(uint64_t, uint64_t); -uint64_t lean_uint64_lor(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "success"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__0_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__0_value),LEAN_SCALAR_PTR_LITERAL(60, 8, 7, 12, 214, 210, 213, 131)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__1_value; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9(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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___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_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "PostCond"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__0_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__0_value),LEAN_SCALAR_PTR_LITERAL(124, 92, 27, 8, 188, 224, 25, 47)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(32, 111, 255, 27, 103, 9, 244, 9)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "post"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__2_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__2_value),LEAN_SCALAR_PTR_LITERAL(155, 28, 93, 107, 152, 77, 110, 29)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3_value; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "r"}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__4_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__4_value),LEAN_SCALAR_PTR_LITERAL(201, 206, 29, 183, 206, 15, 98, 41)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__5 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__5_value; -static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__5_value)} }; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__6 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__6_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__0_value),LEAN_SCALAR_PTR_LITERAL(124, 92, 27, 8, 188, 224, 25, 47)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(32, 111, 255, 27, 103, 9, 244, 9)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__20_value),LEAN_SCALAR_PTR_LITERAL(147, 34, 72, 188, 117, 15, 62, 134)}}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7_value; -lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MVarId_setKind___redArg(lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Invariant"}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__0_value; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__0_value),LEAN_SCALAR_PTR_LITERAL(246, 189, 77, 192, 11, 129, 81, 25)}}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1_value; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6___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_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__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_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3___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_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 37, .m_capacity = 37, .m_length = 36, .m_data = "Failed to synthesize synthetic MVar "}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__0_value; -static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1; -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = " from unifying "}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__2 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__2_value; -static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3; -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = " against "}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__4 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__4_value; -static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5; -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 51, .m_capacity = 51, .m_length = 50, .m_data = ".\nThis likely leaves behind an additional subgoal."}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__6 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__6_value; -static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4(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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "spec"}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__0_value; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__0_value),LEAN_SCALAR_PTR_LITERAL(13, 84, 199, 228, 250, 36, 60, 178)}}; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(180, 190, 140, 210, 253, 78, 130, 238)}}; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(212, 104, 229, 54, 179, 197, 12, 87)}}; -static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__0_value),LEAN_SCALAR_PTR_LITERAL(155, 14, 123, 28, 194, 252, 167, 244)}}; -static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1_value; -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18(uint8_t, 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "dischargeMGoal: "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__0_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__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_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg___boxed(lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 37, .m_capacity = 37, .m_length = 36, .m_data = "Failed to synthesize synthetic MVar "}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__0_value; +static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1; +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = " from unifying "}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__2 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__2_value; +static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3; +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = " against "}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__4 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__4_value; +static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5; +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 51, .m_capacity = 51, .m_length = 50, .m_data = ".\nThis likely leaves behind an additional subgoal."}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__6 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__6_value; +static lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4(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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___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 const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "spec"}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__0_value; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__0_value),LEAN_SCALAR_PTR_LITERAL(13, 84, 199, 228, 250, 36, 60, 178)}}; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(180, 190, 140, 210, 253, 78, 130, 238)}}; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(212, 104, 229, 54, 179, 197, 12, 87)}}; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__0_value),LEAN_SCALAR_PTR_LITERAL(155, 14, 123, 28, 194, 252, 167, 244)}}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1_value; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20(uint8_t, 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_throwTypeMismatchError___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7(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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MVarId_setKind___redArg(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Invariant"}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__0 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__0_value; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(246, 189, 77, 192, 11, 129, 81, 25)}}; +static const lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1 = (const lean_object*)&l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1_value; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "proof: "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__0_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_pureRflAndAndIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_pureTrivial(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_ProofMode_MGoal_assumptionPure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "proof: "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__0_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_throwTypeMismatchError___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7(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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 33, .m_capacity = 33, .m_length = 32, .m_data = "target not a Triple application "}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__0_value; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1; -static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Triple"}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value_aux_1),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__2_value),LEAN_SCALAR_PTR_LITERAL(31, 48, 165, 224, 255, 99, 7, 166)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_1),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(48, 249, 197, 27, 172, 11, 117, 203)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value_aux_2),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__1_value),LEAN_SCALAR_PTR_LITERAL(196, 51, 114, 249, 35, 73, 112, 164)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "mono"}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__5_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_1),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(48, 249, 197, 27, 172, 11, 117, 203)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__5_value),LEAN_SCALAR_PTR_LITERAL(127, 147, 73, 155, 25, 24, 176, 27)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(86, 181, 97, 38, 147, 213, 38, 7)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__3_value),LEAN_SCALAR_PTR_LITERAL(240, 139, 153, 166, 125, 35, 90, 29)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7_value; -static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "pre"}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__8 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__8_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__8_value),LEAN_SCALAR_PTR_LITERAL(234, 68, 201, 77, 117, 184, 192, 140)}}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9_value; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "dischargeMGoal: "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__0_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4___boxed(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_num___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Prod"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__0_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__0_value),LEAN_SCALAR_PTR_LITERAL(121, 119, 164, 206, 221, 118, 48, 212)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "success"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__2_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__2_value),LEAN_SCALAR_PTR_LITERAL(60, 8, 7, 12, 214, 210, 213, 131)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__3_value; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9(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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___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_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10___boxed(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_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__2___boxed(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__1___boxed(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4___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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__10_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__0_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "handle"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__1_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__1_value),LEAN_SCALAR_PTR_LITERAL(209, 181, 56, 93, 215, 12, 123, 79)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__2_value; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___boxed(lean_object**); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "pure"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__0_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__0_value),LEAN_SCALAR_PTR_LITERAL(180, 100, 130, 79, 119, 57, 99, 92)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__2_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "arg"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__3_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__3_value),LEAN_SCALAR_PTR_LITERAL(88, 239, 236, 102, 234, 147, 60, 81)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "except"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__5 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__5_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8_value),LEAN_SCALAR_PTR_LITERAL(1, 175, 203, 13, 190, 221, 208, 89)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__5_value),LEAN_SCALAR_PTR_LITERAL(219, 111, 107, 74, 125, 186, 73, 31)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "e"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__7 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__7_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__7_value),LEAN_SCALAR_PTR_LITERAL(26, 154, 90, 102, 217, 192, 49, 255)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__9 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__9_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__5_value),LEAN_SCALAR_PTR_LITERAL(57, 223, 221, 59, 39, 25, 212, 154)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "And"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__11 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__11_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__11_value),LEAN_SCALAR_PTR_LITERAL(49, 220, 212, 156, 122, 214, 55, 135)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(58, 46, 244, 208, 18, 71, 77, 162)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "entails_true"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__13 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__13_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "true"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__14 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__14_value; +uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t); +static uint64_t l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "entails_false"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__16 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__16_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "ExceptConds"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "false"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__18 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__18_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17_value),LEAN_SCALAR_PTR_LITERAL(244, 224, 84, 66, 133, 22, 35, 247)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__18_value),LEAN_SCALAR_PTR_LITERAL(155, 33, 255, 249, 3, 79, 124, 43)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "refl"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__20 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__20_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17_value),LEAN_SCALAR_PTR_LITERAL(244, 224, 84, 66, 133, 22, 35, 247)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(72, 205, 41, 157, 129, 142, 231, 99)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__20_value),LEAN_SCALAR_PTR_LITERAL(27, 17, 159, 44, 239, 63, 224, 32)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__6_value),LEAN_SCALAR_PTR_LITERAL(78, 21, 103, 131, 118, 13, 187, 164)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(177, 152, 123, 219, 220, 182, 189, 250)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23; +lean_object* l_Lean_Meta_Context_config(lean_object*); +uint64_t l_Lean_Meta_Context_configKey(lean_object*); +uint64_t lean_uint64_shift_right(uint64_t, uint64_t); +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_shift_left(uint64_t, uint64_t); +uint64_t lean_uint64_lor(uint64_t, uint64_t); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__1___boxed(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "PostCond"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__1_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__1_value),LEAN_SCALAR_PTR_LITERAL(124, 92, 27, 8, 188, 224, 25, 47)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(32, 111, 255, 27, 103, 9, 244, 9)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "post"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__3_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__3_value),LEAN_SCALAR_PTR_LITERAL(155, 28, 93, 107, 152, 77, 110, 29)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4_value; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "r"}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__5 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__5_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__5_value),LEAN_SCALAR_PTR_LITERAL(201, 206, 29, 183, 206, 15, 98, 41)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__6 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__6_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__1___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__6_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__7 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__7_value; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__1_value),LEAN_SCALAR_PTR_LITERAL(124, 92, 27, 8, 188, 224, 25, 47)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(32, 111, 255, 27, 103, 9, 244, 9)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__20_value),LEAN_SCALAR_PTR_LITERAL(147, 34, 72, 188, 117, 15, 62, 134)}}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8_value; +lean_object* l_Lean_Expr_fvarId_x3f(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21(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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___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 const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 33, .m_capacity = 33, .m_length = 32, .m_data = "target not a Triple application "}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__0_value; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1; +static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Triple"}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__2_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value_aux_1),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__2_value),LEAN_SCALAR_PTR_LITERAL(31, 48, 165, 224, 255, 99, 7, 166)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_1),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(48, 249, 197, 27, 172, 11, 117, 203)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value_aux_2),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__1_value),LEAN_SCALAR_PTR_LITERAL(196, 51, 114, 249, 35, 73, 112, 164)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "mono"}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__5_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_1),((lean_object*)&l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(48, 249, 197, 27, 172, 11, 117, 203)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__5_value),LEAN_SCALAR_PTR_LITERAL(127, 147, 73, 155, 25, 24, 176, 27)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2_value),LEAN_SCALAR_PTR_LITERAL(86, 181, 97, 38, 147, 213, 38, 7)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value_aux_3),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__3_value),LEAN_SCALAR_PTR_LITERAL(240, 139, 153, 166, 125, 35, 90, 29)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "pre"}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__8 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__8_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__8_value),LEAN_SCALAR_PTR_LITERAL(234, 68, 201, 77, 117, 184, 192, 140)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9_value; uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8(lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8(lean_object*, lean_object*, 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 42, .m_capacity = 42, .m_length = 41, .m_data = "target not a PredTrans.apply application "}; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__0_value; -static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 42, .m_capacity = 42, .m_length = 41, .m_data = "target not a PredTrans.apply application "}; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__0_value; +static lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1; lean_object* l_Lean_Expr_constName_x21(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___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 const lean_closure_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___closed__0_value; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___boxed(lean_object*); +static const lean_closure_object l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___closed__0_value; lean_object* l_Lean_Expr_getNumHeadLambdas(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__14(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ","}; -static const lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__0 = (const lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__0_value; -static const lean_ctor_object l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 3}, .m_objs = {((lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__0_value)}}; -static const lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__1 = (const lean_object*)&l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__1_value; -static lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2; -static lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3; -lean_object* l_Lean_MessageData_paren(lean_object*); -LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0; -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1; -static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___closed__0 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___closed__0_value; -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0(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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "adding "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__0_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "SpecProof.global "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__2_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.local "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__4_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.stx _ "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__6 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__6_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = " "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__8 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__8_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__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_mkFVar(lean_object*); +lean_object* l_Lean_MessageData_ofSyntax(lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__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*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___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_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___boxed, .m_arity = 9, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___closed__0_value; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_PersistentArray_append___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__2(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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__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* l_Lean_replaceRef(lean_object*, lean_object*); +lean_object* l_Lean_PersistentArray_toArray___redArg(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29(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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___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_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31___boxed(lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 54, .m_capacity = 54, .m_length = 53, .m_data = ""}; +static const lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__0 = (const lean_object*)&l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__0_value; +static lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1; +static double l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__2; +extern lean_object* l_Lean_trace_profiler; +double lean_float_sub(double, double); +uint8_t lean_float_decLt(double, double); +extern lean_object* l_Lean_trace_profiler_useHeartbeats; +extern lean_object* l_Lean_trace_profiler_threshold; +double lean_float_div(double, double); +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(lean_object*, uint8_t, 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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___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_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___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_expr_instantiate1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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 const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "imp"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__0_value),LEAN_SCALAR_PTR_LITERAL(254, 180, 127, 119, 35, 232, 80, 131)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1_value; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 42, .m_capacity = 42, .m_length = 41, .m_data = "Target not an implication or let-binding "}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2_value; +static lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3; +static const lean_string_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "Intro"}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4_value; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1_value),LEAN_SCALAR_PTR_LITERAL(48, 144, 193, 124, 159, 137, 91, 218)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 110, 135, 113, 195, 226, 80, 101)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_1),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__0_value),LEAN_SCALAR_PTR_LITERAL(162, 48, 62, 20, 172, 253, 5, 185)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(167, 48, 44, 122, 88, 53, 63, 251)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_4 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_3),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4_value),LEAN_SCALAR_PTR_LITERAL(121, 124, 66, 100, 237, 121, 142, 93)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value_aux_4),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__7_value),LEAN_SCALAR_PTR_LITERAL(162, 53, 195, 0, 35, 253, 177, 163)}}; +static const lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5_value; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_reduceProjBeta_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__0_value; static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__1___boxed, .m_arity = 10, .m_num_fixed = 0, .m_objs = {} }; @@ -1468,33 +1499,35 @@ static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tac static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 23, .m_capacity = 23, .m_length = 22, .m_data = "Unassigned specHoles: "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 48, .m_capacity = 48, .m_length = 47, .m_data = "Tried to assign already assigned metavariable `"}; -static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__0 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__0_value; -static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1; -static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "`. MVar: "}; -static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__2 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__2_value; -static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3; -static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "\nAssignment: "}; -static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__4 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__4_value; -static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5; -static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "\nNew assignment: "}; -static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__6 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__6_value; -static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7; -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 48, .m_capacity = 48, .m_length = 47, .m_data = "Tried to assign already assigned metavariable `"}; +static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__0 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__0_value; +static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1; +static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "`. MVar: "}; +static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__2 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__2_value; +static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3; +static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "\nAssignment: "}; +static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__4 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__4_value; +static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5; +static const lean_string_object l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "\nNew assignment: "}; +static const lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__6 = (const lean_object*)&l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__6_value; +static lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7; +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_addSubGoalAsVC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2; static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 23, .m_capacity = 23, .m_length = 22, .m_data = "Simplified program to "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1; lean_object* l_Lean_Meta_Simp_simp___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_burnOne___redArg(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 25, .m_capacity = 25, .m_length = 24, .m_data = "Failed to find spec for "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__3_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__4; @@ -1504,24 +1537,12 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "Candidate spec for "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__7 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__7_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "SpecProof.global "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.local "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__11 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__11_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.stx _ "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__13 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__13_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14; -static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = " "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__15 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__15_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16; static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__0___boxed, .m_arity = 8, .m_num_fixed = 0, .m_objs = {} }; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0_value; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__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*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40(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, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(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_object*, uint8_t, 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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__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*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42(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, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(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*, uint8_t, 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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed(lean_object**); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "joinPrf"}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__1_value; @@ -1529,7 +1550,7 @@ static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2_value; static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__5___boxed, .m_arity = 9, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__2_value)} }; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3_value; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 31, .m_capacity = 31, .m_length = 30, .m_data = "`rwMatcher` failed to rewrite "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1; @@ -1545,14 +1566,14 @@ static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 29, .m_capacity = 29, .m_length = 28, .m_data = ". This is a bug in `mvcgen`."}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__8 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__8_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__9; -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___boxed(lean_object**); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___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_object*, lean_object*); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "split match: "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1; lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed(lean_object**); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 33, .m_capacity = 33, .m_length = 32, .m_data = "Encountered dependent motive of "}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__4_value; @@ -1567,83 +1588,85 @@ static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_El static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__10_value; static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11; lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_resTy(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(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_Elab_Tactic_Do_isJP(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed(lean_object**); -static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "Call site of "}; -static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__17 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__17_value; -static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___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_object*, lean_object*); +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "Call site of "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10; lean_object* l_Lean_Exception_toMessageData(lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); -lean_object* l_Lean_mkFVar(lean_object*); -lean_object* l_Lean_MessageData_ofSyntax(lean_object*); lean_object* l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(lean_object*, lean_object*, lean_object*, lean_object*, 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*); static double l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___closed__0; lean_object* l_Lean_Expr_headBeta(lean_object*); lean_object* l_Lean_Expr_getAppFn_x27(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___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_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___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_object* l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); uint8_t l_Lean_Expr_isLet(lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars___boxed(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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___boxed(lean_object**); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___boxed(lean_object**); -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___boxed(lean_object**); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___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_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___boxed(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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___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_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___boxed(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_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___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_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___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_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24(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_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___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_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___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_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49(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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___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 uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14(lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___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_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54(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*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___boxed(lean_object**); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___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_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___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_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___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_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___boxed(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_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16(lean_object*, lean_object*, uint8_t, 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_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___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_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___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_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25(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_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0(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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___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_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___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_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51(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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___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___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55(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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___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 uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52(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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___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_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56(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*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___boxed(lean_object**); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1697,14 +1720,14 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_e LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = "invariantDotAlt"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__0_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__0_value),LEAN_SCALAR_PTR_LITERAL(174, 218, 225, 197, 89, 244, 133, 64)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__1_value; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "cdotTk"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__2 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__2_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3_value_aux_0),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__2_value),LEAN_SCALAR_PTR_LITERAL(117, 126, 44, 217, 38, 3, 69, 145)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__3_value; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__4___redArg___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "patternIgnore"}; @@ -1762,8 +1785,8 @@ static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tacti static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__1; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "invariantCaseAlt"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__2 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__2_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__2_value),LEAN_SCALAR_PTR_LITERAL(163, 146, 32, 128, 83, 151, 179, 6)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__3_value; @@ -1772,8 +1795,8 @@ static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tacti static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__5; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "caseArg"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__6 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__6_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__6_value),LEAN_SCALAR_PTR_LITERAL(151, 119, 254, 229, 232, 21, 225, 201)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__7_value; @@ -1785,8 +1808,8 @@ static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tacti static lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__11; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "seq1"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__12 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__12_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__12_value),LEAN_SCALAR_PTR_LITERAL(242, 140, 137, 56, 141, 11, 143, 117)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__13_value; @@ -1796,8 +1819,8 @@ static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_T static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__15 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__15_value; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "renameI"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__16 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__16_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__16_value),LEAN_SCALAR_PTR_LITERAL(20, 41, 101, 89, 107, 117, 242, 244)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__17_value; @@ -1809,8 +1832,8 @@ static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__20 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__20_value; static const lean_string_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "exact"}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__21 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__21_value; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value_aux_2),((lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__21_value),LEAN_SCALAR_PTR_LITERAL(108, 106, 111, 83, 219, 207, 32, 208)}}; static const lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__9___redArg___closed__22_value; @@ -1840,8 +1863,8 @@ LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__5___redArg___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*); static const lean_string_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "invariantAlts"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__0_value),LEAN_SCALAR_PTR_LITERAL(30, 41, 254, 250, 50, 69, 99, 10)}}; static const lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__1_value; @@ -1850,8 +1873,8 @@ static const lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__2 = (co static lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__3; static const lean_string_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "invariantsKW"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__4 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__4_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__4_value),LEAN_SCALAR_PTR_LITERAL(113, 87, 251, 76, 123, 116, 93, 232)}}; static const lean_object* l_Lean_Elab_Tactic_Do_elabInvariants___closed__5 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabInvariants___closed__5_value; @@ -1894,8 +1917,8 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00L LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__7_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "case"}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__0_value; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value_aux_2),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__0_value),LEAN_SCALAR_PTR_LITERAL(216, 244, 120, 128, 139, 198, 139, 51)}}; static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_patchVCAltIntoCaseTactic___closed__1_value; @@ -1919,8 +1942,8 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_elabVCs_evalAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_Lean_Elab_Tactic_Do_elabVCs___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "vcAlts"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabVCs___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__0_value),LEAN_SCALAR_PTR_LITERAL(221, 11, 218, 136, 13, 239, 233, 239)}}; static const lean_object* l_Lean_Elab_Tactic_Do_elabVCs___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabVCs___closed__1_value; @@ -2018,14 +2041,14 @@ LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___00Lean_Elab_Tactic_Do_elabMV LEAN_EXPORT lean_object* l_Lean_logWarningAt___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "mvcgen"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(46, 16, 249, 94, 239, 227, 109, 158)}}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__1_value; static const lean_string_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "elabMVCGen"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__0_value),LEAN_SCALAR_PTR_LITERAL(52, 247, 248, 201, 92, 23, 188, 159)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(161, 230, 229, 85, 182, 144, 182, 176)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGen___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGen__1___closed__3_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(101, 141, 64, 183, 187, 157, 254, 157)}}; @@ -2052,14 +2075,14 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint(lean_object*, lean LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static const lean_string_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "mvcgenHint"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__0 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__0_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(141, 105, 143, 226, 126, 5, 243, 226)}}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__1_value; static const lean_string_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 15, .m_capacity = 15, .m_length = 14, .m_data = "elabMVCGenHint"}; static const lean_object* l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__2 = (const lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__2_value; -static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_0),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__0_value),LEAN_SCALAR_PTR_LITERAL(52, 247, 248, 201, 92, 23, 188, 159)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_1),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__1_value),LEAN_SCALAR_PTR_LITERAL(161, 230, 229, 85, 182, 144, 182, 176)}}; static const lean_ctor_object l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_3 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Elab_Tactic_Do_elabMVCGenHint___regBuiltin_Lean_Elab_Tactic_Do_elabMVCGenHint__1___closed__3_value_aux_2),((lean_object*)&l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2_value),LEAN_SCALAR_PTR_LITERAL(101, 141, 64, 183, 187, 157, 254, 157)}}; @@ -4350,41 +4373,41 @@ x_69 = lean_box(x_2); x_70 = lean_box(x_67); x_71 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__11___boxed), 13, 5); lean_closure_set(x_71, 0, x_3); -lean_closure_set(x_71, 1, x_63); +lean_closure_set(x_71, 1, x_62); lean_closure_set(x_71, 2, x_68); lean_closure_set(x_71, 3, x_69); lean_closure_set(x_71, 4, x_70); -lean_inc(x_64); -lean_inc_ref(x_59); -lean_inc(x_58); -lean_inc_ref(x_60); +lean_inc(x_63); +lean_inc_ref(x_61); +lean_inc(x_59); +lean_inc_ref(x_65); lean_inc_ref(x_57); -x_72 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_71, x_57, x_65, x_60, x_58, x_59, x_64); +x_72 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_71, x_57, x_64, x_65, x_59, x_61, x_63); if (lean_obj_tag(x_72) == 0) { lean_object* x_73; x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); lean_dec_ref(x_72); -x_22 = x_61; +x_22 = x_60; x_23 = x_73; x_24 = x_57; -x_25 = x_65; -x_26 = x_60; -x_27 = x_58; -x_28 = x_59; -x_29 = x_64; +x_25 = x_64; +x_26 = x_65; +x_27 = x_59; +x_28 = x_61; +x_29 = x_63; x_30 = lean_box(0); goto block_56; } else { uint8_t x_74; -lean_dec(x_64); +lean_dec_ref(x_65); +lean_dec(x_63); lean_dec_ref(x_61); lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec(x_58); +lean_dec(x_59); lean_dec_ref(x_57); lean_dec_ref(x_13); x_74 = !lean_is_exclusive(x_72); @@ -4420,15 +4443,15 @@ if (x_93 == 0) lean_dec_ref(x_90); lean_dec(x_6); lean_dec(x_4); -x_57 = x_83; -x_58 = x_81; -x_59 = x_78; -x_60 = x_80; -x_61 = x_85; -x_62 = lean_box(0); -x_63 = x_84; -x_64 = x_79; -x_65 = x_82; +x_57 = x_78; +x_58 = lean_box(0); +x_59 = x_80; +x_60 = x_85; +x_61 = x_81; +x_62 = x_84; +x_63 = x_82; +x_64 = x_83; +x_65 = x_79; x_66 = x_93; goto block_77; } @@ -4441,15 +4464,15 @@ if (x_94 == 0) { lean_dec(x_6); lean_dec(x_4); -x_57 = x_83; -x_58 = x_81; -x_59 = x_78; -x_60 = x_80; -x_61 = x_85; -x_62 = lean_box(0); -x_63 = x_84; -x_64 = x_79; -x_65 = x_82; +x_57 = x_78; +x_58 = lean_box(0); +x_59 = x_80; +x_60 = x_85; +x_61 = x_81; +x_62 = x_84; +x_63 = x_82; +x_64 = x_83; +x_65 = x_79; x_66 = x_94; goto block_77; } @@ -4463,12 +4486,12 @@ x_97 = l_Lean_mkConst(x_96, x_4); x_98 = l_Lean_mkLambda(x_6, x_95, x_97, x_84); x_22 = x_85; x_23 = x_98; -x_24 = x_83; -x_25 = x_82; -x_26 = x_80; -x_27 = x_81; -x_28 = x_78; -x_29 = x_79; +x_24 = x_78; +x_25 = x_83; +x_26 = x_79; +x_27 = x_80; +x_28 = x_81; +x_29 = x_82; x_30 = lean_box(0); goto block_56; } @@ -4534,12 +4557,12 @@ lean_dec(x_7); if (x_121 == 0) { lean_dec_ref(x_10); -x_78 = x_104; -x_79 = x_105; -x_80 = x_102; -x_81 = x_103; -x_82 = x_101; -x_83 = x_100; +x_78 = x_100; +x_79 = x_102; +x_80 = x_103; +x_81 = x_104; +x_82 = x_105; +x_83 = x_101; x_84 = x_119; x_85 = x_116; x_86 = lean_box(0); @@ -4576,12 +4599,12 @@ lean_inc(x_128); x_129 = lean_ctor_get(x_127, 1); lean_inc(x_129); lean_dec(x_127); -x_78 = x_104; -x_79 = x_105; -x_80 = x_102; -x_81 = x_103; -x_82 = x_101; -x_83 = x_100; +x_78 = x_100; +x_79 = x_102; +x_80 = x_103; +x_81 = x_104; +x_82 = x_105; +x_83 = x_101; x_84 = x_128; x_85 = x_129; x_86 = lean_box(0); @@ -6370,8 +6393,8 @@ lean_inc_ref(x_70); lean_inc(x_69); lean_inc_ref(x_68); lean_inc_ref(x_66); -lean_inc(x_65); -x_75 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_65, x_66, x_67, x_68, x_69, x_70, x_71); +lean_inc(x_64); +x_75 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_64, x_66, x_67, x_68, x_69, x_70, x_71); if (lean_obj_tag(x_75) == 0) { lean_object* x_76; lean_object* x_77; uint8_t x_78; @@ -6385,8 +6408,8 @@ x_78 = lean_unbox(x_76); lean_dec(x_76); if (x_78 == 0) { -lean_dec(x_65); -lean_dec_ref(x_64); +lean_dec_ref(x_65); +lean_dec(x_64); x_35 = x_77; x_36 = x_66; x_37 = x_67; @@ -6405,7 +6428,7 @@ lean_inc_ref(x_70); lean_inc(x_69); lean_inc_ref(x_68); lean_inc_ref(x_66); -x_79 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_66, x_67, x_68, x_69, x_70, x_71); +x_79 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_66, x_67, x_68, x_69, x_70, x_71); if (lean_obj_tag(x_79) == 0) { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; @@ -6422,7 +6445,7 @@ lean_inc_ref(x_70); lean_inc(x_69); lean_inc_ref(x_68); lean_inc_ref(x_66); -x_84 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_65, x_83, x_66, x_67, x_68, x_69, x_70, x_71); +x_84 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_64, x_83, x_66, x_67, x_68, x_69, x_70, x_71); if (lean_obj_tag(x_84) == 0) { lean_dec_ref(x_84); @@ -6479,7 +6502,7 @@ lean_dec(x_69); lean_dec_ref(x_68); lean_dec(x_67); lean_dec_ref(x_66); -lean_dec(x_65); +lean_dec(x_64); lean_dec_ref(x_34); lean_dec_ref(x_30); lean_dec_ref(x_14); @@ -6501,8 +6524,8 @@ lean_dec(x_69); lean_dec_ref(x_68); lean_dec(x_67); lean_dec_ref(x_66); -lean_dec(x_65); -lean_dec_ref(x_64); +lean_dec_ref(x_65); +lean_dec(x_64); lean_dec_ref(x_62); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6537,8 +6560,8 @@ lean_dec(x_69); lean_dec_ref(x_68); lean_dec(x_67); lean_dec_ref(x_66); -lean_dec(x_65); -lean_dec_ref(x_64); +lean_dec_ref(x_65); +lean_dec(x_64); lean_dec_ref(x_62); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6590,7 +6613,7 @@ lean_inc(x_104); lean_inc_ref(x_103); lean_inc(x_102); lean_inc_ref(x_101); -x_112 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_110, x_108, x_99, x_111, x_111, x_101, x_102, x_103, x_104, x_105, x_106); +x_112 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_110, x_108, x_100, x_111, x_111, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_112) == 0) { lean_object* x_113; uint8_t x_114; @@ -6641,8 +6664,8 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_123 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_100, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_123 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_99, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_123) == 0) { lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; @@ -6666,8 +6689,8 @@ lean_free_object(x_113); lean_dec(x_115); x_62 = x_127; x_63 = x_126; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -6723,15 +6746,15 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_143 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_100, x_142, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_143 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_99, x_142, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_143) == 0) { lean_dec_ref(x_143); x_62 = x_127; x_63 = x_126; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -6752,7 +6775,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6791,7 +6814,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6817,7 +6840,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6850,7 +6873,7 @@ else lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_dec(x_116); lean_dec(x_115); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6886,7 +6909,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6912,7 +6935,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -6986,8 +7009,8 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_166 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_100, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_166 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_99, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_166) == 0) { lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; @@ -7010,8 +7033,8 @@ lean_dec_ref(x_168); lean_dec(x_158); x_62 = x_170; x_63 = x_169; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -7067,15 +7090,15 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_187 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_100, x_186, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_187 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_99, x_186, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_187) == 0) { lean_dec_ref(x_187); x_62 = x_170; x_63 = x_169; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -7096,7 +7119,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7135,7 +7158,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7160,7 +7183,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7194,7 +7217,7 @@ else lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_dec(x_159); lean_dec(x_158); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7229,7 +7252,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7254,7 +7277,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7293,7 +7316,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7337,7 +7360,7 @@ lean_inc(x_104); lean_inc_ref(x_103); lean_inc(x_102); lean_inc_ref(x_101); -x_209 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_206, x_207, x_99, x_208, x_208, x_101, x_102, x_103, x_104, x_105, x_106); +x_209 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_206, x_207, x_100, x_208, x_208, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_209) == 0) { lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; @@ -7394,8 +7417,8 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_220 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_100, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_220 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_99, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_220) == 0) { lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; @@ -7419,8 +7442,8 @@ lean_dec(x_213); lean_dec(x_211); x_62 = x_224; x_63 = x_223; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -7481,15 +7504,15 @@ lean_inc_ref(x_105); lean_inc(x_104); lean_inc_ref(x_103); lean_inc_ref(x_101); -lean_inc(x_100); -x_241 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_100, x_240, x_101, x_102, x_103, x_104, x_105, x_106); +lean_inc(x_99); +x_241 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_99, x_240, x_101, x_102, x_103, x_104, x_105, x_106); if (lean_obj_tag(x_241) == 0) { lean_dec_ref(x_241); x_62 = x_224; x_63 = x_223; -x_64 = x_97; -x_65 = x_100; +x_64 = x_99; +x_65 = x_97; x_66 = x_101; x_67 = x_102; x_68 = x_103; @@ -7510,7 +7533,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7550,7 +7573,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7576,7 +7599,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7610,7 +7633,7 @@ else lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_dec(x_212); lean_dec(x_211); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7651,7 +7674,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7677,7 +7700,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7715,7 +7738,7 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7754,8 +7777,8 @@ lean_dec(x_104); lean_dec_ref(x_103); lean_dec(x_102); lean_dec_ref(x_101); -lean_dec(x_100); -lean_dec_ref(x_99); +lean_dec_ref(x_100); +lean_dec(x_99); lean_dec_ref(x_97); lean_dec_ref(x_34); lean_dec_ref(x_30); @@ -7825,8 +7848,8 @@ lean_dec(x_267); if (x_276 == 0) { lean_dec_ref(x_272); -x_99 = x_275; -x_100 = x_265; +x_99 = x_265; +x_100 = x_275; x_101 = x_15; x_102 = x_16; x_103 = x_17; @@ -7868,8 +7891,8 @@ x_289 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Ela if (lean_obj_tag(x_289) == 0) { lean_dec_ref(x_289); -x_99 = x_275; -x_100 = x_265; +x_99 = x_265; +x_100 = x_275; x_101 = x_15; x_102 = x_16; x_103 = x_17; @@ -10206,12 +10229,12 @@ goto block_147; block_95: { lean_object* x_41; -lean_inc(x_36); -lean_inc_ref(x_38); -lean_inc(x_37); +lean_inc(x_35); +lean_inc_ref(x_36); +lean_inc(x_34); lean_inc_ref(x_39); -lean_inc_ref(x_35); -x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_31, x_35, x_33, x_39, x_37, x_38, x_36); +lean_inc_ref(x_38); +x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_38, x_37, x_39, x_34, x_36, x_35); if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; @@ -10222,7 +10245,7 @@ lean_inc_ref(x_40); x_43 = l_Lean_Elab_Tactic_Do_ProofMode_pushForallContextIntoHyps(x_40, x_42); lean_inc_ref(x_40); lean_inc(x_15); -x_44 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_15, x_40, x_43, x_34); +x_44 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_15, x_40, x_43, x_33); x_45 = !lean_is_exclusive(x_44); if (x_45 == 0) { @@ -10245,21 +10268,21 @@ lean_ctor_set(x_52, 0, x_15); lean_ctor_set(x_52, 1, x_40); lean_ctor_set(x_52, 2, x_46); lean_ctor_set(x_52, 3, x_51); -lean_inc(x_36); -lean_inc_ref(x_38); -lean_inc(x_37); +lean_inc(x_35); +lean_inc_ref(x_36); +lean_inc(x_34); lean_inc_ref(x_39); -lean_inc(x_33); -lean_inc_ref(x_35); -x_53 = lean_apply_8(x_4, x_52, x_35, x_33, x_39, x_37, x_38, x_36, lean_box(0)); +lean_inc(x_37); +lean_inc_ref(x_38); +x_53 = lean_apply_8(x_4, x_52, x_38, x_37, x_39, x_34, x_36, x_35, lean_box(0)); if (lean_obj_tag(x_53) == 0) { lean_object* x_54; lean_object* x_55; x_54 = lean_ctor_get(x_53, 0); lean_inc(x_54); lean_dec_ref(x_53); -x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_35, x_33, x_39, x_37, x_38, x_36); -lean_dec(x_33); +x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_31, x_38, x_37, x_39, x_34, x_36, x_35); +lean_dec(x_37); if (lean_obj_tag(x_55) == 0) { uint8_t x_56; @@ -10278,7 +10301,7 @@ x_61 = l_Lean_mkAppN(x_46, x_28); x_62 = l_Lean_mkAppN(x_47, x_28); x_63 = l_Lean_mkAppN(x_54, x_28); lean_dec_ref(x_28); -x_64 = l_Lean_mkApp8(x_60, x_16, x_57, x_17, x_61, x_18, x_30, x_62, x_63); +x_64 = l_Lean_mkApp8(x_60, x_16, x_57, x_17, x_61, x_18, x_29, x_62, x_63); lean_ctor_set(x_55, 0, x_64); return x_55; } @@ -10298,7 +10321,7 @@ x_69 = l_Lean_mkAppN(x_46, x_28); x_70 = l_Lean_mkAppN(x_47, x_28); x_71 = l_Lean_mkAppN(x_54, x_28); lean_dec_ref(x_28); -x_72 = l_Lean_mkApp8(x_68, x_16, x_65, x_17, x_69, x_18, x_30, x_70, x_71); +x_72 = l_Lean_mkApp8(x_68, x_16, x_65, x_17, x_69, x_18, x_29, x_70, x_71); x_73 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_73, 0, x_72); return x_73; @@ -10310,7 +10333,7 @@ lean_dec(x_54); lean_free_object(x_44); lean_dec(x_47); lean_dec(x_46); -lean_dec_ref(x_30); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec_ref(x_18); lean_dec_ref(x_17); @@ -10327,11 +10350,11 @@ lean_dec(x_46); lean_dec_ref(x_39); lean_dec_ref(x_38); lean_dec(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec_ref(x_30); +lean_dec_ref(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec_ref(x_31); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec_ref(x_18); lean_dec_ref(x_17); @@ -10364,21 +10387,21 @@ lean_ctor_set(x_80, 0, x_15); lean_ctor_set(x_80, 1, x_40); lean_ctor_set(x_80, 2, x_74); lean_ctor_set(x_80, 3, x_79); -lean_inc(x_36); -lean_inc_ref(x_38); -lean_inc(x_37); +lean_inc(x_35); +lean_inc_ref(x_36); +lean_inc(x_34); lean_inc_ref(x_39); -lean_inc(x_33); -lean_inc_ref(x_35); -x_81 = lean_apply_8(x_4, x_80, x_35, x_33, x_39, x_37, x_38, x_36, lean_box(0)); +lean_inc(x_37); +lean_inc_ref(x_38); +x_81 = lean_apply_8(x_4, x_80, x_38, x_37, x_39, x_34, x_36, x_35, lean_box(0)); if (lean_obj_tag(x_81) == 0) { lean_object* x_82; lean_object* x_83; x_82 = lean_ctor_get(x_81, 0); lean_inc(x_82); lean_dec_ref(x_81); -x_83 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_35, x_33, x_39, x_37, x_38, x_36); -lean_dec(x_33); +x_83 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_31, x_38, x_37, x_39, x_34, x_36, x_35); +lean_dec(x_37); if (lean_obj_tag(x_83) == 0) { 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; @@ -10401,7 +10424,7 @@ x_90 = l_Lean_mkAppN(x_74, x_28); x_91 = l_Lean_mkAppN(x_75, x_28); x_92 = l_Lean_mkAppN(x_82, x_28); lean_dec_ref(x_28); -x_93 = l_Lean_mkApp8(x_89, x_16, x_84, x_17, x_90, x_18, x_30, x_91, x_92); +x_93 = l_Lean_mkApp8(x_89, x_16, x_84, x_17, x_90, x_18, x_29, x_91, x_92); if (lean_is_scalar(x_85)) { x_94 = lean_alloc_ctor(0, 1, 0); } else { @@ -10415,7 +10438,7 @@ else lean_dec(x_82); lean_dec(x_75); lean_dec(x_74); -lean_dec_ref(x_30); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec_ref(x_18); lean_dec_ref(x_17); @@ -10431,11 +10454,11 @@ lean_dec(x_74); lean_dec_ref(x_39); lean_dec_ref(x_38); lean_dec(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec_ref(x_30); +lean_dec_ref(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec_ref(x_31); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec_ref(x_18); lean_dec_ref(x_17); @@ -10451,12 +10474,12 @@ lean_dec_ref(x_40); lean_dec_ref(x_39); lean_dec_ref(x_38); lean_dec(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); -lean_dec_ref(x_34); -lean_dec(x_33); -lean_dec_ref(x_32); -lean_dec_ref(x_30); +lean_dec_ref(x_36); +lean_dec(x_35); +lean_dec(x_34); +lean_dec_ref(x_33); +lean_dec_ref(x_31); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec_ref(x_25); lean_dec_ref(x_22); @@ -10571,16 +10594,16 @@ if (x_132 == 0) { lean_dec(x_111); lean_inc_ref(x_16); -x_29 = lean_box(0); -x_30 = x_129; -x_31 = x_130; -x_32 = x_131; -x_33 = x_99; -x_34 = x_120; -x_35 = x_98; -x_36 = x_103; -x_37 = x_101; -x_38 = x_102; +x_29 = x_129; +x_30 = lean_box(0); +x_31 = x_131; +x_32 = x_130; +x_33 = x_120; +x_34 = x_101; +x_35 = x_103; +x_36 = x_102; +x_37 = x_99; +x_38 = x_98; x_39 = x_100; x_40 = x_16; goto block_95; @@ -10593,16 +10616,16 @@ lean_inc_ref(x_16); lean_inc(x_15); x_134 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__25(x_15, x_111, x_133, x_106, x_16); lean_dec(x_111); -x_29 = lean_box(0); -x_30 = x_129; -x_31 = x_130; -x_32 = x_131; -x_33 = x_99; -x_34 = x_120; -x_35 = x_98; -x_36 = x_103; -x_37 = x_101; -x_38 = x_102; +x_29 = x_129; +x_30 = lean_box(0); +x_31 = x_131; +x_32 = x_130; +x_33 = x_120; +x_34 = x_101; +x_35 = x_103; +x_36 = x_102; +x_37 = x_99; +x_38 = x_98; x_39 = x_100; x_40 = x_134; goto block_95; @@ -13064,7 +13087,7 @@ x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lea return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(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) { _start: { lean_object* x_11; @@ -13072,19 +13095,19 @@ x_11 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_6, x_7, x_8, x_9, lean_box(0)); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___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_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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) { _start: { lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___boxed), 10, 3); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___boxed), 10, 3); lean_closure_set(x_11, 0, x_2); lean_closure_set(x_11, 1, x_4); lean_closure_set(x_11, 2, x_5); @@ -13116,33 +13139,33 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___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: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_3); -x_12 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_12; -x_12 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___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_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0(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) { _start: { lean_object* x_9; @@ -13150,19 +13173,19 @@ x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0___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) { _start: { lean_object* x_9; -x_9 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg(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) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___lam__0___boxed), 8, 3); +x_10 = lean_alloc_closure((void*)(l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___lam__0___boxed), 8, 3); lean_closure_set(x_10, 0, x_2); lean_closure_set(x_10, 1, x_3); lean_closure_set(x_10, 2, x_4); @@ -13192,27 +13215,27 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg___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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg___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) { _start: { lean_object* x_10; -x_10 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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_EXPORT lean_object* l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__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_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } @@ -13220,7 +13243,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact _start: { lean_object* x_10; -x_10 = l_Lean_MVarId_getTag(x_1, x_5, x_6, x_7, x_8); +x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8); return x_10; } } @@ -13243,7 +13266,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tact _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mStart(x_1, x_5, x_6, x_7, x_8); +x_10 = l_Lean_MVarId_getTag(x_1, x_5, x_6, x_7, x_8); return x_10; } } @@ -13252,13 +13275,36 @@ _start: { lean_object* x_10; x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mStart(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -13266,14 +13312,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -13285,1361 +13331,6 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_13; -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(x_1, x_2, x_3, x_4, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6___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) { -_start: -{ -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_4); -x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(x_1, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3___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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t 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) { -_start: -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___redArg___lam__0___boxed), 9, 3); -lean_closure_set(x_14, 0, x_4); -lean_closure_set(x_14, 1, x_7); -lean_closure_set(x_14, 2, x_8); -x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_box(0), x_1, x_2, x_3, x_14, x_5, x_6, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_15) == 0) -{ -return x_15; -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -return x_15; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg___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: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_5); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_throwError___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__26___redArg(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4___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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_13; -x_13 = l_Lean_Meta_mkLetFVars(x_1, x_2, x_3, x_3, x_4, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___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) { -_start: -{ -uint8_t x_13; uint8_t x_14; lean_object* x_15; -x_13 = lean_unbox(x_3); -x_14 = lean_unbox(x_4); -x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_1); -return x_15; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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) { -_start: -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_expr_instantiate1(x_1, x_6); -x_15 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_3); -lean_ctor_set(x_15, 2, x_4); -lean_ctor_set(x_15, 3, x_14); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -x_16 = lean_apply_8(x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, lean_box(0)); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; -x_19 = lean_array_push(x_18, x_6); -x_20 = 1; -x_21 = 1; -x_22 = lean_box(x_20); -x_23 = lean_box(x_21); -x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__0___boxed), 12, 4); -lean_closure_set(x_24, 0, x_19); -lean_closure_set(x_24, 1, x_17); -lean_closure_set(x_24, 2, x_22); -lean_closure_set(x_24, 3, x_23); -x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_8); -return x_25; -} -else -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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); -lean_dec_ref(x_1); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Core_mkFreshUserName(x_1, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(lean_object* x_1) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = lean_st_ref_get(x_1); -x_4 = lean_ctor_get(x_3, 2); -lean_inc_ref(x_4); -lean_dec(x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_4, 1); -x_8 = lean_st_ref_take(x_1); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_10 = lean_ctor_get(x_8, 2); -lean_dec(x_10); -lean_inc(x_7); -lean_inc(x_6); -x_11 = l_Lean_Name_num___override(x_6, x_7); -x_12 = lean_unsigned_to_nat(1u); -x_13 = lean_nat_add(x_7, x_12); -lean_dec(x_7); -lean_ctor_set(x_4, 1, x_13); -lean_ctor_set(x_8, 2, x_4); -x_14 = lean_st_ref_set(x_1, x_8); -x_15 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_15, 0, x_11); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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_16 = lean_ctor_get(x_8, 0); -x_17 = lean_ctor_get(x_8, 1); -x_18 = lean_ctor_get(x_8, 3); -x_19 = lean_ctor_get(x_8, 4); -x_20 = lean_ctor_get(x_8, 5); -x_21 = lean_ctor_get(x_8, 6); -x_22 = lean_ctor_get(x_8, 7); -x_23 = lean_ctor_get(x_8, 8); -lean_inc(x_23); -lean_inc(x_22); -lean_inc(x_21); -lean_inc(x_20); -lean_inc(x_19); -lean_inc(x_18); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_24 = l_Lean_Name_num___override(x_6, x_7); -x_25 = lean_unsigned_to_nat(1u); -x_26 = lean_nat_add(x_7, x_25); -lean_dec(x_7); -lean_ctor_set(x_4, 1, x_26); -x_27 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_27, 0, x_16); -lean_ctor_set(x_27, 1, x_17); -lean_ctor_set(x_27, 2, x_4); -lean_ctor_set(x_27, 3, x_18); -lean_ctor_set(x_27, 4, x_19); -lean_ctor_set(x_27, 5, x_20); -lean_ctor_set(x_27, 6, x_21); -lean_ctor_set(x_27, 7, x_22); -lean_ctor_set(x_27, 8, x_23); -x_28 = lean_st_ref_set(x_1, x_27); -x_29 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_29, 0, x_24); -return x_29; -} -} -else -{ -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; 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; lean_object* x_47; lean_object* x_48; -x_30 = lean_ctor_get(x_4, 0); -x_31 = lean_ctor_get(x_4, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_4); -x_32 = lean_st_ref_take(x_1); -x_33 = lean_ctor_get(x_32, 0); -lean_inc_ref(x_33); -x_34 = lean_ctor_get(x_32, 1); -lean_inc(x_34); -x_35 = lean_ctor_get(x_32, 3); -lean_inc_ref(x_35); -x_36 = lean_ctor_get(x_32, 4); -lean_inc_ref(x_36); -x_37 = lean_ctor_get(x_32, 5); -lean_inc_ref(x_37); -x_38 = lean_ctor_get(x_32, 6); -lean_inc_ref(x_38); -x_39 = lean_ctor_get(x_32, 7); -lean_inc_ref(x_39); -x_40 = lean_ctor_get(x_32, 8); -lean_inc_ref(x_40); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - lean_ctor_release(x_32, 1); - lean_ctor_release(x_32, 2); - lean_ctor_release(x_32, 3); - lean_ctor_release(x_32, 4); - lean_ctor_release(x_32, 5); - lean_ctor_release(x_32, 6); - lean_ctor_release(x_32, 7); - lean_ctor_release(x_32, 8); - x_41 = x_32; -} else { - lean_dec_ref(x_32); - x_41 = lean_box(0); -} -lean_inc(x_31); -lean_inc(x_30); -x_42 = l_Lean_Name_num___override(x_30, x_31); -x_43 = lean_unsigned_to_nat(1u); -x_44 = lean_nat_add(x_31, x_43); -lean_dec(x_31); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_30); -lean_ctor_set(x_45, 1, x_44); -if (lean_is_scalar(x_41)) { - x_46 = lean_alloc_ctor(0, 9, 0); -} else { - x_46 = x_41; -} -lean_ctor_set(x_46, 0, x_33); -lean_ctor_set(x_46, 1, x_34); -lean_ctor_set(x_46, 2, x_45); -lean_ctor_set(x_46, 3, x_35); -lean_ctor_set(x_46, 4, x_36); -lean_ctor_set(x_46, 5, x_37); -lean_ctor_set(x_46, 6, x_38); -lean_ctor_set(x_46, 7, x_39); -lean_ctor_set(x_46, 8, x_40); -x_47 = lean_st_ref_set(x_1, x_46); -x_48 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_48, 0, x_42); -return x_48; -} -} -} -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_1); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5(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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__7)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(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) { -_start: -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_1); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_12 = lean_ctor_get(x_1, 0); -x_13 = lean_ctor_get(x_1, 1); -x_14 = lean_ctor_get(x_1, 2); -x_15 = lean_ctor_get(x_1, 3); -x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1)); -x_17 = lean_unsigned_to_nat(3u); -x_18 = l_Lean_Expr_isAppOfArity(x_15, x_16, x_17); -if (x_18 == 0) -{ -lean_free_object(x_1); -if (lean_obj_tag(x_15) == 8) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_35; uint8_t x_36; -x_19 = lean_ctor_get(x_15, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_15, 1); -lean_inc_ref(x_20); -x_21 = lean_ctor_get(x_15, 2); -lean_inc_ref(x_21); -x_22 = lean_ctor_get(x_15, 3); -lean_inc_ref(x_22); -lean_dec_ref(x_15); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed), 13, 5); -lean_closure_set(x_23, 0, x_22); -lean_closure_set(x_23, 1, x_12); -lean_closure_set(x_23, 2, x_13); -lean_closure_set(x_23, 3, x_14); -lean_closure_set(x_23, 4, x_3); -x_35 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); -lean_inc(x_2); -x_36 = l_Lean_Syntax_isOfKind(x_2, x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -lean_dec(x_2); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2___boxed), 9, 1); -lean_closure_set(x_37, 0, x_19); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_37, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_38) == 0) -{ -lean_object* x_39; -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -lean_dec_ref(x_38); -x_24 = x_39; -x_25 = x_4; -x_26 = x_5; -x_27 = x_6; -x_28 = x_7; -x_29 = x_8; -x_30 = x_9; -x_31 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_40; -lean_dec_ref(x_23); -lean_dec_ref(x_21); -lean_dec_ref(x_20); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_40 = !lean_is_exclusive(x_38); -if (x_40 == 0) -{ -return x_38; -} -else -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_38, 0); -lean_inc(x_41); -lean_dec(x_38); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; -} -} -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_43 = lean_unsigned_to_nat(0u); -x_44 = l_Lean_Syntax_getArg(x_2, x_43); -lean_dec(x_2); -x_45 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6)); -lean_inc(x_44); -x_46 = l_Lean_Syntax_isOfKind(x_44, x_45); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; -lean_dec(x_44); -x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2___boxed), 9, 1); -lean_closure_set(x_47, 0, x_19); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_48 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_47, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -lean_dec_ref(x_48); -x_24 = x_49; -x_25 = x_4; -x_26 = x_5; -x_27 = x_6; -x_28 = x_7; -x_29 = x_8; -x_30 = x_9; -x_31 = lean_box(0); -goto block_34; -} -else -{ -uint8_t x_50; -lean_dec_ref(x_23); -lean_dec_ref(x_21); -lean_dec_ref(x_20); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_50 = !lean_is_exclusive(x_48); -if (x_50 == 0) -{ -return x_48; -} -else -{ -lean_object* x_51; lean_object* x_52; -x_51 = lean_ctor_get(x_48, 0); -lean_inc(x_51); -lean_dec(x_48); -x_52 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_52, 0, x_51); -return x_52; -} -} -} -else -{ -lean_object* x_53; -lean_dec(x_19); -x_53 = l_Lean_TSyntax_getId(x_44); -lean_dec(x_44); -x_24 = x_53; -x_25 = x_4; -x_26 = x_5; -x_27 = x_6; -x_28 = x_7; -x_29 = x_8; -x_30 = x_9; -x_31 = lean_box(0); -goto block_34; -} -} -block_34: -{ -uint8_t x_32; lean_object* x_33; -x_32 = 0; -x_33 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_24, x_20, x_21, x_23, x_18, x_32, x_25, x_26, x_27, x_28, x_29, x_30); -return x_33; -} -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_3); -lean_dec(x_2); -x_54 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8; -x_55 = l_Lean_MessageData_ofExpr(x_15); -x_56 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_57, 0, x_56); -x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_58; -} -} -else -{ -lean_object* x_59; lean_object* x_60; -x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3___boxed), 9, 1); -lean_closure_set(x_59, 0, x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_59, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_60) == 0) -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -lean_dec_ref(x_60); -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_61, 1); -lean_inc(x_63); -lean_dec(x_61); -x_64 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9)); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_65 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -lean_dec_ref(x_65); -x_67 = l_Lean_Expr_appFn_x21(x_15); -x_68 = l_Lean_Expr_appFn_x21(x_67); -x_69 = l_Lean_Expr_appArg_x21(x_68); -lean_dec_ref(x_68); -x_70 = l_Lean_Expr_appArg_x21(x_67); -lean_dec_ref(x_67); -x_71 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_71, 0, x_62); -lean_ctor_set(x_71, 1, x_66); -lean_ctor_set(x_71, 2, x_70); -x_72 = lean_box(x_18); -lean_inc_ref(x_71); -lean_inc_ref(x_69); -x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6___boxed), 12, 4); -lean_closure_set(x_73, 0, x_63); -lean_closure_set(x_73, 1, x_69); -lean_closure_set(x_73, 2, x_71); -lean_closure_set(x_73, 3, x_72); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_74) == 0) -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -lean_dec_ref(x_74); -x_75 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_71); -lean_inc_ref(x_75); -lean_inc_ref(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -x_76 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_12, x_13, x_14, x_75); -x_77 = !lean_is_exclusive(x_76); -if (x_77 == 0) -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_78 = lean_ctor_get(x_76, 0); -x_79 = lean_ctor_get(x_76, 1); -x_80 = l_Lean_Expr_appArg_x21(x_15); -lean_dec_ref(x_15); -lean_inc_ref(x_80); -lean_inc(x_78); -lean_inc(x_12); -lean_ctor_set(x_1, 3, x_80); -lean_ctor_set(x_1, 2, x_78); -x_81 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); -if (lean_obj_tag(x_81) == 0) -{ -uint8_t x_82; -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_83 = lean_ctor_get(x_81, 0); -x_84 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11)); -x_85 = lean_box(0); -lean_ctor_set_tag(x_76, 1); -lean_ctor_set(x_76, 1, x_85); -lean_ctor_set(x_76, 0, x_12); -x_86 = l_Lean_mkConst(x_84, x_76); -x_87 = l_Lean_mkApp7(x_86, x_69, x_78, x_14, x_75, x_80, x_79, x_83); -lean_ctor_set(x_81, 0, x_87); -return x_81; -} -else -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_88 = lean_ctor_get(x_81, 0); -lean_inc(x_88); -lean_dec(x_81); -x_89 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11)); -x_90 = lean_box(0); -lean_ctor_set_tag(x_76, 1); -lean_ctor_set(x_76, 1, x_90); -lean_ctor_set(x_76, 0, x_12); -x_91 = l_Lean_mkConst(x_89, x_76); -x_92 = l_Lean_mkApp7(x_91, x_69, x_78, x_14, x_75, x_80, x_79, x_88); -x_93 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_93, 0, x_92); -return x_93; -} -} -else -{ -lean_dec_ref(x_80); -lean_free_object(x_76); -lean_dec(x_79); -lean_dec(x_78); -lean_dec_ref(x_75); -lean_dec_ref(x_69); -lean_dec_ref(x_14); -lean_dec(x_12); -return x_81; -} -} -else -{ -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_94 = lean_ctor_get(x_76, 0); -x_95 = lean_ctor_get(x_76, 1); -lean_inc(x_95); -lean_inc(x_94); -lean_dec(x_76); -x_96 = l_Lean_Expr_appArg_x21(x_15); -lean_dec_ref(x_15); -lean_inc_ref(x_96); -lean_inc(x_94); -lean_inc(x_12); -lean_ctor_set(x_1, 3, x_96); -lean_ctor_set(x_1, 2, x_94); -x_97 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); -if (lean_obj_tag(x_97) == 0) -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -if (lean_is_exclusive(x_97)) { - lean_ctor_release(x_97, 0); - x_99 = x_97; -} else { - lean_dec_ref(x_97); - x_99 = lean_box(0); -} -x_100 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11)); -x_101 = lean_box(0); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_12); -lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_mkConst(x_100, x_102); -x_104 = l_Lean_mkApp7(x_103, x_69, x_94, x_14, x_75, x_96, x_95, x_98); -if (lean_is_scalar(x_99)) { - x_105 = lean_alloc_ctor(0, 1, 0); -} else { - x_105 = x_99; -} -lean_ctor_set(x_105, 0, x_104); -return x_105; -} -else -{ -lean_dec_ref(x_96); -lean_dec(x_95); -lean_dec(x_94); -lean_dec_ref(x_75); -lean_dec_ref(x_69); -lean_dec_ref(x_14); -lean_dec(x_12); -return x_97; -} -} -} -else -{ -uint8_t x_106; -lean_dec_ref(x_71); -lean_dec_ref(x_69); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_106 = !lean_is_exclusive(x_74); -if (x_106 == 0) -{ -return x_74; -} -else -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_74, 0); -lean_inc(x_107); -lean_dec(x_74); -x_108 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_108, 0, x_107); -return x_108; -} -} -} -else -{ -uint8_t x_109; -lean_dec(x_63); -lean_dec(x_62); -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_109 = !lean_is_exclusive(x_65); -if (x_109 == 0) -{ -return x_65; -} -else -{ -lean_object* x_110; lean_object* x_111; -x_110 = lean_ctor_get(x_65, 0); -lean_inc(x_110); -lean_dec(x_65); -x_111 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_111, 0, x_110); -return x_111; -} -} -} -else -{ -uint8_t x_112; -lean_free_object(x_1); -lean_dec_ref(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_112 = !lean_is_exclusive(x_60); -if (x_112 == 0) -{ -return x_60; -} -else -{ -lean_object* x_113; lean_object* x_114; -x_113 = lean_ctor_get(x_60, 0); -lean_inc(x_113); -lean_dec(x_60); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_113); -return x_114; -} -} -} -} -else -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; -x_115 = lean_ctor_get(x_1, 0); -x_116 = lean_ctor_get(x_1, 1); -x_117 = lean_ctor_get(x_1, 2); -x_118 = lean_ctor_get(x_1, 3); -lean_inc(x_118); -lean_inc(x_117); -lean_inc(x_116); -lean_inc(x_115); -lean_dec(x_1); -x_119 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1)); -x_120 = lean_unsigned_to_nat(3u); -x_121 = l_Lean_Expr_isAppOfArity(x_118, x_119, x_120); -if (x_121 == 0) -{ -if (lean_obj_tag(x_118) == 8) -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_138; uint8_t x_139; -x_122 = lean_ctor_get(x_118, 0); -lean_inc(x_122); -x_123 = lean_ctor_get(x_118, 1); -lean_inc_ref(x_123); -x_124 = lean_ctor_get(x_118, 2); -lean_inc_ref(x_124); -x_125 = lean_ctor_get(x_118, 3); -lean_inc_ref(x_125); -lean_dec_ref(x_118); -x_126 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__1___boxed), 13, 5); -lean_closure_set(x_126, 0, x_125); -lean_closure_set(x_126, 1, x_115); -lean_closure_set(x_126, 2, x_116); -lean_closure_set(x_126, 3, x_117); -lean_closure_set(x_126, 4, x_3); -x_138 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); -lean_inc(x_2); -x_139 = l_Lean_Syntax_isOfKind(x_2, x_138); -if (x_139 == 0) -{ -lean_object* x_140; lean_object* x_141; -lean_dec(x_2); -x_140 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2___boxed), 9, 1); -lean_closure_set(x_140, 0, x_122); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_141 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_140, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_141) == 0) -{ -lean_object* x_142; -x_142 = lean_ctor_get(x_141, 0); -lean_inc(x_142); -lean_dec_ref(x_141); -x_127 = x_142; -x_128 = x_4; -x_129 = x_5; -x_130 = x_6; -x_131 = x_7; -x_132 = x_8; -x_133 = x_9; -x_134 = lean_box(0); -goto block_137; -} -else -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -lean_dec_ref(x_126); -lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_143 = lean_ctor_get(x_141, 0); -lean_inc(x_143); -if (lean_is_exclusive(x_141)) { - lean_ctor_release(x_141, 0); - x_144 = x_141; -} else { - lean_dec_ref(x_141); - x_144 = lean_box(0); -} -if (lean_is_scalar(x_144)) { - x_145 = lean_alloc_ctor(1, 1, 0); -} else { - x_145 = x_144; -} -lean_ctor_set(x_145, 0, x_143); -return x_145; -} -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; -x_146 = lean_unsigned_to_nat(0u); -x_147 = l_Lean_Syntax_getArg(x_2, x_146); -lean_dec(x_2); -x_148 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6)); -lean_inc(x_147); -x_149 = l_Lean_Syntax_isOfKind(x_147, x_148); -if (x_149 == 0) -{ -lean_object* x_150; lean_object* x_151; -lean_dec(x_147); -x_150 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__2___boxed), 9, 1); -lean_closure_set(x_150, 0, x_122); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_151 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_150, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_151) == 0) -{ -lean_object* x_152; -x_152 = lean_ctor_get(x_151, 0); -lean_inc(x_152); -lean_dec_ref(x_151); -x_127 = x_152; -x_128 = x_4; -x_129 = x_5; -x_130 = x_6; -x_131 = x_7; -x_132 = x_8; -x_133 = x_9; -x_134 = lean_box(0); -goto block_137; -} -else -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; -lean_dec_ref(x_126); -lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_153 = lean_ctor_get(x_151, 0); -lean_inc(x_153); -if (lean_is_exclusive(x_151)) { - lean_ctor_release(x_151, 0); - x_154 = x_151; -} else { - lean_dec_ref(x_151); - x_154 = lean_box(0); -} -if (lean_is_scalar(x_154)) { - x_155 = lean_alloc_ctor(1, 1, 0); -} else { - x_155 = x_154; -} -lean_ctor_set(x_155, 0, x_153); -return x_155; -} -} -else -{ -lean_object* x_156; -lean_dec(x_122); -x_156 = l_Lean_TSyntax_getId(x_147); -lean_dec(x_147); -x_127 = x_156; -x_128 = x_4; -x_129 = x_5; -x_130 = x_6; -x_131 = x_7; -x_132 = x_8; -x_133 = x_9; -x_134 = lean_box(0); -goto block_137; -} -} -block_137: -{ -uint8_t x_135; lean_object* x_136; -x_135 = 0; -x_136 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_127, x_123, x_124, x_126, x_121, x_135, x_128, x_129, x_130, x_131, x_132, x_133); -return x_136; -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec(x_115); -lean_dec_ref(x_3); -lean_dec(x_2); -x_157 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8; -x_158 = l_Lean_MessageData_ofExpr(x_118); -x_159 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_159, 0, x_157); -lean_ctor_set(x_159, 1, x_158); -x_160 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4___boxed), 9, 1); -lean_closure_set(x_160, 0, x_159); -x_161 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_160, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_161; -} -} -else -{ -lean_object* x_162; lean_object* x_163; -x_162 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__3___boxed), 9, 1); -lean_closure_set(x_162, 0, x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_163 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_162, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_163) == 0) -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -lean_dec_ref(x_163); -x_165 = lean_ctor_get(x_164, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_164, 1); -lean_inc(x_166); -lean_dec(x_164); -x_167 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9)); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_168 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_167, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_168) == 0) -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_169 = lean_ctor_get(x_168, 0); -lean_inc(x_169); -lean_dec_ref(x_168); -x_170 = l_Lean_Expr_appFn_x21(x_118); -x_171 = l_Lean_Expr_appFn_x21(x_170); -x_172 = l_Lean_Expr_appArg_x21(x_171); -lean_dec_ref(x_171); -x_173 = l_Lean_Expr_appArg_x21(x_170); -lean_dec_ref(x_170); -x_174 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_174, 0, x_165); -lean_ctor_set(x_174, 1, x_169); -lean_ctor_set(x_174, 2, x_173); -x_175 = lean_box(x_121); -lean_inc_ref(x_174); -lean_inc_ref(x_172); -x_176 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__6___boxed), 12, 4); -lean_closure_set(x_176, 0, x_166); -lean_closure_set(x_176, 1, x_172); -lean_closure_set(x_176, 2, x_174); -lean_closure_set(x_176, 3, x_175); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_177 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_176, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_177) == 0) -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; -lean_dec_ref(x_177); -x_178 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_174); -lean_inc_ref(x_178); -lean_inc_ref(x_117); -lean_inc_ref(x_116); -lean_inc(x_115); -x_179 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_115, x_116, x_117, x_178); -x_180 = lean_ctor_get(x_179, 0); -lean_inc(x_180); -x_181 = lean_ctor_get(x_179, 1); -lean_inc(x_181); -if (lean_is_exclusive(x_179)) { - lean_ctor_release(x_179, 0); - lean_ctor_release(x_179, 1); - x_182 = x_179; -} else { - lean_dec_ref(x_179); - x_182 = lean_box(0); -} -x_183 = l_Lean_Expr_appArg_x21(x_118); -lean_dec_ref(x_118); -lean_inc_ref(x_183); -lean_inc(x_180); -lean_inc(x_115); -x_184 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_184, 0, x_115); -lean_ctor_set(x_184, 1, x_116); -lean_ctor_set(x_184, 2, x_180); -lean_ctor_set(x_184, 3, x_183); -x_185 = lean_apply_8(x_3, x_184, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); -if (lean_obj_tag(x_185) == 0) -{ -lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_186 = lean_ctor_get(x_185, 0); -lean_inc(x_186); -if (lean_is_exclusive(x_185)) { - lean_ctor_release(x_185, 0); - x_187 = x_185; -} else { - lean_dec_ref(x_185); - x_187 = lean_box(0); -} -x_188 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__11)); -x_189 = lean_box(0); -if (lean_is_scalar(x_182)) { - x_190 = lean_alloc_ctor(1, 2, 0); -} else { - x_190 = x_182; - lean_ctor_set_tag(x_190, 1); -} -lean_ctor_set(x_190, 0, x_115); -lean_ctor_set(x_190, 1, x_189); -x_191 = l_Lean_mkConst(x_188, x_190); -x_192 = l_Lean_mkApp7(x_191, x_172, x_180, x_117, x_178, x_183, x_181, x_186); -if (lean_is_scalar(x_187)) { - x_193 = lean_alloc_ctor(0, 1, 0); -} else { - x_193 = x_187; -} -lean_ctor_set(x_193, 0, x_192); -return x_193; -} -else -{ -lean_dec_ref(x_183); -lean_dec(x_182); -lean_dec(x_181); -lean_dec(x_180); -lean_dec_ref(x_178); -lean_dec_ref(x_172); -lean_dec_ref(x_117); -lean_dec(x_115); -return x_185; -} -} -else -{ -lean_object* x_194; lean_object* x_195; lean_object* x_196; -lean_dec_ref(x_174); -lean_dec_ref(x_172); -lean_dec_ref(x_118); -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec(x_115); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_194 = lean_ctor_get(x_177, 0); -lean_inc(x_194); -if (lean_is_exclusive(x_177)) { - lean_ctor_release(x_177, 0); - x_195 = x_177; -} else { - lean_dec_ref(x_177); - x_195 = lean_box(0); -} -if (lean_is_scalar(x_195)) { - x_196 = lean_alloc_ctor(1, 1, 0); -} else { - x_196 = x_195; -} -lean_ctor_set(x_196, 0, x_194); -return x_196; -} -} -else -{ -lean_object* x_197; lean_object* x_198; lean_object* x_199; -lean_dec(x_166); -lean_dec(x_165); -lean_dec_ref(x_118); -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec(x_115); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_197 = lean_ctor_get(x_168, 0); -lean_inc(x_197); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - x_198 = x_168; -} else { - lean_dec_ref(x_168); - x_198 = lean_box(0); -} -if (lean_is_scalar(x_198)) { - x_199 = lean_alloc_ctor(1, 1, 0); -} else { - x_199 = x_198; -} -lean_ctor_set(x_199, 0, x_197); -return x_199; -} -} -else -{ -lean_object* x_200; lean_object* x_201; lean_object* x_202; -lean_dec_ref(x_118); -lean_dec_ref(x_117); -lean_dec_ref(x_116); -lean_dec(x_115); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_200 = lean_ctor_get(x_163, 0); -lean_inc(x_200); -if (lean_is_exclusive(x_163)) { - lean_ctor_release(x_163, 0); - x_201 = x_163; -} else { - lean_dec_ref(x_163); - x_201 = lean_box(0); -} -if (lean_is_scalar(x_201)) { - x_202 = lean_alloc_ctor(1, 1, 0); -} else { - x_202 = x_201; -} -lean_ctor_set(x_202, 0, x_200); -return x_202; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___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_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4(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) { _start: { @@ -14780,1013 +13471,6 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(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) { -_start: -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_st_ref_get(x_7); -x_10 = lean_ctor_get(x_9, 4); -lean_inc_ref(x_10); -lean_dec(x_9); -x_11 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__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_12; uint8_t x_13; -x_12 = lean_st_ref_take(x_10); -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; uint8_t x_15; -x_14 = lean_ctor_get(x_12, 4); -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_16 = lean_ctor_get(x_14, 0); -lean_dec(x_16); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_1); -lean_ctor_set(x_17, 1, x_2); -x_18 = l_Lean_PersistentArray_push___redArg(x_3, x_17); -lean_ctor_set(x_14, 0, x_18); -x_19 = lean_st_ref_set(x_10, x_12); -x_20 = lean_box(0); -x_21 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_21, 0, x_20); -return x_21; -} -else -{ -uint64_t 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; -x_22 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); -lean_dec(x_14); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_2); -x_24 = l_Lean_PersistentArray_push___redArg(x_3, x_23); -x_25 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set_uint64(x_25, sizeof(void*)*1, x_22); -lean_ctor_set(x_12, 4, x_25); -x_26 = lean_st_ref_set(x_10, x_12); -x_27 = lean_box(0); -x_28 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_28, 0, x_27); -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; uint64_t 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; lean_object* x_45; lean_object* x_46; -x_29 = lean_ctor_get(x_12, 4); -x_30 = lean_ctor_get(x_12, 0); -x_31 = lean_ctor_get(x_12, 1); -x_32 = lean_ctor_get(x_12, 2); -x_33 = lean_ctor_get(x_12, 3); -x_34 = lean_ctor_get(x_12, 5); -x_35 = lean_ctor_get(x_12, 6); -x_36 = lean_ctor_get(x_12, 7); -x_37 = lean_ctor_get(x_12, 8); -lean_inc(x_37); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_inc(x_29); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_12); -x_38 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_39 = x_29; -} else { - lean_dec_ref(x_29); - x_39 = lean_box(0); -} -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_1); -lean_ctor_set(x_40, 1, x_2); -x_41 = l_Lean_PersistentArray_push___redArg(x_3, x_40); -if (lean_is_scalar(x_39)) { - x_42 = lean_alloc_ctor(0, 1, 8); -} else { - x_42 = x_39; -} -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set_uint64(x_42, sizeof(void*)*1, x_38); -x_43 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_43, 0, x_30); -lean_ctor_set(x_43, 1, x_31); -lean_ctor_set(x_43, 2, x_32); -lean_ctor_set(x_43, 3, x_33); -lean_ctor_set(x_43, 4, x_42); -lean_ctor_set(x_43, 5, x_34); -lean_ctor_set(x_43, 6, x_35); -lean_ctor_set(x_43, 7, x_36); -lean_ctor_set(x_43, 8, x_37); -x_44 = lean_st_ref_set(x_10, x_43); -x_45 = lean_box(0); -x_46 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_46, 0, x_45); -return x_46; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__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, lean_object* x_11) { -_start: -{ -lean_object* x_12; -x_12 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_ctor_get(x_5, 1); -lean_inc_ref(x_6); -lean_dec(x_5); -x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_array_uset(x_3, x_2, x_7); -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_11 = lean_array_uset(x_8, x_2, x_6); -x_2 = x_10; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27(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: -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_9); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_ctor_get(x_9, 5); -x_14 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0)); -x_15 = l_Lean_replaceRef(x_3, x_13); -lean_dec(x_13); -lean_ctor_set(x_9, 5, x_15); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_14, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -x_18 = lean_ctor_get(x_17, 0); -lean_inc_ref(x_18); -lean_dec(x_17); -x_19 = l_Lean_PersistentArray_toArray___redArg(x_18); -lean_dec_ref(x_18); -x_20 = lean_array_size(x_19); -x_21 = 0; -x_22 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34(x_20, x_21, x_19); -x_23 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_23, 0, x_2); -lean_ctor_set(x_23, 1, x_4); -lean_ctor_set(x_23, 2, x_22); -x_24 = lean_alloc_closure((void*)(l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_24, 0, x_23); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec_ref(x_25); -x_27 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__2___boxed), 11, 3); -lean_closure_set(x_27, 0, x_3); -lean_closure_set(x_27, 1, x_26); -lean_closure_set(x_27, 2, x_1); -x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_27, x_5, x_6, x_7, x_8, x_9, x_10); -return x_28; -} -else -{ -uint8_t x_29; -lean_dec_ref(x_9); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec_ref(x_1); -x_29 = !lean_is_exclusive(x_25); -if (x_29 == 0) -{ -return x_25; -} -else -{ -lean_object* x_30; lean_object* x_31; -x_30 = lean_ctor_get(x_25, 0); -lean_inc(x_30); -lean_dec(x_25); -x_31 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_31, 0, x_30); -return x_31; -} -} -} -else -{ -uint8_t x_32; -lean_dec_ref(x_9); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_32 = !lean_is_exclusive(x_16); -if (x_32 == 0) -{ -return x_16; -} -else -{ -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_16, 0); -lean_inc(x_33); -lean_dec(x_16); -x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_33); -return x_34; -} -} -} -else -{ -lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_35 = lean_ctor_get(x_9, 0); -x_36 = lean_ctor_get(x_9, 1); -x_37 = lean_ctor_get(x_9, 2); -x_38 = lean_ctor_get(x_9, 3); -x_39 = lean_ctor_get(x_9, 4); -x_40 = lean_ctor_get(x_9, 5); -x_41 = lean_ctor_get(x_9, 6); -x_42 = lean_ctor_get(x_9, 7); -x_43 = lean_ctor_get(x_9, 8); -x_44 = lean_ctor_get(x_9, 9); -x_45 = lean_ctor_get(x_9, 10); -x_46 = lean_ctor_get(x_9, 11); -x_47 = lean_ctor_get_uint8(x_9, sizeof(void*)*14); -x_48 = lean_ctor_get(x_9, 12); -x_49 = lean_ctor_get_uint8(x_9, sizeof(void*)*14 + 1); -x_50 = lean_ctor_get(x_9, 13); -lean_inc(x_50); -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_inc(x_39); -lean_inc(x_38); -lean_inc(x_37); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_9); -x_51 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0)); -x_52 = l_Lean_replaceRef(x_3, x_40); -lean_dec(x_40); -x_53 = lean_alloc_ctor(0, 14, 2); -lean_ctor_set(x_53, 0, x_35); -lean_ctor_set(x_53, 1, x_36); -lean_ctor_set(x_53, 2, x_37); -lean_ctor_set(x_53, 3, x_38); -lean_ctor_set(x_53, 4, x_39); -lean_ctor_set(x_53, 5, x_52); -lean_ctor_set(x_53, 6, x_41); -lean_ctor_set(x_53, 7, x_42); -lean_ctor_set(x_53, 8, x_43); -lean_ctor_set(x_53, 9, x_44); -lean_ctor_set(x_53, 10, x_45); -lean_ctor_set(x_53, 11, x_46); -lean_ctor_set(x_53, 12, x_48); -lean_ctor_set(x_53, 13, x_50); -lean_ctor_set_uint8(x_53, sizeof(void*)*14, x_47); -lean_ctor_set_uint8(x_53, sizeof(void*)*14 + 1, x_49); -lean_inc(x_10); -lean_inc_ref(x_53); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_5, x_6, x_7, x_8, x_53, x_10); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; size_t x_58; size_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -lean_dec_ref(x_54); -x_56 = lean_ctor_get(x_55, 0); -lean_inc_ref(x_56); -lean_dec(x_55); -x_57 = l_Lean_PersistentArray_toArray___redArg(x_56); -lean_dec_ref(x_56); -x_58 = lean_array_size(x_57); -x_59 = 0; -x_60 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27_spec__34(x_58, x_59, x_57); -x_61 = lean_alloc_ctor(9, 3, 0); -lean_ctor_set(x_61, 0, x_2); -lean_ctor_set(x_61, 1, x_4); -lean_ctor_set(x_61, 2, x_60); -x_62 = lean_alloc_closure((void*)(l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_62, 0, x_61); -lean_inc(x_10); -lean_inc_ref(x_53); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_63 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_62, x_5, x_6, x_7, x_8, x_53, x_10); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -lean_dec_ref(x_63); -x_65 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___lam__2___boxed), 11, 3); -lean_closure_set(x_65, 0, x_3); -lean_closure_set(x_65, 1, x_64); -lean_closure_set(x_65, 2, x_1); -x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_5, x_6, x_7, x_8, x_53, x_10); -return x_66; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -lean_dec_ref(x_53); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec_ref(x_1); -x_67 = lean_ctor_get(x_63, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_63)) { - lean_ctor_release(x_63, 0); - x_68 = x_63; -} else { - lean_dec_ref(x_63); - x_68 = lean_box(0); -} -if (lean_is_scalar(x_68)) { - x_69 = lean_alloc_ctor(1, 1, 0); -} else { - x_69 = x_68; -} -lean_ctor_set(x_69, 0, x_67); -return x_69; -} -} -else -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; -lean_dec_ref(x_53); -lean_dec(x_10); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_70 = lean_ctor_get(x_54, 0); -lean_inc(x_70); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - x_71 = x_54; -} else { - lean_dec_ref(x_54); - x_71 = lean_box(0); -} -if (lean_is_scalar(x_71)) { - x_72 = lean_alloc_ctor(1, 1, 0); -} else { - x_72 = x_71; -} -lean_ctor_set(x_72, 0, x_70); -return x_72; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = lean_ctor_get(x_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = lean_ctor_get(x_1, 0); -x_6 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_5, x_3); -if (lean_obj_tag(x_6) == 0) -{ -lean_inc(x_4); -return x_4; -} -else -{ -lean_object* x_7; -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -lean_dec_ref(x_6); -if (lean_obj_tag(x_7) == 3) -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -lean_dec_ref(x_7); -return x_8; -} -else -{ -lean_dec(x_7); -lean_inc(x_4); -return x_4; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29(x_1, x_2); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0(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) { -_start: -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_st_ref_take(x_8); -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; uint8_t x_13; -x_12 = lean_ctor_get(x_10, 4); -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_PersistentArray_append___redArg(x_1, x_14); -lean_dec_ref(x_14); -lean_ctor_set(x_12, 0, x_15); -x_16 = lean_st_ref_set(x_8, x_10); -x_17 = lean_box(0); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -else -{ -uint64_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_19 = lean_ctor_get_uint64(x_12, sizeof(void*)*1); -x_20 = lean_ctor_get(x_12, 0); -lean_inc(x_20); -lean_dec(x_12); -x_21 = l_Lean_PersistentArray_append___redArg(x_1, x_20); -lean_dec_ref(x_20); -x_22 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_19); -lean_ctor_set(x_10, 4, x_22); -x_23 = lean_st_ref_set(x_8, x_10); -x_24 = lean_box(0); -x_25 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_25, 0, x_24); -return x_25; -} -} -else -{ -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; lean_object* x_34; uint64_t x_35; 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; -x_26 = lean_ctor_get(x_10, 4); -x_27 = lean_ctor_get(x_10, 0); -x_28 = lean_ctor_get(x_10, 1); -x_29 = lean_ctor_get(x_10, 2); -x_30 = lean_ctor_get(x_10, 3); -x_31 = lean_ctor_get(x_10, 5); -x_32 = lean_ctor_get(x_10, 6); -x_33 = lean_ctor_get(x_10, 7); -x_34 = lean_ctor_get(x_10, 8); -lean_inc(x_34); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_26); -lean_inc(x_30); -lean_inc(x_29); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_10); -x_35 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_36 = lean_ctor_get(x_26, 0); -lean_inc_ref(x_36); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_37 = x_26; -} else { - lean_dec_ref(x_26); - x_37 = lean_box(0); -} -x_38 = l_Lean_PersistentArray_append___redArg(x_1, x_36); -lean_dec_ref(x_36); -if (lean_is_scalar(x_37)) { - x_39 = lean_alloc_ctor(0, 1, 8); -} else { - x_39 = x_37; -} -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set_uint64(x_39, sizeof(void*)*1, x_35); -x_40 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_40, 0, x_27); -lean_ctor_set(x_40, 1, x_28); -lean_ctor_set(x_40, 2, x_29); -lean_ctor_set(x_40, 3, x_30); -lean_ctor_set(x_40, 4, x_39); -lean_ctor_set(x_40, 5, x_31); -lean_ctor_set(x_40, 6, x_32); -lean_ctor_set(x_40, 7, x_33); -lean_ctor_set(x_40, 8, x_34); -x_41 = lean_st_ref_set(x_8, x_40); -x_42 = lean_box(0); -x_43 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_43, 0, x_42); -return x_43; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -lean_ctor_set_tag(x_1, 1); -return x_1; -} -else -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -x_5 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_5, 0, x_4); -return x_5; -} -} -else -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_1); -if (x_6 == 0) -{ -lean_ctor_set_tag(x_1, 0); -return x_1; -} -else -{ -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_8, 0, x_7); -return x_8; -} -} -} -} -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(x_1); -return x_3; -} -} -LEAN_EXPORT uint8_t l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = lean_ctor_get(x_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = lean_ctor_get(x_1, 0); -x_6 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_5, x_3); -if (lean_obj_tag(x_6) == 0) -{ -uint8_t x_7; -x_7 = lean_unbox(x_4); -return x_7; -} -else -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec_ref(x_6); -if (lean_obj_tag(x_8) == 1) -{ -uint8_t x_9; -x_9 = lean_ctor_get_uint8(x_8, 0); -lean_dec_ref(x_8); -return x_9; -} -else -{ -uint8_t x_10; -lean_dec(x_8); -x_10 = lean_unbox(x_4); -return x_10; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_1, x_2); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__0)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static double _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__2() { -_start: -{ -lean_object* x_1; double x_2; -x_1 = lean_unsigned_to_nat(1000u); -x_2 = lean_float_of_nat(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14) { -_start: -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_53; double x_60; -x_16 = lean_ctor_get(x_8, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_8, 1); -lean_inc(x_17); -lean_dec_ref(x_8); -x_34 = lean_ctor_get(x_17, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_17, 1); -lean_inc(x_35); -lean_dec(x_17); -lean_inc_ref(x_6); -x_36 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_36, 0, x_6); -x_37 = l_Lean_trace_profiler; -x_38 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_4, x_37); -if (x_38 == 0) -{ -x_53 = x_38; -goto block_59; -} -else -{ -lean_object* x_66; uint8_t x_67; -x_66 = l_Lean_trace_profiler_useHeartbeats; -x_67 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_4, x_66); -if (x_67 == 0) -{ -lean_object* x_68; lean_object* x_69; double x_70; double x_71; double x_72; -x_68 = l_Lean_trace_profiler_threshold; -x_69 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29(x_4, x_68); -x_70 = lean_float_of_nat(x_69); -x_71 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__2; -x_72 = lean_float_div(x_70, x_71); -x_60 = x_72; -goto block_65; -} -else -{ -lean_object* x_73; lean_object* x_74; double x_75; -x_73 = l_Lean_trace_profiler_threshold; -x_74 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__29(x_4, x_73); -x_75 = lean_float_of_nat(x_74); -x_60 = x_75; -goto block_65; -} -} -block_33: -{ -lean_object* x_28; -x_28 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27(x_6, x_20, x_19, x_18, x_21, x_22, x_23, x_24, x_25, x_26); -lean_dec(x_22); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -lean_dec_ref(x_28); -x_29 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(x_16); -return x_29; -} -else -{ -uint8_t x_30; -lean_dec(x_16); -x_30 = !lean_is_exclusive(x_28); -if (x_30 == 0) -{ -return x_28; -} -else -{ -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_28, 0); -lean_inc(x_31); -lean_dec(x_28); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_31); -return x_32; -} -} -} -block_47: -{ -double x_42; lean_object* x_43; -x_42 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__0; -lean_inc_ref(x_3); -lean_inc(x_1); -x_43 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_43, 0, x_1); -lean_ctor_set(x_43, 1, x_3); -lean_ctor_set_float(x_43, sizeof(void*)*2, x_42); -lean_ctor_set_float(x_43, sizeof(void*)*2 + 8, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 16, x_2); -if (x_38 == 0) -{ -lean_dec(x_35); -lean_dec(x_34); -lean_dec_ref(x_3); -lean_dec(x_1); -x_18 = x_40; -x_19 = x_39; -x_20 = x_43; -x_21 = x_9; -x_22 = x_10; -x_23 = x_11; -x_24 = x_12; -x_25 = x_13; -x_26 = x_14; -x_27 = lean_box(0); -goto block_33; -} -else -{ -lean_object* x_44; double x_45; double x_46; -lean_dec_ref(x_43); -x_44 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_44, 0, x_1); -lean_ctor_set(x_44, 1, x_3); -x_45 = lean_unbox_float(x_34); -lean_dec(x_34); -lean_ctor_set_float(x_44, sizeof(void*)*2, x_45); -x_46 = lean_unbox_float(x_35); -lean_dec(x_35); -lean_ctor_set_float(x_44, sizeof(void*)*2 + 8, x_46); -lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 16, x_2); -x_18 = x_40; -x_19 = x_39; -x_20 = x_44; -x_21 = x_9; -x_22 = x_10; -x_23 = x_11; -x_24 = x_12; -x_25 = x_13; -x_26 = x_14; -x_27 = lean_box(0); -goto block_33; -} -} -block_52: -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_13, 5); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_16); -x_49 = lean_apply_8(x_7, x_16, x_9, x_10, x_11, x_12, x_13, x_14, lean_box(0)); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -lean_dec_ref(x_49); -lean_inc(x_48); -x_39 = x_48; -x_40 = x_50; -x_41 = lean_box(0); -goto block_47; -} -else -{ -lean_object* x_51; -lean_dec_ref(x_49); -x_51 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1; -lean_inc(x_48); -x_39 = x_48; -x_40 = x_51; -x_41 = lean_box(0); -goto block_47; -} -} -block_59: -{ -if (x_5 == 0) -{ -if (x_53 == 0) -{ -lean_object* x_54; -lean_dec(x_35); -lean_dec(x_34); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_3); -lean_dec(x_1); -x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; -lean_dec_ref(x_54); -x_55 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(x_16); -return x_55; -} -else -{ -uint8_t x_56; -lean_dec(x_16); -x_56 = !lean_is_exclusive(x_54); -if (x_56 == 0) -{ -return x_54; -} -else -{ -lean_object* x_57; lean_object* x_58; -x_57 = lean_ctor_get(x_54, 0); -lean_inc(x_57); -lean_dec(x_54); -x_58 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_58, 0, x_57); -return x_58; -} -} -} -else -{ -lean_dec_ref(x_36); -goto block_52; -} -} -else -{ -lean_dec_ref(x_36); -goto block_52; -} -} -block_65: -{ -double x_61; double x_62; double x_63; uint8_t x_64; -x_61 = lean_unbox_float(x_35); -x_62 = lean_unbox_float(x_34); -x_63 = lean_float_sub(x_61, x_62); -x_64 = lean_float_decLt(x_60, x_63); -x_53 = x_64; -goto block_59; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___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, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; uint8_t x_17; lean_object* x_18; -x_16 = lean_unbox(x_2); -x_17 = lean_unbox(x_5); -x_18 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(x_1, x_16, x_3, x_4, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec_ref(x_4); -return x_18; -} -} static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__1() { _start: { @@ -15825,6 +13509,329 @@ lean_dec_ref(x_2); return x_10; } } +LEAN_EXPORT uint8_t l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = lean_ctor_get(x_1, 0); +x_6 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_5, x_3); +if (lean_obj_tag(x_6) == 0) +{ +uint8_t x_7; +x_7 = lean_unbox(x_4); +return x_7; +} +else +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +lean_dec_ref(x_6); +if (lean_obj_tag(x_8) == 1) +{ +uint8_t x_9; +x_9 = lean_ctor_get_uint8(x_8, 0); +lean_dec_ref(x_8); +return x_9; +} +else +{ +uint8_t x_10; +lean_dec(x_8); +x_10 = lean_unbox(x_4); +return x_10; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_1, x_2); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0; +x_4 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1; +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__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) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_st_ref_take(x_7); +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_9, 4); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = lean_ctor_get(x_11, 0); +lean_dec(x_13); +x_14 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2; +lean_ctor_set(x_11, 0, x_14); +x_15 = lean_st_ref_set(x_7, x_9); +x_16 = lean_box(0); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); +return x_17; +} +else +{ +uint64_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_18 = lean_ctor_get_uint64(x_11, sizeof(void*)*1); +lean_dec(x_11); +x_19 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2; +x_20 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set_uint64(x_20, sizeof(void*)*1, x_18); +lean_ctor_set(x_9, 4, x_20); +x_21 = lean_st_ref_set(x_7, x_9); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; +} +} +else +{ +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; uint64_t 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; lean_object* x_40; +x_24 = lean_ctor_get(x_9, 4); +x_25 = lean_ctor_get(x_9, 0); +x_26 = lean_ctor_get(x_9, 1); +x_27 = lean_ctor_get(x_9, 2); +x_28 = lean_ctor_get(x_9, 3); +x_29 = lean_ctor_get(x_9, 5); +x_30 = lean_ctor_get(x_9, 6); +x_31 = lean_ctor_get(x_9, 7); +x_32 = lean_ctor_get(x_9, 8); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_24); +lean_inc(x_28); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_9); +x_33 = lean_ctor_get_uint64(x_24, sizeof(void*)*1); +if (lean_is_exclusive(x_24)) { + lean_ctor_release(x_24, 0); + x_34 = x_24; +} else { + lean_dec_ref(x_24); + x_34 = lean_box(0); +} +x_35 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2; +if (lean_is_scalar(x_34)) { + x_36 = lean_alloc_ctor(0, 1, 8); +} else { + x_36 = x_34; +} +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set_uint64(x_36, sizeof(void*)*1, x_33); +x_37 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_37, 0, x_25); +lean_ctor_set(x_37, 1, x_26); +lean_ctor_set(x_37, 2, x_27); +lean_ctor_set(x_37, 3, x_28); +lean_ctor_set(x_37, 4, x_36); +lean_ctor_set(x_37, 5, x_29); +lean_ctor_set(x_37, 6, x_30); +lean_ctor_set(x_37, 7, x_31); +lean_ctor_set(x_37, 8, x_32); +x_38 = lean_st_ref_set(x_7, x_37); +x_39 = lean_box(0); +x_40 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_40, 0, x_39); +return x_40; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_st_ref_get(x_7); +x_10 = lean_ctor_get(x_9, 4); +lean_inc_ref(x_10); +lean_dec(x_9); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0)); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_1); +x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_8, x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); +lean_dec(x_10); +x_12 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__1)); +x_13 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_12, x_1, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_13); +if (x_14 == 0) +{ +lean_object* x_15; +x_15 = lean_ctor_get(x_13, 0); +lean_dec(x_15); +lean_ctor_set(x_13, 0, x_11); +return x_13; +} +else +{ +lean_object* x_16; +lean_dec(x_13); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_11); +return x_16; +} +} +else +{ +uint8_t x_17; +lean_dec_ref(x_11); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_13, 0); +lean_inc(x_18); +lean_dec(x_13); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +} +} +else +{ +uint8_t x_20; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_20 = !lean_is_exclusive(x_9); +if (x_20 == 0) +{ +return x_9; +} +else +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_9, 0); +lean_inc(x_21); +lean_dec(x_9); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_21); +return x_22; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +return x_8; +} +} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7(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) { _start: { @@ -15846,45 +13853,153 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(size_t x_1, size_t x_2, lean_object* x_3) { +static lean_object* _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2() { _start: { -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__1)); +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3() { +_start: { +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(1); +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___redArg(x_2); return x_3; } else { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -lean_inc(x_5); -x_8 = l_Lean_mkMVar(x_5); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_5); -lean_ctor_set(x_9, 1, x_8); -x_10 = 1; -x_11 = lean_usize_add(x_2, x_10); -x_12 = lean_array_uset(x_7, x_2, x_9); -x_2 = x_11; -x_3 = x_12; +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_ctor_get(x_1, 0); +x_6 = !lean_is_exclusive(x_5); +if (x_6 == 0) +{ +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; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_7 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_5, 0); +x_9 = lean_ctor_get(x_5, 1); +x_10 = l_Lean_MessageData_ofName(x_8); +x_11 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2; +lean_ctor_set_tag(x_5, 7); +lean_ctor_set(x_5, 1, x_11); +lean_ctor_set(x_5, 0, x_10); +x_12 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_5); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_MessageData_ofExpr(x_9); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_MessageData_paren(x_15); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_16); +{ +lean_object* _tmp_0 = x_7; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; +x_18 = lean_ctor_get(x_1, 1); +x_19 = lean_ctor_get(x_5, 0); +x_20 = lean_ctor_get(x_5, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_5); +x_21 = l_Lean_MessageData_ofName(x_19); +x_22 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2; +x_23 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3; +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_26 = l_Lean_MessageData_ofExpr(x_20); +x_27 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +x_28 = l_Lean_MessageData_paren(x_27); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_28); +{ +lean_object* _tmp_0 = x_18; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} goto _start; } } -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: +else { -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_30 = lean_ctor_get(x_1, 0); +x_31 = lean_ctor_get(x_1, 1); +lean_inc(x_31); +lean_inc(x_30); lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_4, x_5, x_3); -return x_6; +x_32 = lean_ctor_get(x_30, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_34 = x_30; +} else { + lean_dec_ref(x_30); + x_34 = lean_box(0); +} +x_35 = l_Lean_MessageData_ofName(x_32); +x_36 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2; +if (lean_is_scalar(x_34)) { + x_37 = lean_alloc_ctor(7, 2, 0); +} else { + x_37 = x_34; + lean_ctor_set_tag(x_37, 7); +} +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +x_38 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3; +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_MessageData_ofExpr(x_33); +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_MessageData_paren(x_41); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_2); +x_1 = x_31; +x_2 = x_43; +goto _start; +} +} } } LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__12(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) { @@ -15906,7 +14021,26 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_Simp_Result_mkEqMPR(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -15914,14 +14048,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0___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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -15933,7 +14067,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__1(lean_object* x_1, uint8_t x_2, uint8_t 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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__1(lean_object* x_1, uint8_t x_2, uint8_t 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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -15946,7 +14080,7 @@ x_16 = 1; x_17 = lean_box(x_2); x_18 = lean_box(x_3); x_19 = lean_box(x_16); -x_20 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__0___boxed), 13, 5); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__0___boxed), 13, 5); lean_closure_set(x_20, 0, x_13); lean_closure_set(x_20, 1, x_15); lean_closure_set(x_20, 2, x_17); @@ -15956,24 +14090,24 @@ x_21 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_20, x_4, x_5, x_7, x_8, x_9, x return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__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: { uint8_t x_12; uint8_t x_13; lean_object* x_14; x_12 = lean_unbox(x_2); x_13 = lean_unbox(x_3); -x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__1(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__1(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_5); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33(lean_object* x_1, uint8_t x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_15 = lean_box(x_2); x_16 = lean_box(x_3); -x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___lam__1___boxed), 11, 5); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___lam__1___boxed), 11, 5); lean_closure_set(x_17, 0, x_1); lean_closure_set(x_17, 1, x_15); lean_closure_set(x_17, 2, x_16); @@ -16005,7 +14139,7 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33___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, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; uint8_t x_17; uint8_t x_18; lean_object* x_19; @@ -16013,29 +14147,10 @@ x_15 = lean_unbox(x_2); x_16 = lean_unbox(x_3); x_17 = lean_unbox(x_5); x_18 = lean_unbox(x_7); -x_19 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31(x_1, x_15, x_16, x_4, x_17, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13); +x_19 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33(x_1, x_15, x_16, x_4, x_17, x_6, x_18, x_8, x_9, x_10, x_11, x_12, x_13); return x_19; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_Simp_Result_mkEqMPR(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8(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) { _start: { @@ -16055,6 +14170,47 @@ lean_dec(x_3); return x_11; } } +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +lean_inc(x_5); +x_8 = l_Lean_mkMVar(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_5); +lean_ctor_set(x_9, 1, x_8); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +x_12 = lean_array_uset(x_7, x_2, x_9); +x_2 = x_11; +x_3 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(x_4, x_5, x_3); +return x_6; +} +} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__17(lean_object* x_1, uint8_t 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) { _start: { @@ -16078,7 +14234,26 @@ lean_dec(x_3); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_TypeList_length(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(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) { _start: { lean_object* x_11; @@ -16086,11 +14261,11 @@ x_11 = l_Lean_Elab_Tactic_filterOldMVars___redArg(x_1, x_2, x_7); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___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_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -16103,30 +14278,7 @@ lean_dec_ref(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_getMVarsNoDelayed(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT uint8_t l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -16158,18 +14310,18 @@ return x_10; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0(x_1, x_2, x_3); +x_4 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0(x_1, x_2, x_3); lean_dec(x_3); lean_dec(x_2); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -16184,7 +14336,7 @@ else { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_inc_ref(x_1); -x_6 = lean_alloc_closure((void*)(l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___lam__0___boxed), 3, 1); +x_6 = lean_alloc_closure((void*)(l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___lam__0___boxed), 3, 1); lean_closure_set(x_6, 0, x_1); lean_inc(x_3); x_7 = l_Array_qpartition___redArg(x_2, x_6, x_3, x_4); @@ -16198,7 +14350,7 @@ if (x_10 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_inc_ref(x_1); -x_11 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(x_1, x_9, x_3, x_8); +x_11 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(x_1, x_9, x_3, x_8); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_8, x_12); lean_dec(x_8); @@ -16216,16 +14368,16 @@ return x_9; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(x_1, x_2, x_3, x_4); lean_dec(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -16284,7 +14436,7 @@ return x_20; block_10: { lean_object* x_8; lean_object* x_9; -x_8 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(x_5, x_1, x_6, x_7); +x_8 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(x_5, x_1, x_6, x_7); lean_dec(x_7); x_9 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_9, 0, x_8); @@ -16292,28 +14444,28 @@ return x_9; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(x_1, x_2); +x_4 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(x_1, x_2); lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(x_1, x_6); +x_10 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(x_1, x_6); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -16324,7 +14476,30 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_getMVarsNoDelayed(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(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) { _start: { lean_object* x_9; lean_object* x_10; @@ -16358,7 +14533,7 @@ x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); lean_dec_ref(x_13); lean_inc(x_14); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1___boxed), 9, 1); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___boxed), 9, 1); lean_closure_set(x_15, 0, x_14); lean_inc(x_7); lean_inc_ref(x_6); @@ -16372,7 +14547,7 @@ lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); lean_dec_ref(x_16); -x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___boxed), 10, 2); +x_18 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__0___boxed), 10, 2); lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_12); lean_inc(x_7); @@ -16387,7 +14562,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); lean_dec_ref(x_19); -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__2___boxed), 9, 1); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__2___boxed), 9, 1); lean_closure_set(x_21, 0, x_20); x_22 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); @@ -16550,22 +14725,22 @@ return x_43; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___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_EXPORT lean_object* l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(uint8_t 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) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_10 = lean_ctor_get(x_7, 5); x_11 = l_Lean_SourceInfo_fromRef(x_10, x_1); -x_12 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); -x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3)); +x_12 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); +x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6)); x_14 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__16___closed__0)); lean_inc(x_11); x_15 = lean_alloc_ctor(2, 2, 0); @@ -16579,12 +14754,12 @@ lean_ctor_set(x_18, 0, x_17); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___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) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_1); -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -16595,7 +14770,7 @@ lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; @@ -16603,19 +14778,19 @@ x_8 = lean_apply_6(x_1, x_2, x_3, x_4, x_5, x_6, lean_box(0)); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0___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) { _start: { lean_object* x_8; -x_8 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___lam__0___boxed), 7, 1); +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___lam__0___boxed), 7, 1); lean_closure_set(x_11, 0, x_4); x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_1, x_2, x_3, x_11, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_12) == 0) @@ -16658,35 +14833,35 @@ return x_18; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg___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: { uint8_t x_11; uint8_t x_12; lean_object* x_13; x_11 = lean_unbox(x_2); x_12 = lean_unbox(x_5); -x_13 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9); +x_13 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(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) { _start: { uint8_t x_9; uint8_t x_10; lean_object* x_11; x_9 = 0; x_10 = 0; -x_11 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg(x_1, x_9, x_2, x_3, x_10, x_4, x_5, x_6, x_7); +x_11 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg(x_1, x_9, x_2, x_3, x_10, x_4, x_5, x_6, x_7); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg___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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg___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) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -16694,14 +14869,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -16713,7 +14888,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; @@ -16766,7 +14941,7 @@ x_29 = 1; x_30 = lean_box(x_24); x_31 = lean_box(x_3); x_32 = lean_box(x_29); -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___boxed), 13, 5); +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___boxed), 13, 5); lean_closure_set(x_33, 0, x_23); lean_closure_set(x_33, 1, x_28); lean_closure_set(x_33, 2, x_30); @@ -16782,7 +14957,7 @@ if (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; x_36 = lean_ctor_get(x_34, 0); -x_37 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1)); +x_37 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1)); x_38 = lean_box(0); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_7); @@ -16798,7 +14973,7 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean x_42 = lean_ctor_get(x_34, 0); lean_inc(x_42); lean_dec(x_34); -x_43 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___closed__1)); +x_43 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___closed__1)); x_44 = lean_box(0); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_7); @@ -16871,25 +15046,25 @@ return x_51; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; lean_object* x_18; x_17 = lean_unbox(x_3); -x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_18; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3)); +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__3)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5(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) { _start: { lean_object* x_11; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -16914,7 +15089,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); lean_dec_ref(x_20); -x_22 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2)); +x_22 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__2)); x_23 = lean_unsigned_to_nat(3u); x_24 = l_Lean_Expr_isAppOfArity(x_21, x_22, x_23); if (x_24 == 0) @@ -16928,7 +15103,7 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4; +x_25 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4; x_26 = l_Lean_MessageData_ofExpr(x_17); x_27 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_27, 0, x_25); @@ -16953,7 +15128,7 @@ lean_dec(x_21); x_32 = lean_box(x_24); lean_inc(x_2); lean_inc_ref(x_30); -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___boxed), 16, 10); +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__1___boxed), 16, 10); lean_closure_set(x_33, 0, x_30); lean_closure_set(x_33, 1, x_2); lean_closure_set(x_33, 2, x_32); @@ -16964,7 +15139,7 @@ lean_closure_set(x_33, 6, x_16); lean_closure_set(x_33, 7, x_3); lean_closure_set(x_33, 8, x_4); lean_closure_set(x_33, 9, x_5); -x_34 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); +x_34 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); lean_inc(x_2); x_35 = l_Lean_Syntax_isOfKind(x_2, x_34); if (x_35 == 0) @@ -16981,7 +15156,7 @@ lean_object* x_38; lean_object* x_39; x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); lean_dec_ref(x_37); -x_39 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_38, x_30, x_33, x_6, x_7, x_8, x_9); +x_39 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(x_38, x_30, x_33, x_6, x_7, x_8, x_9); x_11 = x_39; goto block_15; } @@ -17017,7 +15192,7 @@ lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; x_43 = lean_unsigned_to_nat(0u); x_44 = l_Lean_Syntax_getArg(x_2, x_43); lean_dec(x_2); -x_45 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6)); +x_45 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6)); lean_inc(x_44); x_46 = l_Lean_Syntax_isOfKind(x_44, x_45); if (x_46 == 0) @@ -17034,7 +15209,7 @@ lean_object* x_49; lean_object* x_50; x_49 = lean_ctor_get(x_48, 0); lean_inc(x_49); lean_dec_ref(x_48); -x_50 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_49, x_30, x_33, x_6, x_7, x_8, x_9); +x_50 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(x_49, x_30, x_33, x_6, x_7, x_8, x_9); x_11 = x_50; goto block_15; } @@ -17069,7 +15244,7 @@ else lean_object* x_54; lean_object* x_55; x_54 = l_Lean_TSyntax_getId(x_44); lean_dec(x_44); -x_55 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_54, x_30, x_33, x_6, x_7, x_8, x_9); +x_55 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(x_54, x_30, x_33, x_6, x_7, x_8, x_9); x_11 = x_55; goto block_15; } @@ -17120,24 +15295,24 @@ return x_14; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___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_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(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) { _start: { lean_object* x_11; uint8_t x_12; @@ -17153,7 +15328,7 @@ else { lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_box(x_12); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___boxed), 9, 1); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___boxed), 9, 1); lean_closure_set(x_15, 0, x_14); lean_inc(x_9); lean_inc_ref(x_8); @@ -17169,10 +15344,10 @@ lean_inc(x_17); lean_dec_ref(x_16); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_sub(x_2, x_18); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1___boxed), 10, 2); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__1___boxed), 10, 2); lean_closure_set(x_20, 0, x_19); lean_closure_set(x_20, 1, x_3); -x_21 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(x_1, x_17, x_20, x_4, x_5, x_6, x_7, x_8, x_9); +x_21 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5(x_1, x_17, x_20, x_4, x_5, x_6, x_7, x_8, x_9); return x_21; } else @@ -17205,42 +15380,23 @@ return x_24; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_3, x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___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_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_2); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_ProofMode_TypeList_length(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16(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) { _start: { @@ -17261,11 +15417,11 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); lean_dec_ref(x_13); -x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___boxed), 10, 3); +x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___boxed), 10, 3); lean_closure_set(x_15, 0, x_1); lean_closure_set(x_15, 1, x_14); lean_closure_set(x_15, 2, x_2); -x_16 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_15, x_4, x_5, x_6, x_7, x_8, x_9); +x_16 = l_Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(x_15, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_16) == 0) { uint8_t x_17; @@ -17353,344 +15509,7 @@ x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs return x_11; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = lean_array_get_size(x_1); -x_5 = lean_nat_dec_lt(x_2, x_4); -if (x_5 == 0) -{ -lean_dec(x_2); -return x_5; -} -else -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_fget_borrowed(x_1, x_2); -x_7 = l_Lean_instBEqMVarId_beq(x_3, x_6); -if (x_7 == 0) -{ -lean_object* x_8; lean_object* x_9; -x_8 = lean_unsigned_to_nat(1u); -x_9 = lean_nat_add(x_2, x_8); -lean_dec(x_2); -x_2 = x_9; -goto _start; -} -else -{ -lean_dec(x_2); -return x_7; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec_ref(x_1); -x_5 = lean_box(x_4); -return x_5; -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; size_t x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; -x_4 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_4); -lean_dec_ref(x_1); -x_5 = lean_box(2); -x_6 = 5; -x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12_spec__16_spec__18___redArg___closed__1; -x_8 = lean_usize_land(x_2, x_7); -x_9 = lean_usize_to_nat(x_8); -x_10 = lean_array_get(x_5, x_4, x_9); -lean_dec(x_9); -lean_dec_ref(x_4); -switch (lean_obj_tag(x_10)) { -case 0: -{ -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec_ref(x_10); -x_12 = l_Lean_instBEqMVarId_beq(x_3, x_11); -lean_dec(x_11); -return x_12; -} -case 1: -{ -lean_object* x_13; size_t x_14; -x_13 = lean_ctor_get(x_10, 0); -lean_inc(x_13); -lean_dec_ref(x_10); -x_14 = lean_usize_shift_right(x_2, x_6); -x_1 = x_13; -x_2 = x_14; -goto _start; -} -default: -{ -uint8_t x_16; -x_16 = 0; -return x_16; -} -} -} -else -{ -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_ctor_get(x_1, 0); -lean_inc_ref(x_17); -lean_dec_ref(x_1); -x_18 = lean_unsigned_to_nat(0u); -x_19 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg(x_17, x_18, x_3); -lean_dec_ref(x_17); -return x_19; -} -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint64_t x_3; size_t x_4; uint8_t x_5; -x_3 = l_Lean_instHashableMVarId_hash(x_2); -x_4 = lean_uint64_to_usize(x_3); -x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg(x_1, x_4, x_2); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_1, x_2); -lean_dec(x_2); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(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) { -_start: -{ -lean_object* x_9; lean_object* x_10; -x_9 = ((lean_object*)(l_Lean_instantiateMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2___closed__0)); -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_10) == 0) -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_10, 0); -x_13 = lean_ctor_get(x_12, 7); -lean_inc_ref(x_13); -lean_dec(x_12); -x_14 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_13, x_1); -x_15 = lean_box(x_14); -lean_ctor_set(x_10, 0, x_15); -return x_10; -} -else -{ -lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; -x_16 = lean_ctor_get(x_10, 0); -lean_inc(x_16); -lean_dec(x_10); -x_17 = lean_ctor_get(x_16, 7); -lean_inc_ref(x_17); -lean_dec(x_16); -x_18 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_17, x_1); -x_19 = lean_box(x_18); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_19); -return x_20; -} -} -else -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_10); -if (x_21 == 0) -{ -return x_10; -} -else -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_10, 0); -lean_inc(x_22); -lean_dec(x_10); -x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_22); -return x_23; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_3); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; -x_18 = lean_usize_dec_eq(x_2, x_3); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_23; -x_19 = lean_array_uget(x_1, x_2); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_23 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_19, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; uint8_t x_25; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec_ref(x_23); -x_25 = lean_unbox(x_24); -lean_dec(x_24); -if (x_25 == 0) -{ -x_20 = lean_box(0); -goto block_22; -} -else -{ -lean_dec(x_19); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -} -else -{ -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_26; uint8_t x_27; -x_26 = lean_ctor_get(x_23, 0); -lean_inc(x_26); -lean_dec_ref(x_23); -x_27 = lean_unbox(x_26); -lean_dec(x_26); -if (x_27 == 0) -{ -lean_dec(x_19); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -x_20 = lean_box(0); -goto block_22; -} -} -else -{ -uint8_t x_28; -lean_dec(x_19); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) -{ -return x_23; -} -else -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_23, 0); -lean_inc(x_29); -lean_dec(x_23); -x_30 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_30, 0, x_29); -return x_30; -} -} -} -block_22: -{ -lean_object* x_21; -x_21 = lean_array_push(x_4, x_19); -x_12 = x_21; -x_13 = lean_box(0); -goto block_17; -} -} -else -{ -lean_object* x_31; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_31 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_31, 0, x_4); -return x_31; -} -block_17: -{ -size_t x_14; size_t x_15; -x_14 = 1; -x_15 = lean_usize_add(x_2, x_14); -x_2 = x_15; -x_4 = x_12; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_12; uint8_t x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; @@ -17729,16 +15548,16 @@ return x_19; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg___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_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -17746,14 +15565,14 @@ x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, return x_14; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0___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) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -17765,7 +15584,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__1(lean_object* x_1, uint8_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__1(lean_object* x_1, uint8_t 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_12; lean_object* x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -17776,7 +15595,7 @@ x_15 = 1; x_16 = lean_box(x_14); x_17 = lean_box(x_2); x_18 = lean_box(x_15); -x_19 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__0___boxed), 13, 5); +x_19 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__0___boxed), 13, 5); lean_closure_set(x_19, 0, x_12); lean_closure_set(x_19, 1, x_13); lean_closure_set(x_19, 2, x_16); @@ -17786,19 +15605,19 @@ x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_5, x_6, x_7, x_8, x_9, x return x_20; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_2); -x_13 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__1(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); lean_dec_ref(x_4); lean_dec_ref(x_3); return x_13; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(lean_object* x_1, uint8_t x_2, lean_object* x_3, size_t x_4, size_t 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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(lean_object* x_1, uint8_t x_2, lean_object* x_3, size_t x_4, size_t 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) { _start: { uint8_t x_14; @@ -17828,7 +15647,7 @@ lean_inc(x_18); lean_dec(x_16); x_19 = lean_box(x_2); lean_inc_ref(x_1); -x_20 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___lam__1___boxed), 11, 2); +x_20 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___lam__1___boxed), 11, 2); lean_closure_set(x_20, 0, x_1); lean_closure_set(x_20, 1, x_19); x_21 = 0; @@ -17838,7 +15657,7 @@ lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); -x_22 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg(x_18, x_17, x_20, x_21, x_7, x_8, x_9, x_10, x_11, x_12); +x_22 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg(x_18, x_17, x_20, x_21, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; @@ -17882,7 +15701,7 @@ return x_30; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___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) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___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: { uint8_t x_14; size_t x_15; size_t x_16; lean_object* x_17; @@ -17891,7 +15710,7 @@ x_15 = lean_unbox_usize(x_4); lean_dec(x_4); x_16 = lean_unbox_usize(x_5); lean_dec(x_5); -x_17 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(x_1, x_14, x_3, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(x_1, x_14, x_3, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec_ref(x_3); return x_17; } @@ -17904,7 +15723,7 @@ x_12 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Le x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_altInfos(x_1); x_14 = lean_array_size(x_13); x_15 = 0; -x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(x_3, x_2, x_13, x_14, x_15, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(x_3, x_2, x_13, x_14, x_15, x_12, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_13); return x_16; } @@ -17919,6 +15738,124 @@ lean_dec_ref(x_4); return x_13; } } +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(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_13; uint8_t x_14; +x_13 = lean_unsigned_to_nat(0u); +x_14 = lean_nat_dec_eq(x_3, x_13); +if (x_14 == 1) +{ +lean_object* x_15; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_5); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_array_fget_borrowed(x_2, x_4); +lean_inc(x_4); +lean_inc(x_1); +x_17 = lean_name_append_index_after(x_1, x_4); +lean_inc(x_16); +x_18 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_17); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec_ref(x_19); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_sub(x_3, x_21); +lean_dec(x_3); +x_23 = lean_nat_add(x_4, x_21); +lean_dec(x_4); +x_24 = lean_array_push(x_5, x_20); +x_3 = x_22; +x_4 = x_23; +x_5 = x_24; +goto _start; +} +else +{ +uint8_t x_26; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_19); +if (x_26 == 0) +{ +return x_19; +} +else +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_19, 0); +lean_inc(x_27); +lean_dec(x_19); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +return x_28; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___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) { +_start: +{ +lean_object* x_13; +x_13 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(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_7); +lean_dec_ref(x_2); +return x_13; +} +} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3(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) { _start: { @@ -17943,6 +15880,50 @@ lean_dec_ref(x_2); return x_11; } } +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t 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) { +_start: +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___redArg___lam__0___boxed), 9, 3); +lean_closure_set(x_14, 0, x_4); +lean_closure_set(x_14, 1, x_7); +lean_closure_set(x_14, 2, x_8); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp(lean_box(0), x_1, x_2, x_3, x_14, x_5, x_6, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_15) == 0) +{ +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg___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: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_5); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_1, x_2, x_3, x_4, x_14, x_15, x_7, x_8, x_9, x_10, x_11, x_12); +return x_16; +} +} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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: { @@ -17969,282 +15950,7 @@ lean_dec_ref(x_1); return x_15; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_reduceMatcher_x3f(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__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) { -_start: -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1)); -x_13 = lean_mk_empty_array_with_capacity(x_1); -x_14 = lean_array_push(x_13, x_6); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_5); -lean_inc_ref(x_4); -lean_inc_ref(x_14); -x_15 = lean_apply_11(x_2, x_12, x_3, x_1, x_14, x_4, x_5, x_7, x_8, x_9, x_10, lean_box(0)); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = 0; -x_18 = 1; -x_19 = 1; -x_20 = lean_box(x_17); -x_21 = lean_box(x_18); -x_22 = lean_box(x_19); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___boxed), 13, 5); -lean_closure_set(x_23, 0, x_14); -lean_closure_set(x_23, 1, x_16); -lean_closure_set(x_23, 2, x_20); -lean_closure_set(x_23, 3, x_21); -lean_closure_set(x_23, 4, x_22); -x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_4, x_5, x_7, x_8, x_9, x_10); -lean_dec(x_5); -return x_24; -} -else -{ -lean_dec_ref(x_14); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__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_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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) { -_start: -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_unsigned_to_nat(1u); -x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___boxed), 11, 5); -lean_closure_set(x_15, 0, x_14); -lean_closure_set(x_15, 1, x_1); -lean_closure_set(x_15, 2, x_2); -lean_closure_set(x_15, 3, x_7); -lean_closure_set(x_15, 4, x_8); -x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_3, x_4, x_5, x_15, x_6, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_16) == 0) -{ -return x_16; -} -else -{ -uint8_t x_17; -x_17 = !lean_is_exclusive(x_16); -if (x_17 == 0) -{ -return x_16; -} -else -{ -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_16, 0); -lean_inc(x_18); -lean_dec(x_16); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_18); -return x_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___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: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_4); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60(x_1, x_2, x_3, x_14, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3(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) { -_start: -{ -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_9, 0, x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__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) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_11 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1)); -x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; -x_14 = lean_array_push(x_13, x_5); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_4); -lean_inc_ref(x_3); -lean_inc_ref(x_14); -x_15 = lean_apply_11(x_1, x_11, x_2, x_12, x_14, x_3, x_4, x_6, x_7, x_8, x_9, lean_box(0)); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = 0; -x_18 = 1; -x_19 = 1; -x_20 = lean_box(x_17); -x_21 = lean_box(x_18); -x_22 = lean_box(x_19); -x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___boxed), 13, 5); -lean_closure_set(x_23, 0, x_14); -lean_closure_set(x_23, 1, x_16); -lean_closure_set(x_23, 2, x_20); -lean_closure_set(x_23, 3, x_21); -lean_closure_set(x_23, 4, x_22); -x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_3, x_4, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_24; -} -else -{ -lean_dec_ref(x_14); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_4); -lean_dec_ref(x_3); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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) { -_start: -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___boxed), 10, 4); -lean_closure_set(x_14, 0, x_1); -lean_closure_set(x_14, 1, x_2); -lean_closure_set(x_14, 2, x_7); -lean_closure_set(x_14, 3, x_8); -x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_3, x_4, x_5, x_14, x_6, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_15) == 0) -{ -return x_15; -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -return x_15; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___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: -{ -uint8_t x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_unbox(x_4); -x_15 = lean_unbox(x_6); -x_16 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59(x_1, x_2, x_3, x_14, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12); -return x_16; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Expr_abstractM(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4___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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36(size_t x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -18271,7 +15977,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; lean_object* x_6; @@ -18279,40 +15985,30 @@ x_4 = lean_unbox_usize(x_1); lean_dec(x_1); x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36(x_4, x_5, x_3); +x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38(x_4, x_5, x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0(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) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = l_Array_mask___redArg(x_1, x_3); -x_13 = lean_expr_instantiate_rev(x_2, x_12); -lean_dec_ref(x_12); -x_14 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_14, 0, x_13); -return x_14; +lean_object* x_10; +x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0___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) { _start: { -lean_object* x_12; -x_12 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_12; +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -18320,14 +16016,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0___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) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -18339,117 +16035,2621 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__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) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1)); -x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33___redArg___closed__0; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_4); -lean_inc_ref(x_3); -x_16 = lean_apply_11(x_1, x_13, x_2, x_14, x_15, x_3, x_4, x_8, x_9, x_10, x_11, lean_box(0)); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -x_18 = lean_mk_empty_array_with_capacity(x_5); -x_19 = lean_array_push(x_18, x_7); -x_20 = 0; -x_21 = 1; -x_22 = lean_box(x_20); -x_23 = lean_box(x_6); -x_24 = lean_box(x_21); -x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0___boxed), 13, 5); -lean_closure_set(x_25, 0, x_19); -lean_closure_set(x_25, 1, x_17); -lean_closure_set(x_25, 2, x_22); -lean_closure_set(x_25, 3, x_23); -lean_closure_set(x_25, 4, x_24); -x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_3, x_4, x_8, x_9, x_10, x_11); -lean_dec(x_4); -return x_26; +lean_object* x_11; +x_11 = l_Lean_Meta_mkEqHEq(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; } -else +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__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) { +_start: { +lean_object* x_11; +x_11 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_isProof(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_mkArrow(x_1, x_2, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48(uint8_t x_1, lean_object* x_2, size_t x_3, size_t 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_13; lean_object* x_14; uint8_t x_19; +x_19 = lean_usize_dec_lt(x_4, x_3); +if (x_19 == 0) +{ +lean_object* x_20; lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_5); +return x_20; +} +else +{ +lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_21 = lean_ctor_get(x_5, 1); +lean_inc(x_21); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 0); +lean_inc(x_24); +if (lean_is_exclusive(x_21)) { + lean_ctor_release(x_21, 0); + lean_ctor_release(x_21, 1); + x_25 = x_21; +} else { + lean_dec_ref(x_21); + x_25 = lean_box(0); +} +x_26 = lean_ctor_get(x_5, 0); +lean_inc(x_26); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + x_27 = x_5; +} else { + lean_dec_ref(x_5); + x_27 = lean_box(0); +} +x_28 = lean_ctor_get(x_22, 0); +lean_inc(x_28); +if (lean_is_exclusive(x_22)) { + lean_ctor_release(x_22, 0); + lean_ctor_release(x_22, 1); + x_29 = x_22; +} else { + lean_dec_ref(x_22); + x_29 = lean_box(0); +} +x_30 = lean_ctor_get(x_23, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_23, 1); +lean_inc(x_31); +if (lean_is_exclusive(x_23)) { + lean_ctor_release(x_23, 0); + lean_ctor_release(x_23, 1); + x_32 = x_23; +} else { + lean_dec_ref(x_23); + x_32 = lean_box(0); +} +x_33 = lean_ctor_get(x_24, 0); +x_34 = lean_ctor_get(x_24, 1); +x_35 = lean_ctor_get(x_24, 2); +x_36 = lean_nat_dec_lt(x_34, x_35); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_32)) { + x_37 = lean_alloc_ctor(0, 2, 0); +} else { + x_37 = x_32; +} +lean_ctor_set(x_37, 0, x_30); +lean_ctor_set(x_37, 1, x_31); +if (lean_is_scalar(x_29)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_29; +} +lean_ctor_set(x_38, 0, x_28); +lean_ctor_set(x_38, 1, x_37); +if (lean_is_scalar(x_25)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_25; +} +lean_ctor_set(x_39, 0, x_24); +lean_ctor_set(x_39, 1, x_38); +if (lean_is_scalar(x_27)) { + x_40 = lean_alloc_ctor(0, 2, 0); +} else { + x_40 = x_27; +} +lean_ctor_set(x_40, 0, x_26); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_41, 0, x_40); +return x_41; +} +else +{ +uint8_t x_42; +lean_inc(x_35); +lean_inc(x_34); +lean_inc_ref(x_33); +x_42 = !lean_is_exclusive(x_24); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_43 = lean_ctor_get(x_24, 2); +lean_dec(x_43); +x_44 = lean_ctor_get(x_24, 1); +lean_dec(x_44); +x_45 = lean_ctor_get(x_24, 0); +lean_dec(x_45); +x_46 = lean_ctor_get(x_26, 0); +x_47 = lean_ctor_get(x_26, 1); +x_48 = lean_ctor_get(x_26, 2); +x_49 = lean_array_fget(x_33, x_34); +x_50 = lean_unsigned_to_nat(1u); +x_51 = lean_nat_add(x_34, x_50); +lean_dec(x_34); +lean_ctor_set(x_24, 1, x_51); +x_52 = lean_nat_dec_lt(x_47, x_48); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec(x_49); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_32)) { + x_53 = lean_alloc_ctor(0, 2, 0); +} else { + x_53 = x_32; +} +lean_ctor_set(x_53, 0, x_30); +lean_ctor_set(x_53, 1, x_31); +if (lean_is_scalar(x_29)) { + x_54 = lean_alloc_ctor(0, 2, 0); +} else { + x_54 = x_29; +} +lean_ctor_set(x_54, 0, x_28); +lean_ctor_set(x_54, 1, x_53); +if (lean_is_scalar(x_25)) { + x_55 = lean_alloc_ctor(0, 2, 0); +} else { + x_55 = x_25; +} +lean_ctor_set(x_55, 0, x_24); +lean_ctor_set(x_55, 1, x_54); +if (lean_is_scalar(x_27)) { + x_56 = lean_alloc_ctor(0, 2, 0); +} else { + x_56 = x_27; +} +lean_ctor_set(x_56, 0, x_26); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_56); +return x_57; +} +else +{ +uint8_t x_58; +lean_inc(x_48); +lean_inc(x_47); +lean_inc_ref(x_46); +x_58 = !lean_is_exclusive(x_26); +if (x_58 == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_59 = lean_ctor_get(x_26, 2); +lean_dec(x_59); +x_60 = lean_ctor_get(x_26, 1); +lean_dec(x_60); +x_61 = lean_ctor_get(x_26, 0); +lean_dec(x_61); +x_62 = lean_array_fget(x_46, x_47); +x_63 = lean_nat_add(x_47, x_50); +lean_dec(x_47); +lean_ctor_set(x_26, 1, x_63); +if (x_1 == 0) +{ +lean_dec(x_62); +goto block_71; +} +else +{ +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_dec(x_32); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_25); +x_72 = lean_array_uget(x_2, x_4); +lean_inc(x_72); +x_73 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0___boxed), 9, 1); +lean_closure_set(x_73, 0, x_72); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; uint8_t x_76; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +lean_dec_ref(x_74); +x_76 = lean_unbox(x_75); +lean_dec(x_75); +if (x_76 == 0) +{ +lean_object* x_77; lean_object* x_78; +x_77 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1___boxed), 10, 2); +lean_closure_set(x_77, 0, x_62); +lean_closure_set(x_77, 1, x_72); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_78 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_77, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +lean_dec_ref(x_78); +lean_inc(x_79); +x_80 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2___boxed), 10, 2); +lean_closure_set(x_80, 0, x_79); +lean_closure_set(x_80, 1, x_31); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_81 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_80, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_81) == 0) +{ +lean_object* x_82; uint8_t 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; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +lean_dec_ref(x_81); +x_83 = l_Lean_Expr_isHEq(x_79); +lean_dec(x_79); +x_84 = lean_box(x_83); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +x_86 = lean_array_push(x_28, x_85); +x_87 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0)); +x_88 = lean_array_push(x_30, x_87); +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_82); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_86); +lean_ctor_set(x_90, 1, x_89); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_24); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_26); +lean_ctor_set(x_92, 1, x_91); +x_13 = x_92; +x_14 = lean_box(0); +goto block_18; +} +else +{ +uint8_t x_93; +lean_dec(x_79); +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_93 = !lean_is_exclusive(x_81); +if (x_93 == 0) +{ +return x_81; +} +else +{ +lean_object* x_94; lean_object* x_95; +x_94 = lean_ctor_get(x_81, 0); +lean_inc(x_94); +lean_dec(x_81); +x_95 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_95, 0, x_94); +return x_95; +} +} +} +else +{ +uint8_t x_96; +lean_dec_ref(x_26); +lean_dec_ref(x_24); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_96 = !lean_is_exclusive(x_78); +if (x_96 == 0) +{ +return x_78; +} +else +{ +lean_object* x_97; lean_object* x_98; +x_97 = lean_ctor_get(x_78, 0); +lean_inc(x_97); +lean_dec(x_78); +x_98 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_98, 0, x_97); +return x_98; +} +} +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +lean_dec(x_72); +lean_dec(x_62); +x_99 = lean_box(0); +x_100 = lean_array_push(x_28, x_99); +x_101 = lean_array_push(x_30, x_49); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_31); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_100); +lean_ctor_set(x_103, 1, x_102); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_24); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_26); +lean_ctor_set(x_105, 1, x_104); +x_13 = x_105; +x_14 = lean_box(0); +goto block_18; +} +} +else +{ +uint8_t x_106; +lean_dec(x_72); +lean_dec_ref(x_26); +lean_dec(x_62); +lean_dec_ref(x_24); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_106 = !lean_is_exclusive(x_74); +if (x_106 == 0) +{ +return x_74; +} +else +{ +lean_object* x_107; lean_object* x_108; +x_107 = lean_ctor_get(x_74, 0); +lean_inc(x_107); +lean_dec(x_74); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +return x_108; +} +} +} +else +{ +lean_dec(x_62); +goto block_71; +} +} +block_71: +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_64 = lean_box(0); +x_65 = lean_array_push(x_28, x_64); +x_66 = lean_array_push(x_30, x_49); +if (lean_is_scalar(x_32)) { + x_67 = lean_alloc_ctor(0, 2, 0); +} else { + x_67 = x_32; +} +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_31); +if (lean_is_scalar(x_29)) { + x_68 = lean_alloc_ctor(0, 2, 0); +} else { + x_68 = x_29; +} +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_67); +if (lean_is_scalar(x_25)) { + x_69 = lean_alloc_ctor(0, 2, 0); +} else { + x_69 = x_25; +} +lean_ctor_set(x_69, 0, x_24); +lean_ctor_set(x_69, 1, x_68); +if (lean_is_scalar(x_27)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_27; +} +lean_ctor_set(x_70, 0, x_26); +lean_ctor_set(x_70, 1, x_69); +x_13 = x_70; +x_14 = lean_box(0); +goto block_18; +} +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_dec(x_26); +x_109 = lean_array_fget(x_46, x_47); +x_110 = lean_nat_add(x_47, x_50); +lean_dec(x_47); +x_111 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_111, 0, x_46); +lean_ctor_set(x_111, 1, x_110); +lean_ctor_set(x_111, 2, x_48); +if (x_1 == 0) +{ +lean_dec(x_109); +goto block_119; +} +else +{ +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_32); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_25); +x_120 = lean_array_uget(x_2, x_4); +lean_inc(x_120); +x_121 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0___boxed), 9, 1); +lean_closure_set(x_121, 0, x_120); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_122 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_121, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; uint8_t x_124; +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +lean_dec_ref(x_122); +x_124 = lean_unbox(x_123); +lean_dec(x_123); +if (x_124 == 0) +{ +lean_object* x_125; lean_object* x_126; +x_125 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1___boxed), 10, 2); +lean_closure_set(x_125, 0, x_109); +lean_closure_set(x_125, 1, x_120); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_126 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_125, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +lean_dec_ref(x_126); +lean_inc(x_127); +x_128 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2___boxed), 10, 2); +lean_closure_set(x_128, 0, x_127); +lean_closure_set(x_128, 1, x_31); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_129 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_128, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_129) == 0) +{ +lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_130 = lean_ctor_get(x_129, 0); +lean_inc(x_130); +lean_dec_ref(x_129); +x_131 = l_Lean_Expr_isHEq(x_127); +lean_dec(x_127); +x_132 = lean_box(x_131); +x_133 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_133, 0, x_132); +x_134 = lean_array_push(x_28, x_133); +x_135 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0)); +x_136 = lean_array_push(x_30, x_135); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_130); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_134); +lean_ctor_set(x_138, 1, x_137); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_24); +lean_ctor_set(x_139, 1, x_138); +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_111); +lean_ctor_set(x_140, 1, x_139); +x_13 = x_140; +x_14 = lean_box(0); +goto block_18; +} +else +{ +lean_object* x_141; lean_object* x_142; lean_object* x_143; +lean_dec(x_127); +lean_dec_ref(x_111); +lean_dec_ref(x_24); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_141 = lean_ctor_get(x_129, 0); +lean_inc(x_141); +if (lean_is_exclusive(x_129)) { + lean_ctor_release(x_129, 0); + x_142 = x_129; +} else { + lean_dec_ref(x_129); + x_142 = lean_box(0); +} +if (lean_is_scalar(x_142)) { + x_143 = lean_alloc_ctor(1, 1, 0); +} else { + x_143 = x_142; +} +lean_ctor_set(x_143, 0, x_141); +return x_143; +} +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; +lean_dec_ref(x_111); +lean_dec_ref(x_24); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_144 = lean_ctor_get(x_126, 0); +lean_inc(x_144); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + x_145 = x_126; +} else { + lean_dec_ref(x_126); + x_145 = lean_box(0); +} +if (lean_is_scalar(x_145)) { + x_146 = lean_alloc_ctor(1, 1, 0); +} else { + x_146 = x_145; +} +lean_ctor_set(x_146, 0, x_144); +return x_146; +} +} +else +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +lean_dec(x_120); +lean_dec(x_109); +x_147 = lean_box(0); +x_148 = lean_array_push(x_28, x_147); +x_149 = lean_array_push(x_30, x_49); +x_150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_31); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_148); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_152, 0, x_24); +lean_ctor_set(x_152, 1, x_151); +x_153 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_153, 0, x_111); +lean_ctor_set(x_153, 1, x_152); +x_13 = x_153; +x_14 = lean_box(0); +goto block_18; +} +} +else +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_120); +lean_dec_ref(x_111); +lean_dec(x_109); +lean_dec_ref(x_24); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_154 = lean_ctor_get(x_122, 0); +lean_inc(x_154); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + x_155 = x_122; +} else { + lean_dec_ref(x_122); + x_155 = lean_box(0); +} +if (lean_is_scalar(x_155)) { + x_156 = lean_alloc_ctor(1, 1, 0); +} else { + x_156 = x_155; +} +lean_ctor_set(x_156, 0, x_154); +return x_156; +} +} +else +{ +lean_dec(x_109); +goto block_119; +} +} +block_119: +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_112 = lean_box(0); +x_113 = lean_array_push(x_28, x_112); +x_114 = lean_array_push(x_30, x_49); +if (lean_is_scalar(x_32)) { + x_115 = lean_alloc_ctor(0, 2, 0); +} else { + x_115 = x_32; +} +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_31); +if (lean_is_scalar(x_29)) { + x_116 = lean_alloc_ctor(0, 2, 0); +} else { + x_116 = x_29; +} +lean_ctor_set(x_116, 0, x_113); +lean_ctor_set(x_116, 1, x_115); +if (lean_is_scalar(x_25)) { + x_117 = lean_alloc_ctor(0, 2, 0); +} else { + x_117 = x_25; +} +lean_ctor_set(x_117, 0, x_24); +lean_ctor_set(x_117, 1, x_116); +if (lean_is_scalar(x_27)) { + x_118 = lean_alloc_ctor(0, 2, 0); +} else { + x_118 = x_27; +} +lean_ctor_set(x_118, 0, x_111); +lean_ctor_set(x_118, 1, x_117); +x_13 = x_118; +x_14 = lean_box(0); +goto block_18; +} +} +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; +lean_dec(x_24); +x_157 = lean_ctor_get(x_26, 0); +x_158 = lean_ctor_get(x_26, 1); +x_159 = lean_ctor_get(x_26, 2); +x_160 = lean_array_fget(x_33, x_34); +x_161 = lean_unsigned_to_nat(1u); +x_162 = lean_nat_add(x_34, x_161); +lean_dec(x_34); +x_163 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_163, 0, x_33); +lean_ctor_set(x_163, 1, x_162); +lean_ctor_set(x_163, 2, x_35); +x_164 = lean_nat_dec_lt(x_158, x_159); +if (x_164 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_dec(x_160); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +if (lean_is_scalar(x_32)) { + x_165 = lean_alloc_ctor(0, 2, 0); +} else { + x_165 = x_32; +} +lean_ctor_set(x_165, 0, x_30); +lean_ctor_set(x_165, 1, x_31); +if (lean_is_scalar(x_29)) { + x_166 = lean_alloc_ctor(0, 2, 0); +} else { + x_166 = x_29; +} +lean_ctor_set(x_166, 0, x_28); +lean_ctor_set(x_166, 1, x_165); +if (lean_is_scalar(x_25)) { + x_167 = lean_alloc_ctor(0, 2, 0); +} else { + x_167 = x_25; +} +lean_ctor_set(x_167, 0, x_163); +lean_ctor_set(x_167, 1, x_166); +if (lean_is_scalar(x_27)) { + x_168 = lean_alloc_ctor(0, 2, 0); +} else { + x_168 = x_27; +} +lean_ctor_set(x_168, 0, x_26); +lean_ctor_set(x_168, 1, x_167); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_168); +return x_169; +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +lean_inc(x_159); +lean_inc(x_158); +lean_inc_ref(x_157); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_170 = x_26; +} else { + lean_dec_ref(x_26); + x_170 = lean_box(0); +} +x_171 = lean_array_fget(x_157, x_158); +x_172 = lean_nat_add(x_158, x_161); +lean_dec(x_158); +if (lean_is_scalar(x_170)) { + x_173 = lean_alloc_ctor(0, 3, 0); +} else { + x_173 = x_170; +} +lean_ctor_set(x_173, 0, x_157); +lean_ctor_set(x_173, 1, x_172); +lean_ctor_set(x_173, 2, x_159); +if (x_1 == 0) +{ +lean_dec(x_171); +goto block_181; +} +else +{ +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; +lean_dec(x_32); +lean_dec(x_29); +lean_dec(x_27); +lean_dec(x_25); +x_182 = lean_array_uget(x_2, x_4); +lean_inc(x_182); +x_183 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__0___boxed), 9, 1); +lean_closure_set(x_183, 0, x_182); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_184 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_183, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; uint8_t x_186; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +lean_dec_ref(x_184); +x_186 = lean_unbox(x_185); +lean_dec(x_185); +if (x_186 == 0) +{ +lean_object* x_187; lean_object* x_188; +x_187 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__1___boxed), 10, 2); +lean_closure_set(x_187, 0, x_171); +lean_closure_set(x_187, 1, x_182); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_188 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_187, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_188) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_189 = lean_ctor_get(x_188, 0); +lean_inc(x_189); +lean_dec_ref(x_188); +lean_inc(x_189); +x_190 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___lam__2___boxed), 10, 2); +lean_closure_set(x_190, 0, x_189); +lean_closure_set(x_190, 1, x_31); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_191 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_190, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_191) == 0) +{ +lean_object* x_192; uint8_t x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +lean_dec_ref(x_191); +x_193 = l_Lean_Expr_isHEq(x_189); +lean_dec(x_189); +x_194 = lean_box(x_193); +x_195 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_195, 0, x_194); +x_196 = lean_array_push(x_28, x_195); +x_197 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___closed__0)); +x_198 = lean_array_push(x_30, x_197); +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_198); +lean_ctor_set(x_199, 1, x_192); +x_200 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_200, 0, x_196); +lean_ctor_set(x_200, 1, x_199); +x_201 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_201, 0, x_163); +lean_ctor_set(x_201, 1, x_200); +x_202 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_202, 0, x_173); +lean_ctor_set(x_202, 1, x_201); +x_13 = x_202; +x_14 = lean_box(0); +goto block_18; +} +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; +lean_dec(x_189); +lean_dec_ref(x_173); +lean_dec_ref(x_163); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_203 = lean_ctor_get(x_191, 0); +lean_inc(x_203); +if (lean_is_exclusive(x_191)) { + lean_ctor_release(x_191, 0); + x_204 = x_191; +} else { + lean_dec_ref(x_191); + x_204 = lean_box(0); +} +if (lean_is_scalar(x_204)) { + x_205 = lean_alloc_ctor(1, 1, 0); +} else { + x_205 = x_204; +} +lean_ctor_set(x_205, 0, x_203); +return x_205; +} +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +lean_dec_ref(x_173); +lean_dec_ref(x_163); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_206 = lean_ctor_get(x_188, 0); +lean_inc(x_206); +if (lean_is_exclusive(x_188)) { + lean_ctor_release(x_188, 0); + x_207 = x_188; +} else { + lean_dec_ref(x_188); + x_207 = lean_box(0); +} +if (lean_is_scalar(x_207)) { + x_208 = lean_alloc_ctor(1, 1, 0); +} else { + x_208 = x_207; +} +lean_ctor_set(x_208, 0, x_206); +return x_208; +} +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +lean_dec(x_182); +lean_dec(x_171); +x_209 = lean_box(0); +x_210 = lean_array_push(x_28, x_209); +x_211 = lean_array_push(x_30, x_160); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_31); +x_213 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_213, 0, x_210); +lean_ctor_set(x_213, 1, x_212); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_163); +lean_ctor_set(x_214, 1, x_213); +x_215 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_215, 0, x_173); +lean_ctor_set(x_215, 1, x_214); +x_13 = x_215; +x_14 = lean_box(0); +goto block_18; +} +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +lean_dec(x_182); +lean_dec_ref(x_173); +lean_dec(x_171); +lean_dec_ref(x_163); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_28); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +x_216 = lean_ctor_get(x_184, 0); +lean_inc(x_216); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + x_217 = x_184; +} else { + lean_dec_ref(x_184); + x_217 = lean_box(0); +} +if (lean_is_scalar(x_217)) { + x_218 = lean_alloc_ctor(1, 1, 0); +} else { + x_218 = x_217; +} +lean_ctor_set(x_218, 0, x_216); +return x_218; +} +} +else +{ +lean_dec(x_171); +goto block_181; +} +} +block_181: +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_174 = lean_box(0); +x_175 = lean_array_push(x_28, x_174); +x_176 = lean_array_push(x_30, x_160); +if (lean_is_scalar(x_32)) { + x_177 = lean_alloc_ctor(0, 2, 0); +} else { + x_177 = x_32; +} +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_31); +if (lean_is_scalar(x_29)) { + x_178 = lean_alloc_ctor(0, 2, 0); +} else { + x_178 = x_29; +} +lean_ctor_set(x_178, 0, x_175); +lean_ctor_set(x_178, 1, x_177); +if (lean_is_scalar(x_25)) { + x_179 = lean_alloc_ctor(0, 2, 0); +} else { + x_179 = x_25; +} +lean_ctor_set(x_179, 0, x_163); +lean_ctor_set(x_179, 1, x_178); +if (lean_is_scalar(x_27)) { + x_180 = lean_alloc_ctor(0, 2, 0); +} else { + x_180 = x_27; +} +lean_ctor_set(x_180, 0, x_173); +lean_ctor_set(x_180, 1, x_179); +x_13 = x_180; +x_14 = lean_box(0); +goto block_18; +} +} +} +} +} +block_18: +{ +size_t x_15; size_t x_16; +x_15 = 1; +x_16 = lean_usize_add(x_4, x_15); +x_4 = x_16; +x_5 = x_13; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48___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) { +_start: +{ +uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_unbox(x_1); +x_14 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_15 = lean_unbox_usize(x_4); lean_dec(x_4); -lean_dec_ref(x_3); +x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48(x_13, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +lean_dec_ref(x_2); return x_16; } } -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9(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) { _start: { -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_6); -x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__1(x_1, x_2, x_3, x_4, x_5, x_13, x_7, x_8, x_9, x_10, x_11); +lean_object* x_10; +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__1)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__3)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, size_t 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, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_152; lean_object* x_153; uint8_t x_154; +x_152 = lean_array_get_size(x_7); +x_153 = lean_array_get_size(x_6); +x_154 = lean_nat_dec_eq(x_152, x_153); +if (x_154 == 0) +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_155 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2; +x_156 = l_Nat_reprFast(x_153); +x_157 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_157, 0, x_156); +x_158 = l_Lean_MessageData_ofFormat(x_157); +x_159 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_159, 0, x_155); +lean_ctor_set(x_159, 1, x_158); +x_160 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4; +x_161 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_161, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +x_163 = !lean_is_exclusive(x_162); +if (x_163 == 0) +{ +return x_162; +} +else +{ +lean_object* x_164; lean_object* x_165; +x_164 = lean_ctor_get(x_162, 0); +lean_inc(x_164); +lean_dec(x_162); +x_165 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_165, 0, x_164); +return x_165; +} +} +else +{ +x_16 = lean_box(0); +goto block_151; +} +block_151: +{ +lean_object* x_17; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc_ref(x_7); +x_17 = lean_apply_9(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, lean_box(0)); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; size_t x_30; lean_object* x_31; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = lean_ctor_get(x_2, 4); +lean_inc_ref(x_19); +lean_dec_ref(x_2); +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0; +x_22 = lean_array_get_size(x_3); +x_23 = l_Array_toSubarray___redArg(x_3, x_20, x_22); +x_24 = lean_array_get_size(x_19); +x_25 = l_Array_toSubarray___redArg(x_19, x_20, x_24); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_26, 1, x_18); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_21); +lean_ctor_set(x_27, 1, x_26); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_25); +lean_ctor_set(x_28, 1, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_23); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_array_size(x_7); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_31 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__48(x_4, x_7, x_30, x_5, x_29, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_34 = !lean_is_exclusive(x_33); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_33, 1); +x_36 = lean_ctor_get(x_33, 0); +lean_dec(x_36); +x_37 = !lean_is_exclusive(x_35); +if (x_37 == 0) +{ +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_35, 1); +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; uint8_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_40 = lean_ctor_get(x_35, 0); +x_41 = lean_ctor_get(x_38, 0); +x_42 = lean_ctor_get(x_38, 1); +x_43 = 0; +x_44 = 1; +x_45 = 1; +x_46 = lean_box(x_43); +x_47 = lean_box(x_44); +x_48 = lean_box(x_45); +lean_inc(x_42); +x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___boxed), 13, 5); +lean_closure_set(x_49, 0, x_7); +lean_closure_set(x_49, 1, x_42); +lean_closure_set(x_49, 2, x_46); +lean_closure_set(x_49, 3, x_47); +lean_closure_set(x_49, 4, x_48); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +lean_dec_ref(x_50); +x_52 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___boxed), 9, 1); +lean_closure_set(x_52, 0, x_42); +x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +if (lean_obj_tag(x_53) == 0) +{ +uint8_t x_54; +x_54 = !lean_is_exclusive(x_53); +if (x_54 == 0) +{ +lean_object* x_55; +x_55 = lean_ctor_get(x_53, 0); +lean_ctor_set(x_38, 1, x_41); +lean_ctor_set(x_38, 0, x_40); +lean_ctor_set(x_35, 0, x_55); +lean_ctor_set(x_33, 0, x_51); +lean_ctor_set(x_53, 0, x_33); +return x_53; +} +else +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_53, 0); +lean_inc(x_56); +lean_dec(x_53); +lean_ctor_set(x_38, 1, x_41); +lean_ctor_set(x_38, 0, x_40); +lean_ctor_set(x_35, 0, x_56); +lean_ctor_set(x_33, 0, x_51); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_33); +return x_57; +} +} +else +{ +uint8_t x_58; +lean_dec(x_51); +lean_free_object(x_38); +lean_dec(x_41); +lean_free_object(x_35); +lean_dec(x_40); +lean_free_object(x_33); +x_58 = !lean_is_exclusive(x_53); +if (x_58 == 0) +{ +return x_53; +} +else +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_53, 0); +lean_inc(x_59); +lean_dec(x_53); +x_60 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_60, 0, x_59); +return x_60; +} +} +} +else +{ +uint8_t x_61; +lean_free_object(x_38); +lean_dec(x_42); +lean_dec(x_41); +lean_free_object(x_35); +lean_dec(x_40); +lean_free_object(x_33); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_61 = !lean_is_exclusive(x_50); +if (x_61 == 0) +{ +return x_50; +} +else +{ +lean_object* x_62; lean_object* x_63; +x_62 = lean_ctor_get(x_50, 0); +lean_inc(x_62); +lean_dec(x_50); +x_63 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_63, 0, x_62); +return x_63; +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; uint8_t x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_64 = lean_ctor_get(x_35, 0); +x_65 = lean_ctor_get(x_38, 0); +x_66 = lean_ctor_get(x_38, 1); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_38); +x_67 = 0; +x_68 = 1; +x_69 = 1; +x_70 = lean_box(x_67); +x_71 = lean_box(x_68); +x_72 = lean_box(x_69); +lean_inc(x_66); +x_73 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___boxed), 13, 5); +lean_closure_set(x_73, 0, x_7); +lean_closure_set(x_73, 1, x_66); +lean_closure_set(x_73, 2, x_70); +lean_closure_set(x_73, 3, x_71); +lean_closure_set(x_73, 4, x_72); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +lean_dec_ref(x_74); +x_76 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___boxed), 9, 1); +lean_closure_set(x_76, 0, x_66); +x_77 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_76, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + x_79 = x_77; +} else { + lean_dec_ref(x_77); + x_79 = lean_box(0); +} +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_64); +lean_ctor_set(x_80, 1, x_65); +lean_ctor_set(x_35, 1, x_80); +lean_ctor_set(x_35, 0, x_78); +lean_ctor_set(x_33, 0, x_75); +if (lean_is_scalar(x_79)) { + x_81 = lean_alloc_ctor(0, 1, 0); +} else { + x_81 = x_79; +} +lean_ctor_set(x_81, 0, x_33); +return x_81; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_dec(x_75); +lean_dec(x_65); +lean_free_object(x_35); +lean_dec(x_64); +lean_free_object(x_33); +x_82 = lean_ctor_get(x_77, 0); +lean_inc(x_82); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + x_83 = x_77; +} else { + lean_dec_ref(x_77); + x_83 = lean_box(0); +} +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 1, 0); +} else { + x_84 = x_83; +} +lean_ctor_set(x_84, 0, x_82); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +lean_dec(x_66); +lean_dec(x_65); +lean_free_object(x_35); +lean_dec(x_64); +lean_free_object(x_33); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_85 = lean_ctor_get(x_74, 0); +lean_inc(x_85); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + x_86 = x_74; +} else { + lean_dec_ref(x_74); + x_86 = lean_box(0); +} +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(1, 1, 0); +} else { + x_87 = x_86; +} +lean_ctor_set(x_87, 0, x_85); +return x_87; +} +} +} +else +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_88 = lean_ctor_get(x_35, 1); +x_89 = lean_ctor_get(x_35, 0); +lean_inc(x_88); +lean_inc(x_89); +lean_dec(x_35); +x_90 = lean_ctor_get(x_88, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_88, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_92 = x_88; +} else { + lean_dec_ref(x_88); + x_92 = lean_box(0); +} +x_93 = 0; +x_94 = 1; +x_95 = 1; +x_96 = lean_box(x_93); +x_97 = lean_box(x_94); +x_98 = lean_box(x_95); +lean_inc(x_91); +x_99 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___boxed), 13, 5); +lean_closure_set(x_99, 0, x_7); +lean_closure_set(x_99, 1, x_91); +lean_closure_set(x_99, 2, x_96); +lean_closure_set(x_99, 3, x_97); +lean_closure_set(x_99, 4, x_98); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_100 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_99, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_100) == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +lean_dec_ref(x_100); +x_102 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___boxed), 9, 1); +lean_closure_set(x_102, 0, x_91); +x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + x_105 = x_103; +} else { + lean_dec_ref(x_103); + x_105 = lean_box(0); +} +if (lean_is_scalar(x_92)) { + x_106 = lean_alloc_ctor(0, 2, 0); +} else { + x_106 = x_92; +} +lean_ctor_set(x_106, 0, x_89); +lean_ctor_set(x_106, 1, x_90); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_104); +lean_ctor_set(x_107, 1, x_106); +lean_ctor_set(x_33, 1, x_107); +lean_ctor_set(x_33, 0, x_101); +if (lean_is_scalar(x_105)) { + x_108 = lean_alloc_ctor(0, 1, 0); +} else { + x_108 = x_105; +} +lean_ctor_set(x_108, 0, x_33); +return x_108; +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_dec(x_101); +lean_dec(x_92); +lean_dec(x_90); +lean_dec(x_89); +lean_free_object(x_33); +x_109 = lean_ctor_get(x_103, 0); +lean_inc(x_109); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + x_110 = x_103; +} else { + lean_dec_ref(x_103); + x_110 = lean_box(0); +} +if (lean_is_scalar(x_110)) { + x_111 = lean_alloc_ctor(1, 1, 0); +} else { + x_111 = x_110; +} +lean_ctor_set(x_111, 0, x_109); +return x_111; +} +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_89); +lean_free_object(x_33); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_112 = lean_ctor_get(x_100, 0); +lean_inc(x_112); +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + x_113 = x_100; +} else { + lean_dec_ref(x_100); + x_113 = lean_box(0); +} +if (lean_is_scalar(x_113)) { + x_114 = lean_alloc_ctor(1, 1, 0); +} else { + x_114 = x_113; +} +lean_ctor_set(x_114, 0, x_112); +return x_114; +} +} +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; uint8_t x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_115 = lean_ctor_get(x_33, 1); +lean_inc(x_115); +lean_dec(x_33); +x_116 = lean_ctor_get(x_115, 1); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 0); +lean_inc(x_117); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_118 = x_115; +} else { + lean_dec_ref(x_115); + x_118 = lean_box(0); +} +x_119 = lean_ctor_get(x_116, 0); +lean_inc(x_119); +x_120 = lean_ctor_get(x_116, 1); +lean_inc(x_120); +if (lean_is_exclusive(x_116)) { + lean_ctor_release(x_116, 0); + lean_ctor_release(x_116, 1); + x_121 = x_116; +} else { + lean_dec_ref(x_116); + x_121 = lean_box(0); +} +x_122 = 0; +x_123 = 1; +x_124 = 1; +x_125 = lean_box(x_122); +x_126 = lean_box(x_123); +x_127 = lean_box(x_124); +lean_inc(x_120); +x_128 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__7___boxed), 13, 5); +lean_closure_set(x_128, 0, x_7); +lean_closure_set(x_128, 1, x_120); +lean_closure_set(x_128, 2, x_125); +lean_closure_set(x_128, 3, x_126); +lean_closure_set(x_128, 4, x_127); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_129 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_128, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_129) == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_130 = lean_ctor_get(x_129, 0); +lean_inc(x_130); +lean_dec_ref(x_129); +x_131 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__9___boxed), 9, 1); +lean_closure_set(x_131, 0, x_120); +x_132 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_131, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +if (lean_obj_tag(x_132) == 0) +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_133 = lean_ctor_get(x_132, 0); +lean_inc(x_133); +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + x_134 = x_132; +} else { + lean_dec_ref(x_132); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_121)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_121; +} +lean_ctor_set(x_135, 0, x_117); +lean_ctor_set(x_135, 1, x_119); +if (lean_is_scalar(x_118)) { + x_136 = lean_alloc_ctor(0, 2, 0); +} else { + x_136 = x_118; +} +lean_ctor_set(x_136, 0, x_133); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_130); +lean_ctor_set(x_137, 1, x_136); +if (lean_is_scalar(x_134)) { + x_138 = lean_alloc_ctor(0, 1, 0); +} else { + x_138 = x_134; +} +lean_ctor_set(x_138, 0, x_137); +return x_138; +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_130); +lean_dec(x_121); +lean_dec(x_119); +lean_dec(x_118); +lean_dec(x_117); +x_139 = lean_ctor_get(x_132, 0); +lean_inc(x_139); +if (lean_is_exclusive(x_132)) { + lean_ctor_release(x_132, 0); + x_140 = x_132; +} else { + lean_dec_ref(x_132); + x_140 = lean_box(0); +} +if (lean_is_scalar(x_140)) { + x_141 = lean_alloc_ctor(1, 1, 0); +} else { + x_141 = x_140; +} +lean_ctor_set(x_141, 0, x_139); +return x_141; +} +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +lean_dec(x_121); +lean_dec(x_120); +lean_dec(x_119); +lean_dec(x_118); +lean_dec(x_117); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +x_142 = lean_ctor_get(x_129, 0); +lean_inc(x_142); +if (lean_is_exclusive(x_129)) { + lean_ctor_release(x_129, 0); + x_143 = x_129; +} else { + lean_dec_ref(x_129); + x_143 = lean_box(0); +} +if (lean_is_scalar(x_143)) { + x_144 = lean_alloc_ctor(1, 1, 0); +} else { + x_144 = x_143; +} +lean_ctor_set(x_144, 0, x_142); +return x_144; +} +} +} +else +{ +uint8_t x_145; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +x_145 = !lean_is_exclusive(x_31); +if (x_145 == 0) +{ +return x_31; +} +else +{ +lean_object* x_146; lean_object* x_147; +x_146 = lean_ctor_get(x_31, 0); +lean_inc(x_146); +lean_dec(x_31); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_146); +return x_147; +} +} +} +else +{ +uint8_t x_148; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_148 = !lean_is_exclusive(x_17); +if (x_148 == 0) +{ +return x_17; +} +else +{ +lean_object* x_149; lean_object* x_150; +x_149 = lean_ctor_get(x_17, 0); +lean_inc(x_149); +lean_dec(x_17); +x_150 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_150, 0, x_149); +return x_150; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___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, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; size_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_4); +x_17 = lean_unbox_usize(x_5); lean_dec(x_5); +x_18 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec_ref(x_6); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_st_ref_get(x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_10); +lean_dec(x_9); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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) { +_start: +{ +lean_object* x_11; uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg___lam__0___boxed), 10, 3); +lean_closure_set(x_11, 0, x_2); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = 1; +x_13 = 0; +x_14 = lean_box(0); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_12, x_13, x_12, x_13, x_14, x_11, x_3, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_15) == 0) +{ +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg___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: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +x_12 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0(uint8_t 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) { +_start: +{ +if (x_1 == 0) +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkEqRefl(x_2, x_6, x_7, x_8, x_9); +return x_11; +} +else +{ +lean_object* x_12; +x_12 = l_Lean_Meta_mkHEqRefl(x_2, x_6, x_7, x_8, x_9); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___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: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_1); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_3, x_2); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_4); +return x_19; +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_4); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_4, 1); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_23 = lean_ctor_get(x_4, 0); +x_24 = lean_ctor_get(x_21, 0); +x_25 = lean_ctor_get(x_21, 1); +x_26 = lean_ctor_get(x_23, 0); +x_27 = lean_ctor_get(x_23, 1); +x_28 = lean_ctor_get(x_23, 2); +x_29 = lean_nat_dec_lt(x_27, x_28); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_30 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_30, 0, x_4); +return x_30; +} +else +{ +uint8_t x_31; +lean_inc(x_28); +lean_inc(x_27); +lean_inc_ref(x_26); +x_31 = !lean_is_exclusive(x_23); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_32 = lean_ctor_get(x_23, 2); +lean_dec(x_32); +x_33 = lean_ctor_get(x_23, 1); +lean_dec(x_33); +x_34 = lean_ctor_get(x_23, 0); +lean_dec(x_34); +x_35 = lean_array_fget(x_26, x_27); +x_36 = lean_unsigned_to_nat(1u); +x_37 = lean_nat_add(x_27, x_36); +lean_dec(x_27); +lean_ctor_set(x_23, 1, x_37); +if (lean_obj_tag(x_35) == 0) +{ +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_38 = lean_ctor_get(x_35, 0); +lean_inc(x_38); +lean_dec_ref(x_35); +x_39 = lean_array_uget(x_1, x_3); +x_40 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___boxed), 10, 2); +lean_closure_set(x_40, 0, x_38); +lean_closure_set(x_40, 1, x_39); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_41) == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +lean_dec_ref(x_41); +x_43 = lean_array_push(x_25, x_42); +x_44 = lean_nat_add(x_24, x_36); +lean_dec(x_24); +lean_ctor_set(x_21, 1, x_43); +lean_ctor_set(x_21, 0, x_44); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +uint8_t x_45; +lean_dec_ref(x_23); +lean_free_object(x_21); +lean_dec(x_25); +lean_dec(x_24); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_45 = !lean_is_exclusive(x_41); +if (x_45 == 0) +{ +return x_41; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_41, 0); +lean_inc(x_46); +lean_dec(x_41); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +} +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_23); +x_48 = lean_array_fget(x_26, x_27); +x_49 = lean_unsigned_to_nat(1u); +x_50 = lean_nat_add(x_27, x_49); +lean_dec(x_27); +x_51 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_51, 0, x_26); +lean_ctor_set(x_51, 1, x_50); +lean_ctor_set(x_51, 2, x_28); +if (lean_obj_tag(x_48) == 0) +{ +lean_ctor_set(x_4, 0, x_51); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_52 = lean_ctor_get(x_48, 0); +lean_inc(x_52); +lean_dec_ref(x_48); +x_53 = lean_array_uget(x_1, x_3); +x_54 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___boxed), 10, 2); +lean_closure_set(x_54, 0, x_52); +lean_closure_set(x_54, 1, x_53); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +lean_dec_ref(x_55); +x_57 = lean_array_push(x_25, x_56); +x_58 = lean_nat_add(x_24, x_49); +lean_dec(x_24); +lean_ctor_set(x_21, 1, x_57); +lean_ctor_set(x_21, 0, x_58); +lean_ctor_set(x_4, 0, x_51); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_dec_ref(x_51); +lean_free_object(x_21); +lean_dec(x_25); +lean_dec(x_24); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_59 = lean_ctor_get(x_55, 0); +lean_inc(x_59); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + x_60 = x_55; +} else { + lean_dec_ref(x_55); + x_60 = lean_box(0); +} +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(1, 1, 0); +} else { + x_61 = x_60; +} +lean_ctor_set(x_61, 0, x_59); +return x_61; +} +} +} +} +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_62 = lean_ctor_get(x_4, 0); +x_63 = lean_ctor_get(x_21, 0); +x_64 = lean_ctor_get(x_21, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_21); +x_65 = lean_ctor_get(x_62, 0); +x_66 = lean_ctor_get(x_62, 1); +x_67 = lean_ctor_get(x_62, 2); +x_68 = lean_nat_dec_lt(x_66, x_67); +if (x_68 == 0) +{ +lean_object* x_69; lean_object* x_70; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_63); +lean_ctor_set(x_69, 1, x_64); +lean_ctor_set(x_4, 1, x_69); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_4); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_inc(x_67); +lean_inc(x_66); +lean_inc_ref(x_65); +if (lean_is_exclusive(x_62)) { + lean_ctor_release(x_62, 0); + lean_ctor_release(x_62, 1); + lean_ctor_release(x_62, 2); + x_71 = x_62; +} else { + lean_dec_ref(x_62); + x_71 = lean_box(0); +} +x_72 = lean_array_fget(x_65, x_66); +x_73 = lean_unsigned_to_nat(1u); +x_74 = lean_nat_add(x_66, x_73); +lean_dec(x_66); +if (lean_is_scalar(x_71)) { + x_75 = lean_alloc_ctor(0, 3, 0); +} else { + x_75 = x_71; +} +lean_ctor_set(x_75, 0, x_65); +lean_ctor_set(x_75, 1, x_74); +lean_ctor_set(x_75, 2, x_67); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_76; +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_63); +lean_ctor_set(x_76, 1, x_64); +lean_ctor_set(x_4, 1, x_76); +lean_ctor_set(x_4, 0, x_75); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_72, 0); +lean_inc(x_77); +lean_dec_ref(x_72); +x_78 = lean_array_uget(x_1, x_3); +x_79 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___boxed), 10, 2); +lean_closure_set(x_79, 0, x_77); +lean_closure_set(x_79, 1, x_78); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_80 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_79, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +lean_dec_ref(x_80); +x_82 = lean_array_push(x_64, x_81); +x_83 = lean_nat_add(x_63, x_73); +lean_dec(x_63); +x_84 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_82); +lean_ctor_set(x_4, 1, x_84); +lean_ctor_set(x_4, 0, x_75); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +lean_dec_ref(x_75); +lean_dec(x_64); +lean_dec(x_63); +lean_free_object(x_4); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + x_86 = x_80; +} else { + lean_dec_ref(x_80); + x_86 = lean_box(0); +} +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(1, 1, 0); +} else { + x_87 = x_86; +} +lean_ctor_set(x_87, 0, x_85); +return x_87; +} +} +} +} +} +else +{ +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; uint8_t x_96; +x_88 = lean_ctor_get(x_4, 1); +x_89 = lean_ctor_get(x_4, 0); +lean_inc(x_88); +lean_inc(x_89); +lean_dec(x_4); +x_90 = lean_ctor_get(x_88, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_88, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_92 = x_88; +} else { + lean_dec_ref(x_88); + x_92 = lean_box(0); +} +x_93 = lean_ctor_get(x_89, 0); +x_94 = lean_ctor_get(x_89, 1); +x_95 = lean_ctor_get(x_89, 2); +x_96 = lean_nat_dec_lt(x_94, x_95); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +if (lean_is_scalar(x_92)) { + x_97 = lean_alloc_ctor(0, 2, 0); +} else { + x_97 = x_92; +} +lean_ctor_set(x_97, 0, x_90); +lean_ctor_set(x_97, 1, x_91); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_89); +lean_ctor_set(x_98, 1, x_97); +x_99 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_99, 0, x_98); +return x_99; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +lean_inc(x_95); +lean_inc(x_94); +lean_inc_ref(x_93); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + lean_ctor_release(x_89, 2); + x_100 = x_89; +} else { + lean_dec_ref(x_89); + x_100 = lean_box(0); +} +x_101 = lean_array_fget(x_93, x_94); +x_102 = lean_unsigned_to_nat(1u); +x_103 = lean_nat_add(x_94, x_102); +lean_dec(x_94); +if (lean_is_scalar(x_100)) { + x_104 = lean_alloc_ctor(0, 3, 0); +} else { + x_104 = x_100; +} +lean_ctor_set(x_104, 0, x_93); +lean_ctor_set(x_104, 1, x_103); +lean_ctor_set(x_104, 2, x_95); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_105; lean_object* x_106; +if (lean_is_scalar(x_92)) { + x_105 = lean_alloc_ctor(0, 2, 0); +} else { + x_105 = x_92; +} +lean_ctor_set(x_105, 0, x_90); +lean_ctor_set(x_105, 1, x_91); +x_106 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_106, 0, x_104); +lean_ctor_set(x_106, 1, x_105); +x_12 = x_106; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_107 = lean_ctor_get(x_101, 0); +lean_inc(x_107); +lean_dec_ref(x_101); +x_108 = lean_array_uget(x_1, x_3); +x_109 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___lam__0___boxed), 10, 2); +lean_closure_set(x_109, 0, x_107); +lean_closure_set(x_109, 1, x_108); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_110 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_109, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_110) == 0) +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +lean_dec_ref(x_110); +x_112 = lean_array_push(x_91, x_111); +x_113 = lean_nat_add(x_90, x_102); +lean_dec(x_90); +if (lean_is_scalar(x_92)) { + x_114 = lean_alloc_ctor(0, 2, 0); +} else { + x_114 = x_92; +} +lean_ctor_set(x_114, 0, x_113); +lean_ctor_set(x_114, 1, x_112); +x_115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_115, 0, x_104); +lean_ctor_set(x_115, 1, x_114); +x_12 = x_115; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec_ref(x_104); +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_116 = lean_ctor_get(x_110, 0); +lean_inc(x_116); +if (lean_is_exclusive(x_110)) { + lean_ctor_release(x_110, 0); + x_117 = x_110; +} else { + lean_dec_ref(x_110); + x_117 = lean_box(0); +} +if (lean_is_scalar(x_117)) { + x_118 = lean_alloc_ctor(1, 1, 0); +} else { + x_118 = x_117; +} +lean_ctor_set(x_118, 0, x_116); +return x_118; +} +} +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_1); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = lean_unsigned_to_nat(1u); -x_16 = lean_box(x_3); -x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__1___boxed), 12, 6); -lean_closure_set(x_17, 0, x_1); -lean_closure_set(x_17, 1, x_2); -lean_closure_set(x_17, 2, x_8); -lean_closure_set(x_17, 3, x_9); -lean_closure_set(x_17, 4, x_15); -lean_closure_set(x_17, 5, x_16); -x_18 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_4, x_5, x_6, x_17, x_7, x_10, x_11, x_12, x_13); -if (lean_obj_tag(x_18) == 0) -{ -return x_18; -} -else -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -return x_18; -} -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_18, 0); -lean_inc(x_20); -lean_dec(x_18); -x_21 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_21, 0, x_20); -return x_21; +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_indentD(x_2); +x_4 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_3); +return x_4; } } -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___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, lean_object* x_14) { -_start: -{ -uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; -x_15 = lean_unbox(x_3); -x_16 = lean_unbox(x_5); -x_17 = lean_unbox(x_7); -x_18 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57(x_1, x_2, x_15, x_4, x_16, x_6, x_17, x_8, x_9, x_10, x_11, x_12, x_13); -return x_18; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6(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) { _start: { lean_object* x_10; @@ -18457,18 +18657,106 @@ x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0(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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47(lean_object* x_1, size_t x_2, size_t 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: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_3, x_2); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_4); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_array_uget(x_4, x_3); +lean_inc_ref(x_1); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_15 = lean_apply_8(x_1, x_14, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; size_t x_19; size_t x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_array_uset(x_4, x_3, x_17); +x_19 = 1; +x_20 = lean_usize_add(x_3, x_19); +x_21 = lean_array_uset(x_18, x_3, x_16); +x_3 = x_20; +x_4 = x_21; +goto _start; +} +else +{ +uint8_t x_23; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_1); +x_23 = !lean_is_exclusive(x_15); +if (x_23 == 0) +{ +return x_15; +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_15, 0); +lean_inc(x_24); +lean_dec(x_15); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_24); +return x_25; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_14; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0(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) { _start: { lean_object* x_9; @@ -18477,11 +18765,11 @@ lean_ctor_set(x_9, 0, x_1); return x_9; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___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) { _start: { lean_object* x_9; -x_9 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -18491,714 +18779,26 @@ lean_dec_ref(x_2); return x_9; } } -static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0() { -_start: -{ -lean_object* x_1; -x_1 = l_Subarray_empty(lean_box(0)); -return x_1; -} -} -static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Array_instInhabited(lean_box(0)); -return x_1; -} -} -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51(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) { -_start: -{ -lean_object* x_9; uint8_t x_10; -x_9 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__1; -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_11 = lean_ctor_get(x_9, 0); -x_12 = lean_ctor_get(x_9, 1); -lean_dec(x_12); -x_13 = !lean_is_exclusive(x_11); -if (x_13 == 0) -{ -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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_14 = lean_ctor_get(x_11, 0); -x_15 = lean_ctor_get(x_11, 2); -x_16 = lean_ctor_get(x_11, 3); -x_17 = lean_ctor_get(x_11, 4); -x_18 = lean_ctor_get(x_11, 1); -lean_dec(x_18); -x_19 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); -x_20 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); -lean_inc_ref(x_14); -x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_21, 0, x_14); -x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_22, 0, x_14); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_24, 0, x_17); -x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_25, 0, x_16); -x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_26, 0, x_15); -lean_ctor_set(x_11, 4, x_24); -lean_ctor_set(x_11, 3, x_25); -lean_ctor_set(x_11, 2, x_26); -lean_ctor_set(x_11, 1, x_19); -lean_ctor_set(x_11, 0, x_23); -lean_ctor_set(x_9, 1, x_20); -x_27 = l_ReaderT_instMonad___redArg(x_9); -x_28 = !lean_is_exclusive(x_27); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; uint8_t x_31; -x_29 = lean_ctor_get(x_27, 0); -x_30 = lean_ctor_get(x_27, 1); -lean_dec(x_30); -x_31 = !lean_is_exclusive(x_29); -if (x_31 == 0) -{ -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; 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; 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; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_32 = lean_ctor_get(x_29, 0); -x_33 = lean_ctor_get(x_29, 2); -x_34 = lean_ctor_get(x_29, 3); -x_35 = lean_ctor_get(x_29, 4); -x_36 = lean_ctor_get(x_29, 1); -lean_dec(x_36); -x_37 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); -x_38 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); -lean_inc_ref(x_32); -x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_39, 0, x_32); -x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_40, 0, x_32); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_42, 0, x_35); -x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_43, 0, x_34); -x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_44, 0, x_33); -lean_ctor_set(x_29, 4, x_42); -lean_ctor_set(x_29, 3, x_43); -lean_ctor_set(x_29, 2, x_44); -lean_ctor_set(x_29, 1, x_37); -lean_ctor_set(x_29, 0, x_41); -lean_ctor_set(x_27, 1, x_38); -x_45 = l_ReaderT_instMonad___redArg(x_27); -x_46 = l_ReaderT_instMonad___redArg(x_45); -x_47 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -x_48 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_47); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_47); -lean_ctor_set(x_51, 1, x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_47); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_47); -lean_ctor_set(x_53, 1, x_52); -x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = l_instInhabitedOfMonad___redArg(x_46, x_54); -x_56 = lean_panic_fn(x_55, x_1); -x_57 = lean_apply_7(x_56, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_57; -} -else -{ -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; 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; lean_object* 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; -x_58 = lean_ctor_get(x_29, 0); -x_59 = lean_ctor_get(x_29, 2); -x_60 = lean_ctor_get(x_29, 3); -x_61 = lean_ctor_get(x_29, 4); -lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_29); -x_62 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); -x_63 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); -lean_inc_ref(x_58); -x_64 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_64, 0, x_58); -x_65 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_65, 0, x_58); -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); -x_67 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_67, 0, x_61); -x_68 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_68, 0, x_60); -x_69 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_69, 0, x_59); -x_70 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_70, 0, x_66); -lean_ctor_set(x_70, 1, x_62); -lean_ctor_set(x_70, 2, x_69); -lean_ctor_set(x_70, 3, x_68); -lean_ctor_set(x_70, 4, x_67); -lean_ctor_set(x_27, 1, x_63); -lean_ctor_set(x_27, 0, x_70); -x_71 = l_ReaderT_instMonad___redArg(x_27); -x_72 = l_ReaderT_instMonad___redArg(x_71); -x_73 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -x_74 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_73); -lean_ctor_set(x_76, 1, x_75); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_73); -lean_ctor_set(x_77, 1, x_76); -x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_73); -lean_ctor_set(x_78, 1, x_77); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_73); -lean_ctor_set(x_79, 1, x_78); -x_80 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_80, 0, x_79); -x_81 = l_instInhabitedOfMonad___redArg(x_72, x_80); -x_82 = lean_panic_fn(x_81, x_1); -x_83 = lean_apply_7(x_82, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_83; -} -} -else -{ -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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_84 = lean_ctor_get(x_27, 0); -lean_inc(x_84); -lean_dec(x_27); -x_85 = lean_ctor_get(x_84, 0); -lean_inc_ref(x_85); -x_86 = lean_ctor_get(x_84, 2); -lean_inc(x_86); -x_87 = lean_ctor_get(x_84, 3); -lean_inc(x_87); -x_88 = lean_ctor_get(x_84, 4); -lean_inc(x_88); -if (lean_is_exclusive(x_84)) { - lean_ctor_release(x_84, 0); - lean_ctor_release(x_84, 1); - lean_ctor_release(x_84, 2); - lean_ctor_release(x_84, 3); - lean_ctor_release(x_84, 4); - x_89 = x_84; -} else { - lean_dec_ref(x_84); - x_89 = lean_box(0); -} -x_90 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); -x_91 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); -lean_inc_ref(x_85); -x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_92, 0, x_85); -x_93 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_93, 0, x_85); -x_94 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_95, 0, x_88); -x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_96, 0, x_87); -x_97 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_97, 0, x_86); -if (lean_is_scalar(x_89)) { - x_98 = lean_alloc_ctor(0, 5, 0); -} else { - x_98 = x_89; -} -lean_ctor_set(x_98, 0, x_94); -lean_ctor_set(x_98, 1, x_90); -lean_ctor_set(x_98, 2, x_97); -lean_ctor_set(x_98, 3, x_96); -lean_ctor_set(x_98, 4, x_95); -x_99 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_91); -x_100 = l_ReaderT_instMonad___redArg(x_99); -x_101 = l_ReaderT_instMonad___redArg(x_100); -x_102 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -x_103 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_103); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_102); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_106, 0, x_102); -lean_ctor_set(x_106, 1, x_105); -x_107 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_107, 0, x_102); -lean_ctor_set(x_107, 1, x_106); -x_108 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_108, 0, x_102); -lean_ctor_set(x_108, 1, x_107); -x_109 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_109, 0, x_108); -x_110 = l_instInhabitedOfMonad___redArg(x_101, x_109); -x_111 = lean_panic_fn(x_110, x_1); -x_112 = lean_apply_7(x_111, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_112; -} -} -else -{ -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_113 = lean_ctor_get(x_11, 0); -x_114 = lean_ctor_get(x_11, 2); -x_115 = lean_ctor_get(x_11, 3); -x_116 = lean_ctor_get(x_11, 4); -lean_inc(x_116); -lean_inc(x_115); -lean_inc(x_114); -lean_inc(x_113); -lean_dec(x_11); -x_117 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); -x_118 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); -lean_inc_ref(x_113); -x_119 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_119, 0, x_113); -x_120 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_120, 0, x_113); -x_121 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_121, 0, x_119); -lean_ctor_set(x_121, 1, x_120); -x_122 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_122, 0, x_116); -x_123 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_123, 0, x_115); -x_124 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_124, 0, x_114); -x_125 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_125, 0, x_121); -lean_ctor_set(x_125, 1, x_117); -lean_ctor_set(x_125, 2, x_124); -lean_ctor_set(x_125, 3, x_123); -lean_ctor_set(x_125, 4, x_122); -lean_ctor_set(x_9, 1, x_118); -lean_ctor_set(x_9, 0, x_125); -x_126 = l_ReaderT_instMonad___redArg(x_9); -x_127 = lean_ctor_get(x_126, 0); -lean_inc_ref(x_127); -if (lean_is_exclusive(x_126)) { - lean_ctor_release(x_126, 0); - lean_ctor_release(x_126, 1); - x_128 = x_126; -} else { - lean_dec_ref(x_126); - x_128 = lean_box(0); -} -x_129 = lean_ctor_get(x_127, 0); -lean_inc_ref(x_129); -x_130 = lean_ctor_get(x_127, 2); -lean_inc(x_130); -x_131 = lean_ctor_get(x_127, 3); -lean_inc(x_131); -x_132 = lean_ctor_get(x_127, 4); -lean_inc(x_132); -if (lean_is_exclusive(x_127)) { - lean_ctor_release(x_127, 0); - lean_ctor_release(x_127, 1); - lean_ctor_release(x_127, 2); - lean_ctor_release(x_127, 3); - lean_ctor_release(x_127, 4); - x_133 = x_127; -} else { - lean_dec_ref(x_127); - x_133 = lean_box(0); -} -x_134 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); -x_135 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); -lean_inc_ref(x_129); -x_136 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_136, 0, x_129); -x_137 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_137, 0, x_129); -x_138 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_137); -x_139 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_139, 0, x_132); -x_140 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_140, 0, x_131); -x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_141, 0, x_130); -if (lean_is_scalar(x_133)) { - x_142 = lean_alloc_ctor(0, 5, 0); -} else { - x_142 = x_133; -} -lean_ctor_set(x_142, 0, x_138); -lean_ctor_set(x_142, 1, x_134); -lean_ctor_set(x_142, 2, x_141); -lean_ctor_set(x_142, 3, x_140); -lean_ctor_set(x_142, 4, x_139); -if (lean_is_scalar(x_128)) { - x_143 = lean_alloc_ctor(0, 2, 0); -} else { - x_143 = x_128; -} -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_135); -x_144 = l_ReaderT_instMonad___redArg(x_143); -x_145 = l_ReaderT_instMonad___redArg(x_144); -x_146 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -x_147 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -x_148 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_148, 0, x_146); -lean_ctor_set(x_148, 1, x_147); -x_149 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_149, 0, x_146); -lean_ctor_set(x_149, 1, x_148); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_146); -lean_ctor_set(x_150, 1, x_149); -x_151 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_151, 0, x_146); -lean_ctor_set(x_151, 1, x_150); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_146); -lean_ctor_set(x_152, 1, x_151); -x_153 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_153, 0, x_152); -x_154 = l_instInhabitedOfMonad___redArg(x_145, x_153); -x_155 = lean_panic_fn(x_154, x_1); -x_156 = lean_apply_7(x_155, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_156; -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_157 = lean_ctor_get(x_9, 0); -lean_inc(x_157); -lean_dec(x_9); -x_158 = lean_ctor_get(x_157, 0); -lean_inc_ref(x_158); -x_159 = lean_ctor_get(x_157, 2); -lean_inc(x_159); -x_160 = lean_ctor_get(x_157, 3); -lean_inc(x_160); -x_161 = lean_ctor_get(x_157, 4); -lean_inc(x_161); -if (lean_is_exclusive(x_157)) { - lean_ctor_release(x_157, 0); - lean_ctor_release(x_157, 1); - lean_ctor_release(x_157, 2); - lean_ctor_release(x_157, 3); - lean_ctor_release(x_157, 4); - x_162 = x_157; -} else { - lean_dec_ref(x_157); - x_162 = lean_box(0); -} -x_163 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); -x_164 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); -lean_inc_ref(x_158); -x_165 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_165, 0, x_158); -x_166 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_166, 0, x_158); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_168, 0, x_161); -x_169 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_169, 0, x_160); -x_170 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_170, 0, x_159); -if (lean_is_scalar(x_162)) { - x_171 = lean_alloc_ctor(0, 5, 0); -} else { - x_171 = x_162; -} -lean_ctor_set(x_171, 0, x_167); -lean_ctor_set(x_171, 1, x_163); -lean_ctor_set(x_171, 2, x_170); -lean_ctor_set(x_171, 3, x_169); -lean_ctor_set(x_171, 4, x_168); -x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_164); -x_173 = l_ReaderT_instMonad___redArg(x_172); -x_174 = lean_ctor_get(x_173, 0); -lean_inc_ref(x_174); -if (lean_is_exclusive(x_173)) { - lean_ctor_release(x_173, 0); - lean_ctor_release(x_173, 1); - x_175 = x_173; -} else { - lean_dec_ref(x_173); - x_175 = lean_box(0); -} -x_176 = lean_ctor_get(x_174, 0); -lean_inc_ref(x_176); -x_177 = lean_ctor_get(x_174, 2); -lean_inc(x_177); -x_178 = lean_ctor_get(x_174, 3); -lean_inc(x_178); -x_179 = lean_ctor_get(x_174, 4); -lean_inc(x_179); -if (lean_is_exclusive(x_174)) { - lean_ctor_release(x_174, 0); - lean_ctor_release(x_174, 1); - lean_ctor_release(x_174, 2); - lean_ctor_release(x_174, 3); - lean_ctor_release(x_174, 4); - x_180 = x_174; -} else { - lean_dec_ref(x_174); - x_180 = lean_box(0); -} -x_181 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); -x_182 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); -lean_inc_ref(x_176); -x_183 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); -lean_closure_set(x_183, 0, x_176); -x_184 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_184, 0, x_176); -x_185 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_185, 0, x_183); -lean_ctor_set(x_185, 1, x_184); -x_186 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); -lean_closure_set(x_186, 0, x_179); -x_187 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); -lean_closure_set(x_187, 0, x_178); -x_188 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); -lean_closure_set(x_188, 0, x_177); -if (lean_is_scalar(x_180)) { - x_189 = lean_alloc_ctor(0, 5, 0); -} else { - x_189 = x_180; -} -lean_ctor_set(x_189, 0, x_185); -lean_ctor_set(x_189, 1, x_181); -lean_ctor_set(x_189, 2, x_188); -lean_ctor_set(x_189, 3, x_187); -lean_ctor_set(x_189, 4, x_186); -if (lean_is_scalar(x_175)) { - x_190 = lean_alloc_ctor(0, 2, 0); -} else { - x_190 = x_175; -} -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_182); -x_191 = l_ReaderT_instMonad___redArg(x_190); -x_192 = l_ReaderT_instMonad___redArg(x_191); -x_193 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0; -x_194 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1; -x_195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_195, 0, x_193); -lean_ctor_set(x_195, 1, x_194); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_193); -lean_ctor_set(x_196, 1, x_195); -x_197 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_197, 0, x_193); -lean_ctor_set(x_197, 1, x_196); -x_198 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_198, 0, x_193); -lean_ctor_set(x_198, 1, x_197); -x_199 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_199, 0, x_193); -lean_ctor_set(x_199, 1, x_198); -x_200 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_200, 0, x_199); -x_201 = l_instInhabitedOfMonad___redArg(x_192, x_200); -x_202 = lean_panic_fn(x_201, x_1); -x_203 = lean_apply_7(x_202, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_203; -} -} -} -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___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) { -_start: -{ -lean_object* x_9; -x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0(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_13; -x_13 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_8, x_9, x_10, x_11, lean_box(0)); -return x_13; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0___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) { -_start: -{ -lean_object* x_13; -x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -return x_13; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___lam__0___boxed), 12, 3); -lean_closure_set(x_11, 0, x_3); -lean_closure_set(x_11, 1, x_4); -lean_closure_set(x_11, 2, x_5); -x_12 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_11, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_12) == 0) -{ -return x_12; -} -else -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -return x_12; -} -else -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_12, 0); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_15, 0, x_14); -return x_15; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11(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) { _start: { lean_object* x_11; -x_11 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Meta_mkAppM(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9(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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11___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_17; -x_17 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg(x_1, x_2, x_3, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_17) == 0) -{ -uint8_t x_18; -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 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; lean_object* x_25; lean_object* x_26; -x_19 = lean_ctor_get(x_17, 0); -x_20 = lean_array_push(x_4, x_19); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_5); -lean_ctor_set(x_21, 1, x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_6); -lean_ctor_set(x_22, 1, x_21); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_7); -lean_ctor_set(x_23, 1, x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_8); -lean_ctor_set(x_24, 1, x_23); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_9); -lean_ctor_set(x_25, 1, x_24); -x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_17, 0, x_26); -return x_17; -} -else -{ -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; lean_object* x_34; lean_object* x_35; -x_27 = lean_ctor_get(x_17, 0); -lean_inc(x_27); -lean_dec(x_17); -x_28 = lean_array_push(x_4, x_27); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_5); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_6); -lean_ctor_set(x_30, 1, x_29); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_7); -lean_ctor_set(x_31, 1, x_30); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_8); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_9); -lean_ctor_set(x_33, 1, x_32); -x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_33); -x_35 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_35, 0, x_34); -return x_35; +lean_object* x_11; +x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; } } -else -{ -uint8_t x_36; -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -x_36 = !lean_is_exclusive(x_17); -if (x_36 == 0) -{ -return x_17; -} -else -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_17, 0); -lean_inc(x_37); -lean_dec(x_17); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -return x_38; -} -} -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -lean_object* x_17; -x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9(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, x_14, x_15); -return x_17; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__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) { _start: { lean_object* x_11; @@ -19206,11 +18806,11 @@ x_11 = l_Lean_Meta_instantiateLambda(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__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) { _start: { lean_object* x_11; -x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -19218,7 +18818,7 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -19226,14 +18826,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -19245,22 +18845,22 @@ lean_dec_ref(x_1); return x_17; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__0)); +x_1 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3(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, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3(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, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_34; lean_object* x_35; x_19 = l_Array_append___redArg(x_1, x_2); lean_inc_ref(x_19); -x_34 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__1___boxed), 10, 2); +x_34 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__1___boxed), 10, 2); lean_closure_set(x_34, 0, x_3); lean_closure_set(x_34, 1, x_19); lean_inc(x_17); @@ -19299,7 +18899,7 @@ if (x_37 == 0) { lean_object* x_38; lean_object* x_39; lean_dec_ref(x_35); -x_38 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1; +x_38 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1; lean_inc(x_17); lean_inc_ref(x_16); lean_inc(x_15); @@ -19344,7 +18944,7 @@ x_27 = 1; x_28 = lean_box(x_8); x_29 = lean_box(x_9); x_30 = lean_box(x_27); -x_31 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__2___boxed), 13, 5); +x_31 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__2___boxed), 13, 5); lean_closure_set(x_31, 0, x_26); lean_closure_set(x_31, 1, x_23); lean_closure_set(x_31, 2, x_28); @@ -19384,7 +18984,7 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -19408,20 +19008,20 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_8); x_20 = lean_unbox(x_9); -x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec_ref(x_10); lean_dec_ref(x_7); lean_dec_ref(x_2); return x_21; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_box(x_7); x_20 = lean_box(x_8); -x_21 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___boxed), 18, 9); +x_21 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___boxed), 18, 9); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_10); lean_closure_set(x_21, 2, x_2); @@ -19437,7 +19037,7 @@ x_23 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do return x_23; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -19461,17 +19061,17 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_7); x_20 = lean_unbox(x_8); -x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_21; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_19 = lean_box(x_6); x_20 = lean_box(x_7); -x_21 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__4___boxed), 18, 9); +x_21 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__4___boxed), 18, 9); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_2); lean_closure_set(x_21, 2, x_3); @@ -19487,7 +19087,7 @@ x_23 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do return x_23; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -19511,31 +19111,11 @@ _start: uint8_t x_19; uint8_t x_20; lean_object* x_21; x_19 = lean_unbox(x_6); x_20 = lean_unbox(x_7); -x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_21 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6(x_1, x_2, x_3, x_4, x_5, x_19, x_20, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_21; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_11; -} -} -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52(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_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54(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) { _start: { lean_object* x_9; uint8_t x_10; @@ -19970,15 +19550,15 @@ return x_168; } } } -LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52___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_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54___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) { _start: { lean_object* x_9; -x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5(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) { _start: { lean_object* x_11; @@ -19986,11 +19566,11 @@ x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5___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_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -19998,39 +19578,40 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8(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) { _start: { lean_object* x_11; -x_11 = l_Lean_Meta_mkAppM(x_1, x_2, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Meta_instantiateForall(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); +lean_dec_ref(x_2); return x_11; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3() { _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 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__2)); +x_1 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__2)); x_2 = lean_unsigned_to_nat(8u); x_3 = lean_unsigned_to_nat(319u); -x_4 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__1)); -x_5 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__0)); +x_4 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__1)); +x_5 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); return x_6; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20040,7 +19621,7 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -20049,17 +19630,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7; -x_2 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8; +x_1 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7; +x_2 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8; x_3 = lean_array_push(x_2, x_1); return x_3; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10() { +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20069,7 +19650,7 @@ x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; uint8_t x_25; @@ -20089,15 +19670,15 @@ lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_26 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3; -x_27 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__52(x_26, x_14, x_15, x_16, x_17, x_18, x_19); +x_26 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3; +x_27 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__54(x_26, x_14, x_15, x_16, x_17, x_18, x_19); return x_27; } else { lean_object* x_28; lean_object* x_29; lean_inc_ref(x_12); -x_28 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__5___boxed), 10, 2); +x_28 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__5___boxed), 10, 2); lean_closure_set(x_28, 0, x_2); lean_closure_set(x_28, 1, x_12); lean_inc(x_19); @@ -20120,7 +19701,7 @@ if (lean_is_exclusive(x_29)) { } x_32 = lean_box(x_6); x_33 = lean_box(x_7); -x_34 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__6___boxed), 18, 9); +x_34 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__6___boxed), 18, 9); lean_closure_set(x_34, 0, x_13); lean_closure_set(x_34, 1, x_3); lean_closure_set(x_34, 2, x_4); @@ -20145,10 +19726,10 @@ goto block_51; else { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_52 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10; +x_52 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10; x_53 = lean_mk_empty_array_with_capacity(x_11); x_54 = lean_array_push(x_53, x_52); -x_55 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__8___boxed), 10, 2); +x_55 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__8___boxed), 10, 2); lean_closure_set(x_55, 0, x_30); lean_closure_set(x_55, 1, x_54); lean_inc(x_19); @@ -20222,10 +19803,10 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean x_45 = lean_ctor_get(x_44, 0); lean_inc(x_45); lean_dec_ref(x_44); -x_46 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__6)); -x_47 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9; +x_46 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__6)); +x_47 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9; x_48 = lean_array_push(x_47, x_45); -x_49 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11___boxed), 10, 2); +x_49 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11___boxed), 10, 2); lean_closure_set(x_49, 0, x_46); lean_closure_set(x_49, 1, x_48); x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_36, x_37, x_38, x_39, x_40, x_41); @@ -20265,7 +19846,7 @@ return x_29; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -20292,26 +19873,733 @@ uint8_t x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; x_21 = lean_unbox(x_6); x_22 = lean_unbox(x_7); x_23 = lean_unbox(x_10); -x_24 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_21, x_22, x_8, x_9, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_24 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7(x_1, x_2, x_3, x_4, x_5, x_21, x_22, x_8, x_9, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); lean_dec(x_11); lean_dec_ref(x_1); return x_24; } } -static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1() { +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Subarray_empty(lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Array_instInhabited(lean_box(0)); +return x_1; +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53(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) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__1; +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +lean_dec(x_12); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_14 = lean_ctor_get(x_11, 0); +x_15 = lean_ctor_get(x_11, 2); +x_16 = lean_ctor_get(x_11, 3); +x_17 = lean_ctor_get(x_11, 4); +x_18 = lean_ctor_get(x_11, 1); +lean_dec(x_18); +x_19 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); +x_20 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); +lean_inc_ref(x_14); +x_21 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_21, 0, x_14); +x_22 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_22, 0, x_14); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_24, 0, x_17); +x_25 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_25, 0, x_16); +x_26 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_26, 0, x_15); +lean_ctor_set(x_11, 4, x_24); +lean_ctor_set(x_11, 3, x_25); +lean_ctor_set(x_11, 2, x_26); +lean_ctor_set(x_11, 1, x_19); +lean_ctor_set(x_11, 0, x_23); +lean_ctor_set(x_9, 1, x_20); +x_27 = l_ReaderT_instMonad___redArg(x_9); +x_28 = !lean_is_exclusive(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_29 = lean_ctor_get(x_27, 0); +x_30 = lean_ctor_get(x_27, 1); +lean_dec(x_30); +x_31 = !lean_is_exclusive(x_29); +if (x_31 == 0) +{ +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; 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; 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; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_32 = lean_ctor_get(x_29, 0); +x_33 = lean_ctor_get(x_29, 2); +x_34 = lean_ctor_get(x_29, 3); +x_35 = lean_ctor_get(x_29, 4); +x_36 = lean_ctor_get(x_29, 1); +lean_dec(x_36); +x_37 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); +x_38 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); +lean_inc_ref(x_32); +x_39 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_39, 0, x_32); +x_40 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_40, 0, x_32); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_42, 0, x_35); +x_43 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_43, 0, x_34); +x_44 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_44, 0, x_33); +lean_ctor_set(x_29, 4, x_42); +lean_ctor_set(x_29, 3, x_43); +lean_ctor_set(x_29, 2, x_44); +lean_ctor_set(x_29, 1, x_37); +lean_ctor_set(x_29, 0, x_41); +lean_ctor_set(x_27, 1, x_38); +x_45 = l_ReaderT_instMonad___redArg(x_27); +x_46 = l_ReaderT_instMonad___redArg(x_45); +x_47 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +x_48 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_50, 0, x_47); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_47); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_52, 0, x_47); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_47); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_54, 0, x_53); +x_55 = l_instInhabitedOfMonad___redArg(x_46, x_54); +x_56 = lean_panic_fn(x_55, x_1); +x_57 = lean_apply_7(x_56, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_57; +} +else +{ +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; 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; lean_object* 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; +x_58 = lean_ctor_get(x_29, 0); +x_59 = lean_ctor_get(x_29, 2); +x_60 = lean_ctor_get(x_29, 3); +x_61 = lean_ctor_get(x_29, 4); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_29); +x_62 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); +x_63 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); +lean_inc_ref(x_58); +x_64 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_64, 0, x_58); +x_65 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_65, 0, x_58); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +x_67 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_67, 0, x_61); +x_68 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_68, 0, x_60); +x_69 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_69, 0, x_59); +x_70 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_70, 0, x_66); +lean_ctor_set(x_70, 1, x_62); +lean_ctor_set(x_70, 2, x_69); +lean_ctor_set(x_70, 3, x_68); +lean_ctor_set(x_70, 4, x_67); +lean_ctor_set(x_27, 1, x_63); +lean_ctor_set(x_27, 0, x_70); +x_71 = l_ReaderT_instMonad___redArg(x_27); +x_72 = l_ReaderT_instMonad___redArg(x_71); +x_73 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +x_74 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_73); +lean_ctor_set(x_76, 1, x_75); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_73); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_78, 0, x_73); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_73); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_80, 0, x_79); +x_81 = l_instInhabitedOfMonad___redArg(x_72, x_80); +x_82 = lean_panic_fn(x_81, x_1); +x_83 = lean_apply_7(x_82, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_83; +} +} +else +{ +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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_84 = lean_ctor_get(x_27, 0); +lean_inc(x_84); +lean_dec(x_27); +x_85 = lean_ctor_get(x_84, 0); +lean_inc_ref(x_85); +x_86 = lean_ctor_get(x_84, 2); +lean_inc(x_86); +x_87 = lean_ctor_get(x_84, 3); +lean_inc(x_87); +x_88 = lean_ctor_get(x_84, 4); +lean_inc(x_88); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + lean_ctor_release(x_84, 2); + lean_ctor_release(x_84, 3); + lean_ctor_release(x_84, 4); + x_89 = x_84; +} else { + lean_dec_ref(x_84); + x_89 = lean_box(0); +} +x_90 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); +x_91 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); +lean_inc_ref(x_85); +x_92 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_92, 0, x_85); +x_93 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_93, 0, x_85); +x_94 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_95, 0, x_88); +x_96 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_96, 0, x_87); +x_97 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_97, 0, x_86); +if (lean_is_scalar(x_89)) { + x_98 = lean_alloc_ctor(0, 5, 0); +} else { + x_98 = x_89; +} +lean_ctor_set(x_98, 0, x_94); +lean_ctor_set(x_98, 1, x_90); +lean_ctor_set(x_98, 2, x_97); +lean_ctor_set(x_98, 3, x_96); +lean_ctor_set(x_98, 4, x_95); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_91); +x_100 = l_ReaderT_instMonad___redArg(x_99); +x_101 = l_ReaderT_instMonad___redArg(x_100); +x_102 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +x_103 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_104); +x_106 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_106, 0, x_102); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_102); +lean_ctor_set(x_107, 1, x_106); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_102); +lean_ctor_set(x_108, 1, x_107); +x_109 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_110 = l_instInhabitedOfMonad___redArg(x_101, x_109); +x_111 = lean_panic_fn(x_110, x_1); +x_112 = lean_apply_7(x_111, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_112; +} +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_113 = lean_ctor_get(x_11, 0); +x_114 = lean_ctor_get(x_11, 2); +x_115 = lean_ctor_get(x_11, 3); +x_116 = lean_ctor_get(x_11, 4); +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_11); +x_117 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); +x_118 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); +lean_inc_ref(x_113); +x_119 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_119, 0, x_113); +x_120 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_120, 0, x_113); +x_121 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_121, 0, x_119); +lean_ctor_set(x_121, 1, x_120); +x_122 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_122, 0, x_116); +x_123 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_123, 0, x_115); +x_124 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_124, 0, x_114); +x_125 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_125, 0, x_121); +lean_ctor_set(x_125, 1, x_117); +lean_ctor_set(x_125, 2, x_124); +lean_ctor_set(x_125, 3, x_123); +lean_ctor_set(x_125, 4, x_122); +lean_ctor_set(x_9, 1, x_118); +lean_ctor_set(x_9, 0, x_125); +x_126 = l_ReaderT_instMonad___redArg(x_9); +x_127 = lean_ctor_get(x_126, 0); +lean_inc_ref(x_127); +if (lean_is_exclusive(x_126)) { + lean_ctor_release(x_126, 0); + lean_ctor_release(x_126, 1); + x_128 = x_126; +} else { + lean_dec_ref(x_126); + x_128 = lean_box(0); +} +x_129 = lean_ctor_get(x_127, 0); +lean_inc_ref(x_129); +x_130 = lean_ctor_get(x_127, 2); +lean_inc(x_130); +x_131 = lean_ctor_get(x_127, 3); +lean_inc(x_131); +x_132 = lean_ctor_get(x_127, 4); +lean_inc(x_132); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + lean_ctor_release(x_127, 2); + lean_ctor_release(x_127, 3); + lean_ctor_release(x_127, 4); + x_133 = x_127; +} else { + lean_dec_ref(x_127); + x_133 = lean_box(0); +} +x_134 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); +x_135 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); +lean_inc_ref(x_129); +x_136 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_136, 0, x_129); +x_137 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_137, 0, x_129); +x_138 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_138, 0, x_136); +lean_ctor_set(x_138, 1, x_137); +x_139 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_139, 0, x_132); +x_140 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_140, 0, x_131); +x_141 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_141, 0, x_130); +if (lean_is_scalar(x_133)) { + x_142 = lean_alloc_ctor(0, 5, 0); +} else { + x_142 = x_133; +} +lean_ctor_set(x_142, 0, x_138); +lean_ctor_set(x_142, 1, x_134); +lean_ctor_set(x_142, 2, x_141); +lean_ctor_set(x_142, 3, x_140); +lean_ctor_set(x_142, 4, x_139); +if (lean_is_scalar(x_128)) { + x_143 = lean_alloc_ctor(0, 2, 0); +} else { + x_143 = x_128; +} +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_135); +x_144 = l_ReaderT_instMonad___redArg(x_143); +x_145 = l_ReaderT_instMonad___redArg(x_144); +x_146 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +x_147 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +x_148 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_146); +lean_ctor_set(x_149, 1, x_148); +x_150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_150, 0, x_146); +lean_ctor_set(x_150, 1, x_149); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_146); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_152, 0, x_146); +lean_ctor_set(x_152, 1, x_151); +x_153 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_153, 0, x_152); +x_154 = l_instInhabitedOfMonad___redArg(x_145, x_153); +x_155 = lean_panic_fn(x_154, x_1); +x_156 = lean_apply_7(x_155, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_156; +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_157 = lean_ctor_get(x_9, 0); +lean_inc(x_157); +lean_dec(x_9); +x_158 = lean_ctor_get(x_157, 0); +lean_inc_ref(x_158); +x_159 = lean_ctor_get(x_157, 2); +lean_inc(x_159); +x_160 = lean_ctor_get(x_157, 3); +lean_inc(x_160); +x_161 = lean_ctor_get(x_157, 4); +lean_inc(x_161); +if (lean_is_exclusive(x_157)) { + lean_ctor_release(x_157, 0); + lean_ctor_release(x_157, 1); + lean_ctor_release(x_157, 2); + lean_ctor_release(x_157, 3); + lean_ctor_release(x_157, 4); + x_162 = x_157; +} else { + lean_dec_ref(x_157); + x_162 = lean_box(0); +} +x_163 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__2)); +x_164 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__3)); +lean_inc_ref(x_158); +x_165 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_165, 0, x_158); +x_166 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_166, 0, x_158); +x_167 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_166); +x_168 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_168, 0, x_161); +x_169 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_169, 0, x_160); +x_170 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_170, 0, x_159); +if (lean_is_scalar(x_162)) { + x_171 = lean_alloc_ctor(0, 5, 0); +} else { + x_171 = x_162; +} +lean_ctor_set(x_171, 0, x_167); +lean_ctor_set(x_171, 1, x_163); +lean_ctor_set(x_171, 2, x_170); +lean_ctor_set(x_171, 3, x_169); +lean_ctor_set(x_171, 4, x_168); +x_172 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_164); +x_173 = l_ReaderT_instMonad___redArg(x_172); +x_174 = lean_ctor_get(x_173, 0); +lean_inc_ref(x_174); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_175 = x_173; +} else { + lean_dec_ref(x_173); + x_175 = lean_box(0); +} +x_176 = lean_ctor_get(x_174, 0); +lean_inc_ref(x_176); +x_177 = lean_ctor_get(x_174, 2); +lean_inc(x_177); +x_178 = lean_ctor_get(x_174, 3); +lean_inc(x_178); +x_179 = lean_ctor_get(x_174, 4); +lean_inc(x_179); +if (lean_is_exclusive(x_174)) { + lean_ctor_release(x_174, 0); + lean_ctor_release(x_174, 1); + lean_ctor_release(x_174, 2); + lean_ctor_release(x_174, 3); + lean_ctor_release(x_174, 4); + x_180 = x_174; +} else { + lean_dec_ref(x_174); + x_180 = lean_box(0); +} +x_181 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__4)); +x_182 = ((lean_object*)(l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDecls_loop___at___00Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33_spec__38___redArg___closed__5)); +lean_inc_ref(x_176); +x_183 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_183, 0, x_176); +x_184 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_184, 0, x_176); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +x_186 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_186, 0, x_179); +x_187 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_187, 0, x_178); +x_188 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_188, 0, x_177); +if (lean_is_scalar(x_180)) { + x_189 = lean_alloc_ctor(0, 5, 0); +} else { + x_189 = x_180; +} +lean_ctor_set(x_189, 0, x_185); +lean_ctor_set(x_189, 1, x_181); +lean_ctor_set(x_189, 2, x_188); +lean_ctor_set(x_189, 3, x_187); +lean_ctor_set(x_189, 4, x_186); +if (lean_is_scalar(x_175)) { + x_190 = lean_alloc_ctor(0, 2, 0); +} else { + x_190 = x_175; +} +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_182); +x_191 = l_ReaderT_instMonad___redArg(x_190); +x_192 = l_ReaderT_instMonad___redArg(x_191); +x_193 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0; +x_194 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1; +x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_193); +lean_ctor_set(x_196, 1, x_195); +x_197 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_197, 0, x_193); +lean_ctor_set(x_197, 1, x_196); +x_198 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_198, 0, x_193); +lean_ctor_set(x_198, 1, x_197); +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_193); +lean_ctor_set(x_199, 1, x_198); +x_200 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_200, 0, x_199); +x_201 = l_instInhabitedOfMonad___redArg(x_192, x_200); +x_202 = lean_panic_fn(x_201, x_1); +x_203 = lean_apply_7(x_202, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_203; +} +} +} +LEAN_EXPORT lean_object* l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___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) { +_start: +{ +lean_object* x_9; +x_9 = l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0(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_13; +x_13 = lean_apply_9(x_1, x_4, x_5, x_2, x_3, x_8, x_9, x_10, x_11, lean_box(0)); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0___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) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___lam__0___boxed), 12, 3); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = l_Lean_Meta_Match_forallAltVarsTelescope___redArg(x_1, x_2, x_11, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +return x_12; +} +else +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg___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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9(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, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_17; +x_17 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg(x_1, x_2, x_3, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 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; lean_object* x_25; lean_object* x_26; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_array_push(x_4, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_5); +lean_ctor_set(x_21, 1, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_6); +lean_ctor_set(x_22, 1, x_21); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_7); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_8); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_9); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_17, 0, x_26); +return x_17; +} +else +{ +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; lean_object* x_34; lean_object* x_35; +x_27 = lean_ctor_get(x_17, 0); +lean_inc(x_27); +lean_dec(x_17); +x_28 = lean_array_push(x_4, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_5); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_6); +lean_ctor_set(x_30, 1, x_29); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_7); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_8); +lean_ctor_set(x_32, 1, x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_9); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +x_35 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_35, 0, x_34); +return x_35; +} +} +else +{ +uint8_t x_36; +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +x_36 = !lean_is_exclusive(x_17); +if (x_36 == 0) +{ +return x_17; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_17, 0); +lean_inc(x_37); +lean_dec(x_17); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +return x_38; +} +} +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +lean_object* x_17; +x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9(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, x_14, x_15); +return x_17; +} +} +static lean_object* _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1() { _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 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__0)); +x_1 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__0)); x_2 = lean_unsigned_to_nat(6u); x_3 = lean_unsigned_to_nat(317u); -x_4 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__1)); -x_5 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__0)); +x_4 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__1)); +x_5 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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_15; uint8_t x_35; @@ -20390,7 +20678,7 @@ if (x_60 == 0) lean_object* x_61; lean_object* x_62; x_61 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_61, 0, x_7); -x_62 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_62 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_62, 0, x_61); x_15 = x_62; goto block_34; @@ -20426,7 +20714,7 @@ lean_object* x_74; lean_object* x_75; lean_dec(x_70); x_74 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_74, 0, x_7); -x_75 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_75 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_75, 0, x_74); x_15 = x_75; goto block_34; @@ -20462,7 +20750,7 @@ lean_dec(x_83); lean_dec(x_70); x_86 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_86, 0, x_7); -x_87 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_87 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_87, 0, x_86); x_15 = x_87; goto block_34; @@ -20499,7 +20787,7 @@ lean_dec(x_83); lean_dec(x_70); x_98 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_98, 0, x_7); -x_99 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_99 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_99, 0, x_98); x_15 = x_99; goto block_34; @@ -20537,7 +20825,7 @@ lean_dec(x_83); lean_dec(x_70); x_110 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_110, 0, x_7); -x_111 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_111 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_111, 0, x_110); x_15 = x_111; goto block_34; @@ -20583,8 +20871,8 @@ lean_dec(x_83); lean_dec_ref(x_41); lean_dec(x_70); lean_dec(x_55); -x_120 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_121 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_120 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_121 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_121, 0, x_120); x_15 = x_121; goto block_34; @@ -20602,7 +20890,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_123); -x_127 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_127 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_127, 0, x_95); lean_closure_set(x_127, 1, x_70); lean_closure_set(x_127, 2, x_123); @@ -20617,7 +20905,7 @@ lean_closure_set(x_127, 10, x_71); x_128 = lean_nat_add(x_105, x_71); lean_dec(x_105); lean_ctor_set(x_43, 1, x_128); -x_129 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_129 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_129, 0, x_83); lean_closure_set(x_129, 1, x_107); lean_closure_set(x_129, 2, x_127); @@ -20654,8 +20942,8 @@ lean_dec(x_83); lean_dec_ref(x_41); lean_dec(x_70); lean_dec(x_55); -x_134 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_135 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_134 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_135 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_135, 0, x_134); x_15 = x_135; goto block_34; @@ -20673,7 +20961,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_137); -x_141 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_141 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_141, 0, x_95); lean_closure_set(x_141, 1, x_70); lean_closure_set(x_141, 2, x_137); @@ -20691,7 +20979,7 @@ x_143 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_143, 0, x_104); lean_ctor_set(x_143, 1, x_142); lean_ctor_set(x_143, 2, x_106); -x_144 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_144 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_144, 0, x_83); lean_closure_set(x_144, 1, x_107); lean_closure_set(x_144, 2, x_141); @@ -20732,7 +21020,7 @@ lean_dec(x_70); lean_ctor_set(x_37, 0, x_150); x_152 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_152, 0, x_7); -x_153 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_153 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_153, 0, x_152); x_15 = x_153; goto block_34; @@ -20777,8 +21065,8 @@ lean_dec(x_83); lean_dec_ref(x_41); lean_dec(x_70); lean_dec(x_55); -x_159 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_160 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_159 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_160 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_160, 0, x_159); x_15 = x_160; goto block_34; @@ -20796,7 +21084,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_162); -x_166 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_166 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_166, 0, x_95); lean_closure_set(x_166, 1, x_70); lean_closure_set(x_166, 2, x_162); @@ -20818,7 +21106,7 @@ if (lean_is_scalar(x_154)) { lean_ctor_set(x_168, 0, x_145); lean_ctor_set(x_168, 1, x_167); lean_ctor_set(x_168, 2, x_147); -x_169 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_169 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_169, 0, x_83); lean_closure_set(x_169, 1, x_148); lean_closure_set(x_169, 2, x_166); @@ -20859,7 +21147,7 @@ lean_dec(x_70); lean_ctor_set(x_38, 0, x_175); x_177 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_177, 0, x_7); -x_178 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_178 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_178, 0, x_177); x_15 = x_178; goto block_34; @@ -20905,7 +21193,7 @@ lean_ctor_set(x_38, 0, x_175); lean_ctor_set(x_37, 0, x_185); x_187 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_187, 0, x_7); -x_188 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_188 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_188, 0, x_187); x_15 = x_188; goto block_34; @@ -20950,8 +21238,8 @@ lean_dec(x_83); lean_dec_ref(x_41); lean_dec(x_70); lean_dec(x_55); -x_194 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_195 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_194 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_195 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_195, 0, x_194); x_15 = x_195; goto block_34; @@ -20969,7 +21257,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_197); -x_201 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_201 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_201, 0, x_173); lean_closure_set(x_201, 1, x_70); lean_closure_set(x_201, 2, x_197); @@ -20991,7 +21279,7 @@ if (lean_is_scalar(x_189)) { lean_ctor_set(x_203, 0, x_180); lean_ctor_set(x_203, 1, x_202); lean_ctor_set(x_203, 2, x_182); -x_204 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_204 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_204, 0, x_83); lean_closure_set(x_204, 1, x_183); lean_closure_set(x_204, 2, x_201); @@ -21032,7 +21320,7 @@ lean_dec(x_70); lean_ctor_set(x_39, 0, x_210); x_212 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_212, 0, x_7); -x_213 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_213 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_213, 0, x_212); x_15 = x_213; goto block_34; @@ -21077,7 +21365,7 @@ lean_ctor_set(x_39, 0, x_210); lean_ctor_set(x_38, 0, x_220); x_222 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_222, 0, x_7); -x_223 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_223 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_223, 0, x_222); x_15 = x_223; goto block_34; @@ -21124,7 +21412,7 @@ lean_ctor_set(x_38, 0, x_220); lean_ctor_set(x_37, 0, x_230); x_232 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_232, 0, x_7); -x_233 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_233 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_233, 0, x_232); x_15 = x_233; goto block_34; @@ -21169,8 +21457,8 @@ lean_dec(x_208); lean_dec_ref(x_41); lean_dec(x_70); lean_dec(x_55); -x_239 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_240 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_239 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_240 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_240, 0, x_239); x_15 = x_240; goto block_34; @@ -21188,7 +21476,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_242); -x_246 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_246 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_246, 0, x_218); lean_closure_set(x_246, 1, x_70); lean_closure_set(x_246, 2, x_242); @@ -21210,7 +21498,7 @@ if (lean_is_scalar(x_234)) { lean_ctor_set(x_248, 0, x_225); lean_ctor_set(x_248, 1, x_247); lean_ctor_set(x_248, 2, x_227); -x_249 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_249 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_249, 0, x_208); lean_closure_set(x_249, 1, x_228); lean_closure_set(x_249, 2, x_246); @@ -21252,7 +21540,7 @@ lean_dec(x_253); lean_ctor_set(x_40, 0, x_256); x_258 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_258, 0, x_7); -x_259 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_259 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_259, 0, x_258); x_15 = x_259; goto block_34; @@ -21296,7 +21584,7 @@ lean_ctor_set(x_40, 0, x_256); lean_ctor_set(x_39, 0, x_266); x_268 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_268, 0, x_7); -x_269 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_269 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_269, 0, x_268); x_15 = x_269; goto block_34; @@ -21342,7 +21630,7 @@ lean_ctor_set(x_39, 0, x_266); lean_ctor_set(x_38, 0, x_276); x_278 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_278, 0, x_7); -x_279 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_279 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_279, 0, x_278); x_15 = x_279; goto block_34; @@ -21390,7 +21678,7 @@ lean_ctor_set(x_38, 0, x_276); lean_ctor_set(x_37, 0, x_286); x_288 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_288, 0, x_7); -x_289 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_289 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_289, 0, x_288); x_15 = x_289; goto block_34; @@ -21435,8 +21723,8 @@ lean_dec(x_264); lean_dec_ref(x_256); lean_dec(x_253); lean_dec(x_55); -x_295 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_296 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_295 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_296 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_296, 0, x_295); x_15 = x_296; goto block_34; @@ -21454,7 +21742,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_298); -x_302 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_302 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_302, 0, x_274); lean_closure_set(x_302, 1, x_253); lean_closure_set(x_302, 2, x_298); @@ -21476,7 +21764,7 @@ if (lean_is_scalar(x_290)) { lean_ctor_set(x_304, 0, x_281); lean_ctor_set(x_304, 1, x_303); lean_ctor_set(x_304, 2, x_283); -x_305 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_305 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_305, 0, x_264); lean_closure_set(x_305, 1, x_284); lean_closure_set(x_305, 2, x_302); @@ -21515,7 +21803,7 @@ lean_ctor_set(x_311, 1, x_306); lean_ctor_set(x_39, 1, x_311); x_312 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_312, 0, x_7); -x_313 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_313 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_313, 0, x_312); x_15 = x_313; goto block_34; @@ -21561,7 +21849,7 @@ lean_ctor_set(x_323, 1, x_306); lean_ctor_set(x_39, 1, x_323); x_324 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_324, 0, x_7); -x_325 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_325 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_325, 0, x_324); x_15 = x_325; goto block_34; @@ -21608,7 +21896,7 @@ lean_ctor_set(x_39, 1, x_334); lean_ctor_set(x_39, 0, x_332); x_335 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_335, 0, x_7); -x_336 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_336 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_336, 0, x_335); x_15 = x_336; goto block_34; @@ -21657,7 +21945,7 @@ lean_ctor_set(x_39, 0, x_332); lean_ctor_set(x_38, 0, x_343); x_346 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_346, 0, x_7); -x_347 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_347 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_347, 0, x_346); x_15 = x_347; goto block_34; @@ -21708,7 +21996,7 @@ lean_ctor_set(x_38, 0, x_343); lean_ctor_set(x_37, 0, x_354); x_357 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_357, 0, x_7); -x_358 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_358 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_358, 0, x_357); x_15 = x_358; goto block_34; @@ -21752,8 +22040,8 @@ lean_dec(x_330); lean_dec_ref(x_321); lean_dec(x_318); lean_dec(x_306); -x_364 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_365 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_364 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_365 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_365, 0, x_364); x_15 = x_365; goto block_34; @@ -21771,7 +22059,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_367); -x_371 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_371 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_371, 0, x_341); lean_closure_set(x_371, 1, x_318); lean_closure_set(x_371, 2, x_367); @@ -21793,7 +22081,7 @@ if (lean_is_scalar(x_359)) { lean_ctor_set(x_373, 0, x_349); lean_ctor_set(x_373, 1, x_372); lean_ctor_set(x_373, 2, x_351); -x_374 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_374 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_374, 0, x_330); lean_closure_set(x_374, 1, x_352); lean_closure_set(x_374, 2, x_371); @@ -21849,7 +22137,7 @@ lean_ctor_set(x_383, 1, x_382); lean_ctor_set(x_38, 1, x_383); x_384 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_384, 0, x_7); -x_385 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_385 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_385, 0, x_384); x_15 = x_385; goto block_34; @@ -21902,7 +22190,7 @@ lean_ctor_set(x_396, 1, x_395); lean_ctor_set(x_38, 1, x_396); x_397 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_397, 0, x_7); -x_398 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_398 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_398, 0, x_397); x_15 = x_398; goto block_34; @@ -21955,7 +22243,7 @@ lean_ctor_set(x_408, 1, x_407); lean_ctor_set(x_38, 1, x_408); x_409 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_409, 0, x_7); -x_410 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_410 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_410, 0, x_409); x_15 = x_410; goto block_34; @@ -22010,7 +22298,7 @@ lean_ctor_set(x_38, 1, x_420); lean_ctor_set(x_38, 0, x_417); x_421 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_421, 0, x_7); -x_422 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_422 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_422, 0, x_421); x_15 = x_422; goto block_34; @@ -22067,7 +22355,7 @@ lean_ctor_set(x_38, 0, x_417); lean_ctor_set(x_37, 0, x_429); x_433 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_433, 0, x_7); -x_434 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_434 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_434, 0, x_433); x_15 = x_434; goto block_34; @@ -22111,8 +22399,8 @@ lean_dec(x_403); lean_dec_ref(x_393); lean_dec(x_390); lean_dec(x_376); -x_440 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_441 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_440 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_441 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_441, 0, x_440); x_15 = x_441; goto block_34; @@ -22130,7 +22418,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_443); -x_447 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_447 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_447, 0, x_415); lean_closure_set(x_447, 1, x_390); lean_closure_set(x_447, 2, x_443); @@ -22152,7 +22440,7 @@ if (lean_is_scalar(x_435)) { lean_ctor_set(x_449, 0, x_424); lean_ctor_set(x_449, 1, x_448); lean_ctor_set(x_449, 2, x_426); -x_450 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_450 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_450, 0, x_403); lean_closure_set(x_450, 1, x_427); lean_closure_set(x_450, 2, x_447); @@ -22225,7 +22513,7 @@ lean_ctor_set(x_462, 1, x_461); lean_ctor_set(x_37, 1, x_462); x_463 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_463, 0, x_7); -x_464 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_464 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_464, 0, x_463); x_15 = x_464; goto block_34; @@ -22285,7 +22573,7 @@ lean_ctor_set(x_476, 1, x_475); lean_ctor_set(x_37, 1, x_476); x_477 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_477, 0, x_7); -x_478 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_478 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_478, 0, x_477); x_15 = x_478; goto block_34; @@ -22345,7 +22633,7 @@ lean_ctor_set(x_489, 1, x_488); lean_ctor_set(x_37, 1, x_489); x_490 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_490, 0, x_7); -x_491 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_491 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_491, 0, x_490); x_15 = x_491; goto block_34; @@ -22406,7 +22694,7 @@ lean_ctor_set(x_502, 1, x_501); lean_ctor_set(x_37, 1, x_502); x_503 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_503, 0, x_7); -x_504 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_504 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_504, 0, x_503); x_15 = x_504; goto block_34; @@ -22469,7 +22757,7 @@ lean_ctor_set(x_37, 1, x_515); lean_ctor_set(x_37, 0, x_511); x_516 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_516, 0, x_7); -x_517 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_517 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_517, 0, x_516); x_15 = x_517; goto block_34; @@ -22513,8 +22801,8 @@ lean_dec(x_483); lean_dec_ref(x_472); lean_dec(x_469); lean_dec(x_454); -x_523 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_524 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_523 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_524 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_524, 0, x_523); x_15 = x_524; goto block_34; @@ -22532,7 +22820,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_526); -x_530 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_530 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_530, 0, x_496); lean_closure_set(x_530, 1, x_469); lean_closure_set(x_530, 2, x_526); @@ -22554,7 +22842,7 @@ if (lean_is_scalar(x_518)) { lean_ctor_set(x_532, 0, x_506); lean_ctor_set(x_532, 1, x_531); lean_ctor_set(x_532, 2, x_508); -x_533 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_533 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_533, 0, x_483); lean_closure_set(x_533, 1, x_509); lean_closure_set(x_533, 2, x_530); @@ -22644,7 +22932,7 @@ lean_ctor_set(x_548, 1, x_547); lean_ctor_set(x_7, 1, x_548); x_549 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_549, 0, x_7); -x_550 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_550 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_550, 0, x_549); x_15 = x_550; goto block_34; @@ -22711,7 +22999,7 @@ lean_ctor_set(x_563, 1, x_562); lean_ctor_set(x_7, 1, x_563); x_564 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_564, 0, x_7); -x_565 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_565 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_565, 0, x_564); x_15 = x_565; goto block_34; @@ -22778,7 +23066,7 @@ lean_ctor_set(x_577, 1, x_576); lean_ctor_set(x_7, 1, x_577); x_578 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_578, 0, x_7); -x_579 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_579 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_579, 0, x_578); x_15 = x_579; goto block_34; @@ -22846,7 +23134,7 @@ lean_ctor_set(x_591, 1, x_590); lean_ctor_set(x_7, 1, x_591); x_592 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_592, 0, x_7); -x_593 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_593 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_593, 0, x_592); x_15 = x_593; goto block_34; @@ -22915,7 +23203,7 @@ lean_ctor_set(x_605, 1, x_604); lean_ctor_set(x_7, 1, x_605); x_606 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_606, 0, x_7); -x_607 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_607 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_607, 0, x_606); x_15 = x_607; goto block_34; @@ -22959,8 +23247,8 @@ lean_dec(x_570); lean_dec_ref(x_558); lean_dec(x_555); lean_dec(x_539); -x_613 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_614 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_613 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_614 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_614, 0, x_613); x_15 = x_614; goto block_34; @@ -22978,7 +23266,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_616); -x_620 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_620 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_620, 0, x_584); lean_closure_set(x_620, 1, x_555); lean_closure_set(x_620, 2, x_616); @@ -23000,7 +23288,7 @@ if (lean_is_scalar(x_608)) { lean_ctor_set(x_622, 0, x_595); lean_ctor_set(x_622, 1, x_621); lean_ctor_set(x_622, 2, x_597); -x_623 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_623 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_623, 0, x_570); lean_closure_set(x_623, 1, x_598); lean_closure_set(x_623, 2, x_620); @@ -23106,7 +23394,7 @@ lean_ctor_set(x_641, 0, x_624); lean_ctor_set(x_641, 1, x_640); x_642 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_642, 0, x_641); -x_643 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_643 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_643, 0, x_642); x_15 = x_643; goto block_34; @@ -23179,7 +23467,7 @@ lean_ctor_set(x_657, 0, x_624); lean_ctor_set(x_657, 1, x_656); x_658 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_658, 0, x_657); -x_659 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_659 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_659, 0, x_658); x_15 = x_659; goto block_34; @@ -23252,7 +23540,7 @@ lean_ctor_set(x_672, 0, x_624); lean_ctor_set(x_672, 1, x_671); x_673 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_673, 0, x_672); -x_674 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_674 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_674, 0, x_673); x_15 = x_674; goto block_34; @@ -23326,7 +23614,7 @@ lean_ctor_set(x_687, 0, x_624); lean_ctor_set(x_687, 1, x_686); x_688 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_688, 0, x_687); -x_689 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_689 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_689, 0, x_688); x_15 = x_689; goto block_34; @@ -23401,7 +23689,7 @@ lean_ctor_set(x_702, 0, x_624); lean_ctor_set(x_702, 1, x_701); x_703 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_703, 0, x_702); -x_704 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__0___boxed), 8, 1); +x_704 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_704, 0, x_703); x_15 = x_704; goto block_34; @@ -23445,8 +23733,8 @@ lean_dec(x_664); lean_dec_ref(x_651); lean_dec(x_648); lean_dec(x_631); -x_710 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1; -x_711 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___boxed), 8, 1); +x_710 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1; +x_711 = lean_alloc_closure((void*)(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___boxed), 8, 1); lean_closure_set(x_711, 0, x_710); x_15 = x_711; goto block_34; @@ -23464,7 +23752,7 @@ lean_inc(x_4); lean_inc(x_6); lean_inc_ref(x_2); lean_inc(x_713); -x_717 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___boxed), 20, 11); +x_717 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___boxed), 20, 11); lean_closure_set(x_717, 0, x_679); lean_closure_set(x_717, 1, x_648); lean_closure_set(x_717, 2, x_713); @@ -23486,7 +23774,7 @@ if (lean_is_scalar(x_705)) { lean_ctor_set(x_719, 0, x_691); lean_ctor_set(x_719, 1, x_718); lean_ctor_set(x_719, 2, x_693); -x_720 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__9___boxed), 16, 9); +x_720 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__9___boxed), 16, 9); lean_closure_set(x_720, 0, x_664); lean_closure_set(x_720, 1, x_694); lean_closure_set(x_720, 2, x_717); @@ -23631,767 +23919,36 @@ return x_33; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___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, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_3); -x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4(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) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_st_ref_get(x_7); -x_10 = lean_ctor_get(x_9, 0); -lean_inc_ref(x_10); -lean_dec(x_9); -x_11 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55(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) { -_start: -{ -lean_object* x_9; lean_object* x_10; -x_9 = ((lean_object*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___closed__0)); -x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_10) == 0) -{ -uint8_t x_11; -x_11 = !lean_is_exclusive(x_10); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_12, x_1); -lean_ctor_set(x_10, 0, x_13); -return x_10; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_10, 0); -lean_inc(x_14); -lean_dec(x_10); -x_15 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_14, x_1); -x_16 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_16, 0, x_15); -return x_16; -} -} -else -{ -uint8_t x_17; -lean_dec(x_1); -x_17 = !lean_is_exclusive(x_10); -if (x_17 == 0) -{ -return x_10; -} -else -{ -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_10, 0); -lean_inc(x_18); -lean_dec(x_10); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_18); -return x_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_3); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0(uint8_t 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) { -_start: -{ -if (x_1 == 0) -{ lean_object* x_11; -x_11 = l_Lean_Meta_mkEqRefl(x_2, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } -else -{ -lean_object* x_12; -x_12 = l_Lean_Meta_mkHEqRefl(x_2, x_6, x_7, x_8, x_9); -return x_12; } -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4___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: { -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_1); -x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_11; +x_11 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -return x_12; +return x_11; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; -x_18 = lean_usize_dec_lt(x_3, x_2); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_4); -return x_19; -} -else -{ -uint8_t x_20; -x_20 = !lean_is_exclusive(x_4); -if (x_20 == 0) -{ -lean_object* x_21; uint8_t x_22; -x_21 = lean_ctor_get(x_4, 1); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_23 = lean_ctor_get(x_4, 0); -x_24 = lean_ctor_get(x_21, 0); -x_25 = lean_ctor_get(x_21, 1); -x_26 = lean_ctor_get(x_23, 0); -x_27 = lean_ctor_get(x_23, 1); -x_28 = lean_ctor_get(x_23, 2); -x_29 = lean_nat_dec_lt(x_27, x_28); -if (x_29 == 0) -{ -lean_object* x_30; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_4); -return x_30; -} -else -{ -uint8_t x_31; -lean_inc(x_28); -lean_inc(x_27); -lean_inc_ref(x_26); -x_31 = !lean_is_exclusive(x_23); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_23, 2); -lean_dec(x_32); -x_33 = lean_ctor_get(x_23, 1); -lean_dec(x_33); -x_34 = lean_ctor_get(x_23, 0); -lean_dec(x_34); -x_35 = lean_array_fget(x_26, x_27); -x_36 = lean_unsigned_to_nat(1u); -x_37 = lean_nat_add(x_27, x_36); -lean_dec(x_27); -lean_ctor_set(x_23, 1, x_37); -if (lean_obj_tag(x_35) == 0) -{ -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_38 = lean_ctor_get(x_35, 0); -lean_inc(x_38); -lean_dec_ref(x_35); -x_39 = lean_array_uget(x_1, x_3); -x_40 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___boxed), 10, 2); -lean_closure_set(x_40, 0, x_38); -lean_closure_set(x_40, 1, x_39); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -lean_dec_ref(x_41); -x_43 = lean_array_push(x_25, x_42); -x_44 = lean_nat_add(x_24, x_36); -lean_dec(x_24); -lean_ctor_set(x_21, 1, x_43); -lean_ctor_set(x_21, 0, x_44); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -uint8_t x_45; -lean_dec_ref(x_23); -lean_free_object(x_21); -lean_dec(x_25); -lean_dec(x_24); -lean_free_object(x_4); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_45 = !lean_is_exclusive(x_41); -if (x_45 == 0) -{ -return x_41; -} -else -{ -lean_object* x_46; lean_object* x_47; -x_46 = lean_ctor_get(x_41, 0); -lean_inc(x_46); -lean_dec(x_41); -x_47 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_47, 0, x_46); -return x_47; -} -} -} -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec(x_23); -x_48 = lean_array_fget(x_26, x_27); -x_49 = lean_unsigned_to_nat(1u); -x_50 = lean_nat_add(x_27, x_49); -lean_dec(x_27); -x_51 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_51, 0, x_26); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_28); -if (lean_obj_tag(x_48) == 0) -{ -lean_ctor_set(x_4, 0, x_51); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_52 = lean_ctor_get(x_48, 0); -lean_inc(x_52); -lean_dec_ref(x_48); -x_53 = lean_array_uget(x_1, x_3); -x_54 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___boxed), 10, 2); -lean_closure_set(x_54, 0, x_52); -lean_closure_set(x_54, 1, x_53); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_55 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -lean_dec_ref(x_55); -x_57 = lean_array_push(x_25, x_56); -x_58 = lean_nat_add(x_24, x_49); -lean_dec(x_24); -lean_ctor_set(x_21, 1, x_57); -lean_ctor_set(x_21, 0, x_58); -lean_ctor_set(x_4, 0, x_51); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -lean_dec_ref(x_51); -lean_free_object(x_21); -lean_dec(x_25); -lean_dec(x_24); -lean_free_object(x_4); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_59 = lean_ctor_get(x_55, 0); -lean_inc(x_59); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - x_60 = x_55; -} else { - lean_dec_ref(x_55); - x_60 = lean_box(0); -} -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(1, 1, 0); -} else { - x_61 = x_60; -} -lean_ctor_set(x_61, 0, x_59); -return x_61; -} -} -} -} -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_62 = lean_ctor_get(x_4, 0); -x_63 = lean_ctor_get(x_21, 0); -x_64 = lean_ctor_get(x_21, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_21); -x_65 = lean_ctor_get(x_62, 0); -x_66 = lean_ctor_get(x_62, 1); -x_67 = lean_ctor_get(x_62, 2); -x_68 = lean_nat_dec_lt(x_66, x_67); -if (x_68 == 0) -{ -lean_object* x_69; lean_object* x_70; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_63); -lean_ctor_set(x_69, 1, x_64); -lean_ctor_set(x_4, 1, x_69); -x_70 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_70, 0, x_4); -return x_70; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -lean_inc(x_67); -lean_inc(x_66); -lean_inc_ref(x_65); -if (lean_is_exclusive(x_62)) { - lean_ctor_release(x_62, 0); - lean_ctor_release(x_62, 1); - lean_ctor_release(x_62, 2); - x_71 = x_62; -} else { - lean_dec_ref(x_62); - x_71 = lean_box(0); -} -x_72 = lean_array_fget(x_65, x_66); -x_73 = lean_unsigned_to_nat(1u); -x_74 = lean_nat_add(x_66, x_73); -lean_dec(x_66); -if (lean_is_scalar(x_71)) { - x_75 = lean_alloc_ctor(0, 3, 0); -} else { - x_75 = x_71; -} -lean_ctor_set(x_75, 0, x_65); -lean_ctor_set(x_75, 1, x_74); -lean_ctor_set(x_75, 2, x_67); -if (lean_obj_tag(x_72) == 0) -{ -lean_object* x_76; -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_63); -lean_ctor_set(x_76, 1, x_64); -lean_ctor_set(x_4, 1, x_76); -lean_ctor_set(x_4, 0, x_75); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_72, 0); -lean_inc(x_77); -lean_dec_ref(x_72); -x_78 = lean_array_uget(x_1, x_3); -x_79 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___boxed), 10, 2); -lean_closure_set(x_79, 0, x_77); -lean_closure_set(x_79, 1, x_78); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_80 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_79, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_80) == 0) -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -lean_dec_ref(x_80); -x_82 = lean_array_push(x_64, x_81); -x_83 = lean_nat_add(x_63, x_73); -lean_dec(x_63); -x_84 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_84, 0, x_83); -lean_ctor_set(x_84, 1, x_82); -lean_ctor_set(x_4, 1, x_84); -lean_ctor_set(x_4, 0, x_75); -x_12 = x_4; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; -lean_dec_ref(x_75); -lean_dec(x_64); -lean_dec(x_63); -lean_free_object(x_4); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_85 = lean_ctor_get(x_80, 0); -lean_inc(x_85); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - x_86 = x_80; -} else { - lean_dec_ref(x_80); - x_86 = lean_box(0); -} -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 1, 0); -} else { - x_87 = x_86; -} -lean_ctor_set(x_87, 0, x_85); -return x_87; -} -} -} -} -} -else -{ -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; uint8_t x_96; -x_88 = lean_ctor_get(x_4, 1); -x_89 = lean_ctor_get(x_4, 0); -lean_inc(x_88); -lean_inc(x_89); -lean_dec(x_4); -x_90 = lean_ctor_get(x_88, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_88, 1); -lean_inc(x_91); -if (lean_is_exclusive(x_88)) { - lean_ctor_release(x_88, 0); - lean_ctor_release(x_88, 1); - x_92 = x_88; -} else { - lean_dec_ref(x_88); - x_92 = lean_box(0); -} -x_93 = lean_ctor_get(x_89, 0); -x_94 = lean_ctor_get(x_89, 1); -x_95 = lean_ctor_get(x_89, 2); -x_96 = lean_nat_dec_lt(x_94, x_95); -if (x_96 == 0) -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -if (lean_is_scalar(x_92)) { - x_97 = lean_alloc_ctor(0, 2, 0); -} else { - x_97 = x_92; -} -lean_ctor_set(x_97, 0, x_90); -lean_ctor_set(x_97, 1, x_91); -x_98 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_98, 0, x_89); -lean_ctor_set(x_98, 1, x_97); -x_99 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_99, 0, x_98); -return x_99; -} -else -{ -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_inc(x_95); -lean_inc(x_94); -lean_inc_ref(x_93); -if (lean_is_exclusive(x_89)) { - lean_ctor_release(x_89, 0); - lean_ctor_release(x_89, 1); - lean_ctor_release(x_89, 2); - x_100 = x_89; -} else { - lean_dec_ref(x_89); - x_100 = lean_box(0); -} -x_101 = lean_array_fget(x_93, x_94); -x_102 = lean_unsigned_to_nat(1u); -x_103 = lean_nat_add(x_94, x_102); -lean_dec(x_94); -if (lean_is_scalar(x_100)) { - x_104 = lean_alloc_ctor(0, 3, 0); -} else { - x_104 = x_100; -} -lean_ctor_set(x_104, 0, x_93); -lean_ctor_set(x_104, 1, x_103); -lean_ctor_set(x_104, 2, x_95); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_105; lean_object* x_106; -if (lean_is_scalar(x_92)) { - x_105 = lean_alloc_ctor(0, 2, 0); -} else { - x_105 = x_92; -} -lean_ctor_set(x_105, 0, x_90); -lean_ctor_set(x_105, 1, x_91); -x_106 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_106, 0, x_104); -lean_ctor_set(x_106, 1, x_105); -x_12 = x_106; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_ctor_get(x_101, 0); -lean_inc(x_107); -lean_dec_ref(x_101); -x_108 = lean_array_uget(x_1, x_3); -x_109 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___lam__0___boxed), 10, 2); -lean_closure_set(x_109, 0, x_107); -lean_closure_set(x_109, 1, x_108); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_110 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_109, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_110) == 0) -{ -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_111 = lean_ctor_get(x_110, 0); -lean_inc(x_111); -lean_dec_ref(x_110); -x_112 = lean_array_push(x_91, x_111); -x_113 = lean_nat_add(x_90, x_102); -lean_dec(x_90); -if (lean_is_scalar(x_92)) { - x_114 = lean_alloc_ctor(0, 2, 0); -} else { - x_114 = x_92; -} -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_112); -x_115 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_115, 0, x_104); -lean_ctor_set(x_115, 1, x_114); -x_12 = x_115; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_dec_ref(x_104); -lean_dec(x_92); -lean_dec(x_91); -lean_dec(x_90); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_116 = lean_ctor_get(x_110, 0); -lean_inc(x_116); -if (lean_is_exclusive(x_110)) { - lean_ctor_release(x_110, 0); - x_117 = x_110; -} else { - lean_dec_ref(x_110); - x_117 = lean_box(0); -} -if (lean_is_scalar(x_117)) { - x_118 = lean_alloc_ctor(1, 1, 0); -} else { - x_118 = x_117; -} -lean_ctor_set(x_118, 0, x_116); -return x_118; -} -} -} -} -} -block_17: -{ -size_t x_14; size_t x_15; -x_14 = 1; -x_15 = lean_usize_add(x_3, x_14); -x_3 = x_15; -x_4 = x_12; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_14; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45(lean_object* x_1, size_t x_2, size_t 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: -{ -uint8_t x_12; -x_12 = lean_usize_dec_lt(x_3, x_2); -if (x_12 == 0) -{ -lean_object* x_13; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_1); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_4); -return x_13; -} -else -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_array_uget(x_4, x_3); -lean_inc_ref(x_1); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_15 = lean_apply_8(x_1, x_14, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; size_t x_19; size_t x_20; lean_object* x_21; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = lean_unsigned_to_nat(0u); -x_18 = lean_array_uset(x_4, x_3, x_17); -x_19 = 1; -x_20 = lean_usize_add(x_3, x_19); -x_21 = lean_array_uset(x_18, x_3, x_16); -x_3 = x_20; -x_4 = x_21; -goto _start; -} -else -{ -uint8_t x_23; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_23 = !lean_is_exclusive(x_15); -if (x_23 == 0) -{ -return x_15; -} -else -{ -lean_object* x_24; lean_object* x_25; -x_24 = lean_ctor_get(x_15, 0); -lean_inc(x_24); -lean_dec(x_15); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_24); -return x_25; -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__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) { _start: { lean_object* x_9; @@ -24399,81 +23956,16 @@ x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7 return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__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) { _start: { lean_object* x_9; -x_9 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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) { -_start: -{ -lean_object* x_11; uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg___lam__0___boxed), 10, 3); -lean_closure_set(x_11, 0, x_2); -lean_closure_set(x_11, 1, x_4); -lean_closure_set(x_11, 2, x_5); -x_12 = 1; -x_13 = 0; -x_14 = lean_box(0); -x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp(lean_box(0), x_1, x_12, x_13, x_12, x_13, x_14, x_11, x_3, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_15) == 0) -{ -return x_15; -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -return x_15; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg___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: -{ -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_3); -x_12 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); -return x_12; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = lean_get_match_equations_for(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5(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) { _start: { lean_object* x_10; @@ -24481,2031 +23973,166 @@ x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = lean_get_match_equations_for(x_1, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; +lean_object* x_10; +x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0(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) { _start: { -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_indentD(x_2); -x_4 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -return x_4; +lean_object* x_10; +x_10 = l_Lean_FVarId_getUserName___redArg(x_1, x_5, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10(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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0___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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_inferArgumentTypesN(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___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_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___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: -{ -uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_4); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); +lean_object* x_10; +x_10 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec_ref(x_1); -return x_17; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_isProof(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46(size_t x_1, size_t 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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_mkEqHEq(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__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) { -_start: +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_2, x_1); +if (x_11 == 0) { -lean_object* x_11; -x_11 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_mkArrow(x_1, x_2, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_12; +lean_dec(x_9); +lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); -lean_dec(x_5); lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46(uint8_t x_1, lean_object* x_2, size_t x_3, size_t 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_13; lean_object* x_14; uint8_t x_19; -x_19 = lean_usize_dec_lt(x_4, x_3); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_5); -return x_20; +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_3); +return x_12; } else { -lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_21 = lean_ctor_get(x_5, 1); -lean_inc(x_21); -x_22 = lean_ctor_get(x_21, 1); -lean_inc(x_22); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_21, 0); -lean_inc(x_24); -if (lean_is_exclusive(x_21)) { - lean_ctor_release(x_21, 0); - lean_ctor_release(x_21, 1); - x_25 = x_21; -} else { - lean_dec_ref(x_21); - x_25 = lean_box(0); -} -x_26 = lean_ctor_get(x_5, 0); -lean_inc(x_26); -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - x_27 = x_5; -} else { - lean_dec_ref(x_5); - x_27 = lean_box(0); -} -x_28 = lean_ctor_get(x_22, 0); -lean_inc(x_28); -if (lean_is_exclusive(x_22)) { - lean_ctor_release(x_22, 0); - lean_ctor_release(x_22, 1); - x_29 = x_22; -} else { - lean_dec_ref(x_22); - x_29 = lean_box(0); -} -x_30 = lean_ctor_get(x_23, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_23, 1); -lean_inc(x_31); -if (lean_is_exclusive(x_23)) { - lean_ctor_release(x_23, 0); - lean_ctor_release(x_23, 1); - x_32 = x_23; -} else { - lean_dec_ref(x_23); - x_32 = lean_box(0); -} -x_33 = lean_ctor_get(x_24, 0); -x_34 = lean_ctor_get(x_24, 1); -x_35 = lean_ctor_get(x_24, 2); -x_36 = lean_nat_dec_lt(x_34, x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -if (lean_is_scalar(x_32)) { - x_37 = lean_alloc_ctor(0, 2, 0); -} else { - x_37 = x_32; -} -lean_ctor_set(x_37, 0, x_30); -lean_ctor_set(x_37, 1, x_31); -if (lean_is_scalar(x_29)) { - x_38 = lean_alloc_ctor(0, 2, 0); -} else { - x_38 = x_29; -} -lean_ctor_set(x_38, 0, x_28); -lean_ctor_set(x_38, 1, x_37); -if (lean_is_scalar(x_25)) { - x_39 = lean_alloc_ctor(0, 2, 0); -} else { - x_39 = x_25; -} -lean_ctor_set(x_39, 0, x_24); -lean_ctor_set(x_39, 1, x_38); -if (lean_is_scalar(x_27)) { - x_40 = lean_alloc_ctor(0, 2, 0); -} else { - x_40 = x_27; -} -lean_ctor_set(x_40, 0, x_26); -lean_ctor_set(x_40, 1, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -return x_41; -} -else -{ -uint8_t x_42; -lean_inc(x_35); -lean_inc(x_34); -lean_inc_ref(x_33); -x_42 = !lean_is_exclusive(x_24); -if (x_42 == 0) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_43 = lean_ctor_get(x_24, 2); -lean_dec(x_43); -x_44 = lean_ctor_get(x_24, 1); -lean_dec(x_44); -x_45 = lean_ctor_get(x_24, 0); -lean_dec(x_45); -x_46 = lean_ctor_get(x_26, 0); -x_47 = lean_ctor_get(x_26, 1); -x_48 = lean_ctor_get(x_26, 2); -x_49 = lean_array_fget(x_33, x_34); -x_50 = lean_unsigned_to_nat(1u); -x_51 = lean_nat_add(x_34, x_50); -lean_dec(x_34); -lean_ctor_set(x_24, 1, x_51); -x_52 = lean_nat_dec_lt(x_47, x_48); -if (x_52 == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -lean_dec(x_49); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -if (lean_is_scalar(x_32)) { - x_53 = lean_alloc_ctor(0, 2, 0); -} else { - x_53 = x_32; -} -lean_ctor_set(x_53, 0, x_30); -lean_ctor_set(x_53, 1, x_31); -if (lean_is_scalar(x_29)) { - x_54 = lean_alloc_ctor(0, 2, 0); -} else { - x_54 = x_29; -} -lean_ctor_set(x_54, 0, x_28); -lean_ctor_set(x_54, 1, x_53); -if (lean_is_scalar(x_25)) { - x_55 = lean_alloc_ctor(0, 2, 0); -} else { - x_55 = x_25; -} -lean_ctor_set(x_55, 0, x_24); -lean_ctor_set(x_55, 1, x_54); -if (lean_is_scalar(x_27)) { - x_56 = lean_alloc_ctor(0, 2, 0); -} else { - x_56 = x_27; -} -lean_ctor_set(x_56, 0, x_26); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; -} -else -{ -uint8_t x_58; -lean_inc(x_48); -lean_inc(x_47); -lean_inc_ref(x_46); -x_58 = !lean_is_exclusive(x_26); -if (x_58 == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_59 = lean_ctor_get(x_26, 2); -lean_dec(x_59); -x_60 = lean_ctor_get(x_26, 1); -lean_dec(x_60); -x_61 = lean_ctor_get(x_26, 0); -lean_dec(x_61); -x_62 = lean_array_fget(x_46, x_47); -x_63 = lean_nat_add(x_47, x_50); -lean_dec(x_47); -lean_ctor_set(x_26, 1, x_63); -if (x_1 == 0) -{ -lean_dec(x_62); -goto block_71; -} -else -{ -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_32); -lean_dec(x_29); -lean_dec(x_27); -lean_dec(x_25); -x_72 = lean_array_uget(x_2, x_4); -lean_inc(x_72); -x_73 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0___boxed), 9, 1); -lean_closure_set(x_73, 0, x_72); -lean_inc(x_11); -lean_inc_ref(x_10); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_array_uget(x_3, x_2); +x_14 = l_Lean_Expr_fvarId_x21(x_13); +lean_dec(x_13); +x_15 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_14); lean_inc(x_9); lean_inc_ref(x_8); +lean_inc(x_7); lean_inc_ref(x_6); -x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_74) == 0) +lean_inc_ref(x_4); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_75; uint8_t x_76; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -lean_dec_ref(x_74); -x_76 = lean_unbox(x_75); -lean_dec(x_75); -if (x_76 == 0) -{ -lean_object* x_77; lean_object* x_78; -x_77 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1___boxed), 10, 2); -lean_closure_set(x_77, 0, x_62); -lean_closure_set(x_77, 1, x_72); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_78 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_77, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_78) == 0) -{ -lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -lean_dec_ref(x_78); -lean_inc(x_79); -x_80 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2___boxed), 10, 2); -lean_closure_set(x_80, 0, x_79); -lean_closure_set(x_80, 1, x_31); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_81 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_80, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_81) == 0) -{ -lean_object* x_82; uint8_t 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; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -lean_dec_ref(x_81); -x_83 = l_Lean_Expr_isHEq(x_79); -lean_dec(x_79); -x_84 = lean_box(x_83); -x_85 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_85, 0, x_84); -x_86 = lean_array_push(x_28, x_85); -x_87 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0)); -x_88 = lean_array_push(x_30, x_87); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_88); -lean_ctor_set(x_89, 1, x_82); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_86); -lean_ctor_set(x_90, 1, x_89); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_24); -lean_ctor_set(x_91, 1, x_90); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_26); -lean_ctor_set(x_92, 1, x_91); -x_13 = x_92; -x_14 = lean_box(0); -goto block_18; -} -else -{ -uint8_t x_93; -lean_dec(x_79); -lean_dec_ref(x_26); -lean_dec_ref(x_24); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_93 = !lean_is_exclusive(x_81); -if (x_93 == 0) -{ -return x_81; -} -else -{ -lean_object* x_94; lean_object* x_95; -x_94 = lean_ctor_get(x_81, 0); -lean_inc(x_94); -lean_dec(x_81); -x_95 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_95, 0, x_94); -return x_95; -} -} -} -else -{ -uint8_t x_96; -lean_dec_ref(x_26); -lean_dec_ref(x_24); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_96 = !lean_is_exclusive(x_78); -if (x_96 == 0) -{ -return x_78; -} -else -{ -lean_object* x_97; lean_object* x_98; -x_97 = lean_ctor_get(x_78, 0); -lean_inc(x_97); -lean_dec(x_78); -x_98 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_98, 0, x_97); -return x_98; -} -} -} -else -{ -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; -lean_dec(x_72); -lean_dec(x_62); -x_99 = lean_box(0); -x_100 = lean_array_push(x_28, x_99); -x_101 = lean_array_push(x_30, x_49); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_31); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_100); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_24); -lean_ctor_set(x_104, 1, x_103); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_26); -lean_ctor_set(x_105, 1, x_104); -x_13 = x_105; -x_14 = lean_box(0); -goto block_18; -} -} -else -{ -uint8_t x_106; -lean_dec(x_72); -lean_dec_ref(x_26); -lean_dec(x_62); -lean_dec_ref(x_24); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_106 = !lean_is_exclusive(x_74); -if (x_106 == 0) -{ -return x_74; -} -else -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_74, 0); -lean_inc(x_107); -lean_dec(x_74); -x_108 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_108, 0, x_107); -return x_108; -} -} -} -else -{ -lean_dec(x_62); -goto block_71; -} -} -block_71: -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_64 = lean_box(0); -x_65 = lean_array_push(x_28, x_64); -x_66 = lean_array_push(x_30, x_49); -if (lean_is_scalar(x_32)) { - x_67 = lean_alloc_ctor(0, 2, 0); -} else { - x_67 = x_32; -} -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_31); -if (lean_is_scalar(x_29)) { - x_68 = lean_alloc_ctor(0, 2, 0); -} else { - x_68 = x_29; -} -lean_ctor_set(x_68, 0, x_65); -lean_ctor_set(x_68, 1, x_67); -if (lean_is_scalar(x_25)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_25; -} -lean_ctor_set(x_69, 0, x_24); -lean_ctor_set(x_69, 1, x_68); -if (lean_is_scalar(x_27)) { - x_70 = lean_alloc_ctor(0, 2, 0); -} else { - x_70 = x_27; -} -lean_ctor_set(x_70, 0, x_26); -lean_ctor_set(x_70, 1, x_69); -x_13 = x_70; -x_14 = lean_box(0); -goto block_18; -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_dec(x_26); -x_109 = lean_array_fget(x_46, x_47); -x_110 = lean_nat_add(x_47, x_50); -lean_dec(x_47); -x_111 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_111, 0, x_46); -lean_ctor_set(x_111, 1, x_110); -lean_ctor_set(x_111, 2, x_48); -if (x_1 == 0) -{ -lean_dec(x_109); -goto block_119; -} -else -{ -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec(x_32); -lean_dec(x_29); -lean_dec(x_27); -lean_dec(x_25); -x_120 = lean_array_uget(x_2, x_4); -lean_inc(x_120); -x_121 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0___boxed), 9, 1); -lean_closure_set(x_121, 0, x_120); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_122 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_121, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_122) == 0) -{ -lean_object* x_123; uint8_t x_124; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -lean_dec_ref(x_122); -x_124 = lean_unbox(x_123); -lean_dec(x_123); -if (x_124 == 0) -{ -lean_object* x_125; lean_object* x_126; -x_125 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1___boxed), 10, 2); -lean_closure_set(x_125, 0, x_109); -lean_closure_set(x_125, 1, x_120); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_126 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_125, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_126) == 0) -{ -lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_127 = lean_ctor_get(x_126, 0); -lean_inc(x_127); -lean_dec_ref(x_126); -lean_inc(x_127); -x_128 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2___boxed), 10, 2); -lean_closure_set(x_128, 0, x_127); -lean_closure_set(x_128, 1, x_31); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_129 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_128, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -lean_dec_ref(x_129); -x_131 = l_Lean_Expr_isHEq(x_127); -lean_dec(x_127); -x_132 = lean_box(x_131); -x_133 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_133, 0, x_132); -x_134 = lean_array_push(x_28, x_133); -x_135 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0)); -x_136 = lean_array_push(x_30, x_135); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_130); -x_138 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_138, 0, x_134); -lean_ctor_set(x_138, 1, x_137); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_24); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_111); -lean_ctor_set(x_140, 1, x_139); -x_13 = x_140; -x_14 = lean_box(0); -goto block_18; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; -lean_dec(x_127); -lean_dec_ref(x_111); -lean_dec_ref(x_24); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_141 = lean_ctor_get(x_129, 0); -lean_inc(x_141); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - x_142 = x_129; -} else { - lean_dec_ref(x_129); - x_142 = lean_box(0); -} -if (lean_is_scalar(x_142)) { - x_143 = lean_alloc_ctor(1, 1, 0); -} else { - x_143 = x_142; -} -lean_ctor_set(x_143, 0, x_141); -return x_143; -} -} -else -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; -lean_dec_ref(x_111); -lean_dec_ref(x_24); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_144 = lean_ctor_get(x_126, 0); -lean_inc(x_144); -if (lean_is_exclusive(x_126)) { - lean_ctor_release(x_126, 0); - x_145 = x_126; -} else { - lean_dec_ref(x_126); - x_145 = lean_box(0); -} -if (lean_is_scalar(x_145)) { - x_146 = lean_alloc_ctor(1, 1, 0); -} else { - x_146 = x_145; -} -lean_ctor_set(x_146, 0, x_144); -return x_146; -} -} -else -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -lean_dec(x_120); -lean_dec(x_109); -x_147 = lean_box(0); -x_148 = lean_array_push(x_28, x_147); -x_149 = lean_array_push(x_30, x_49); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_149); -lean_ctor_set(x_150, 1, x_31); -x_151 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_151, 0, x_148); -lean_ctor_set(x_151, 1, x_150); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_24); -lean_ctor_set(x_152, 1, x_151); -x_153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_153, 0, x_111); -lean_ctor_set(x_153, 1, x_152); -x_13 = x_153; -x_14 = lean_box(0); -goto block_18; -} -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec(x_120); -lean_dec_ref(x_111); -lean_dec(x_109); -lean_dec_ref(x_24); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_154 = lean_ctor_get(x_122, 0); -lean_inc(x_154); -if (lean_is_exclusive(x_122)) { - lean_ctor_release(x_122, 0); - x_155 = x_122; -} else { - lean_dec_ref(x_122); - x_155 = lean_box(0); -} -if (lean_is_scalar(x_155)) { - x_156 = lean_alloc_ctor(1, 1, 0); -} else { - x_156 = x_155; -} -lean_ctor_set(x_156, 0, x_154); -return x_156; -} -} -else -{ -lean_dec(x_109); -goto block_119; -} -} -block_119: -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_112 = lean_box(0); -x_113 = lean_array_push(x_28, x_112); -x_114 = lean_array_push(x_30, x_49); -if (lean_is_scalar(x_32)) { - x_115 = lean_alloc_ctor(0, 2, 0); -} else { - x_115 = x_32; -} -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_31); -if (lean_is_scalar(x_29)) { - x_116 = lean_alloc_ctor(0, 2, 0); -} else { - x_116 = x_29; -} -lean_ctor_set(x_116, 0, x_113); -lean_ctor_set(x_116, 1, x_115); -if (lean_is_scalar(x_25)) { - x_117 = lean_alloc_ctor(0, 2, 0); -} else { - x_117 = x_25; -} -lean_ctor_set(x_117, 0, x_24); -lean_ctor_set(x_117, 1, x_116); -if (lean_is_scalar(x_27)) { - x_118 = lean_alloc_ctor(0, 2, 0); -} else { - x_118 = x_27; -} -lean_ctor_set(x_118, 0, x_111); -lean_ctor_set(x_118, 1, x_117); -x_13 = x_118; -x_14 = lean_box(0); -goto block_18; -} -} -} -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; -lean_dec(x_24); -x_157 = lean_ctor_get(x_26, 0); -x_158 = lean_ctor_get(x_26, 1); -x_159 = lean_ctor_get(x_26, 2); -x_160 = lean_array_fget(x_33, x_34); -x_161 = lean_unsigned_to_nat(1u); -x_162 = lean_nat_add(x_34, x_161); -lean_dec(x_34); -x_163 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_163, 0, x_33); -lean_ctor_set(x_163, 1, x_162); -lean_ctor_set(x_163, 2, x_35); -x_164 = lean_nat_dec_lt(x_158, x_159); -if (x_164 == 0) -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -lean_dec(x_160); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -if (lean_is_scalar(x_32)) { - x_165 = lean_alloc_ctor(0, 2, 0); -} else { - x_165 = x_32; -} -lean_ctor_set(x_165, 0, x_30); -lean_ctor_set(x_165, 1, x_31); -if (lean_is_scalar(x_29)) { - x_166 = lean_alloc_ctor(0, 2, 0); -} else { - x_166 = x_29; -} -lean_ctor_set(x_166, 0, x_28); -lean_ctor_set(x_166, 1, x_165); -if (lean_is_scalar(x_25)) { - x_167 = lean_alloc_ctor(0, 2, 0); -} else { - x_167 = x_25; -} -lean_ctor_set(x_167, 0, x_163); -lean_ctor_set(x_167, 1, x_166); -if (lean_is_scalar(x_27)) { - x_168 = lean_alloc_ctor(0, 2, 0); -} else { - x_168 = x_27; -} -lean_ctor_set(x_168, 0, x_26); -lean_ctor_set(x_168, 1, x_167); -x_169 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_169, 0, x_168); -return x_169; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -lean_inc(x_159); -lean_inc(x_158); -lean_inc_ref(x_157); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_170 = x_26; -} else { - lean_dec_ref(x_26); - x_170 = lean_box(0); -} -x_171 = lean_array_fget(x_157, x_158); -x_172 = lean_nat_add(x_158, x_161); -lean_dec(x_158); -if (lean_is_scalar(x_170)) { - x_173 = lean_alloc_ctor(0, 3, 0); -} else { - x_173 = x_170; -} -lean_ctor_set(x_173, 0, x_157); -lean_ctor_set(x_173, 1, x_172); -lean_ctor_set(x_173, 2, x_159); -if (x_1 == 0) -{ -lean_dec(x_171); -goto block_181; -} -else -{ -if (lean_obj_tag(x_160) == 0) -{ -lean_object* x_182; lean_object* x_183; lean_object* x_184; -lean_dec(x_32); -lean_dec(x_29); -lean_dec(x_27); -lean_dec(x_25); -x_182 = lean_array_uget(x_2, x_4); -lean_inc(x_182); -x_183 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__0___boxed), 9, 1); -lean_closure_set(x_183, 0, x_182); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_184 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_183, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_184) == 0) -{ -lean_object* x_185; uint8_t x_186; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -lean_dec_ref(x_184); -x_186 = lean_unbox(x_185); -lean_dec(x_185); -if (x_186 == 0) -{ -lean_object* x_187; lean_object* x_188; -x_187 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__1___boxed), 10, 2); -lean_closure_set(x_187, 0, x_171); -lean_closure_set(x_187, 1, x_182); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_188 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_187, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_189 = lean_ctor_get(x_188, 0); -lean_inc(x_189); -lean_dec_ref(x_188); -lean_inc(x_189); -x_190 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___lam__2___boxed), 10, 2); -lean_closure_set(x_190, 0, x_189); -lean_closure_set(x_190, 1, x_31); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_191 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_190, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_191) == 0) -{ -lean_object* x_192; uint8_t x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -lean_dec_ref(x_191); -x_193 = l_Lean_Expr_isHEq(x_189); -lean_dec(x_189); -x_194 = lean_box(x_193); -x_195 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_195, 0, x_194); -x_196 = lean_array_push(x_28, x_195); -x_197 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___closed__0)); -x_198 = lean_array_push(x_30, x_197); -x_199 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_199, 0, x_198); -lean_ctor_set(x_199, 1, x_192); -x_200 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_200, 0, x_196); -lean_ctor_set(x_200, 1, x_199); -x_201 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_201, 0, x_163); -lean_ctor_set(x_201, 1, x_200); -x_202 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_202, 0, x_173); -lean_ctor_set(x_202, 1, x_201); -x_13 = x_202; -x_14 = lean_box(0); -goto block_18; -} -else -{ -lean_object* x_203; lean_object* x_204; lean_object* x_205; -lean_dec(x_189); -lean_dec_ref(x_173); -lean_dec_ref(x_163); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_203 = lean_ctor_get(x_191, 0); -lean_inc(x_203); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - x_204 = x_191; -} else { - lean_dec_ref(x_191); - x_204 = lean_box(0); -} -if (lean_is_scalar(x_204)) { - x_205 = lean_alloc_ctor(1, 1, 0); -} else { - x_205 = x_204; -} -lean_ctor_set(x_205, 0, x_203); -return x_205; -} -} -else -{ -lean_object* x_206; lean_object* x_207; lean_object* x_208; -lean_dec_ref(x_173); -lean_dec_ref(x_163); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_206 = lean_ctor_get(x_188, 0); -lean_inc(x_206); -if (lean_is_exclusive(x_188)) { - lean_ctor_release(x_188, 0); - x_207 = x_188; -} else { - lean_dec_ref(x_188); - x_207 = lean_box(0); -} -if (lean_is_scalar(x_207)) { - x_208 = lean_alloc_ctor(1, 1, 0); -} else { - x_208 = x_207; -} -lean_ctor_set(x_208, 0, x_206); -return x_208; -} -} -else -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; -lean_dec(x_182); -lean_dec(x_171); -x_209 = lean_box(0); -x_210 = lean_array_push(x_28, x_209); -x_211 = lean_array_push(x_30, x_160); -x_212 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_212, 0, x_211); -lean_ctor_set(x_212, 1, x_31); -x_213 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_213, 0, x_210); -lean_ctor_set(x_213, 1, x_212); -x_214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_214, 0, x_163); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_215, 0, x_173); -lean_ctor_set(x_215, 1, x_214); -x_13 = x_215; -x_14 = lean_box(0); -goto block_18; -} -} -else -{ -lean_object* x_216; lean_object* x_217; lean_object* x_218; -lean_dec(x_182); -lean_dec_ref(x_173); -lean_dec(x_171); -lean_dec_ref(x_163); -lean_dec(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -x_216 = lean_ctor_get(x_184, 0); -lean_inc(x_216); -if (lean_is_exclusive(x_184)) { - lean_ctor_release(x_184, 0); - x_217 = x_184; -} else { - lean_dec_ref(x_184); - x_217 = lean_box(0); -} -if (lean_is_scalar(x_217)) { - x_218 = lean_alloc_ctor(1, 1, 0); -} else { - x_218 = x_217; -} -lean_ctor_set(x_218, 0, x_216); -return x_218; -} -} -else -{ -lean_dec(x_171); -goto block_181; -} -} -block_181: -{ -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_174 = lean_box(0); -x_175 = lean_array_push(x_28, x_174); -x_176 = lean_array_push(x_30, x_160); -if (lean_is_scalar(x_32)) { - x_177 = lean_alloc_ctor(0, 2, 0); -} else { - x_177 = x_32; -} -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_31); -if (lean_is_scalar(x_29)) { - x_178 = lean_alloc_ctor(0, 2, 0); -} else { - x_178 = x_29; -} -lean_ctor_set(x_178, 0, x_175); -lean_ctor_set(x_178, 1, x_177); -if (lean_is_scalar(x_25)) { - x_179 = lean_alloc_ctor(0, 2, 0); -} else { - x_179 = x_25; -} -lean_ctor_set(x_179, 0, x_163); -lean_ctor_set(x_179, 1, x_178); -if (lean_is_scalar(x_27)) { - x_180 = lean_alloc_ctor(0, 2, 0); -} else { - x_180 = x_27; -} -lean_ctor_set(x_180, 0, x_173); -lean_ctor_set(x_180, 1, x_179); -x_13 = x_180; -x_14 = lean_box(0); -goto block_18; -} -} -} -} -} -block_18: -{ -size_t x_15; size_t x_16; -x_15 = 1; -x_16 = lean_usize_add(x_4, x_15); -x_4 = x_16; -x_5 = x_13; +lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = lean_unsigned_to_nat(0u); +x_19 = lean_array_uset(x_3, x_2, x_18); +x_20 = 1; +x_21 = lean_usize_add(x_2, x_20); +x_22 = lean_array_uset(x_19, x_2, x_17); +x_2 = x_21; +x_3 = x_22; goto _start; } -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46___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) { -_start: +else { -uint8_t x_13; size_t x_14; size_t x_15; lean_object* x_16; -x_13 = lean_unbox(x_1); -x_14 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_15 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46(x_13, x_2, x_14, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +uint8_t x_24; +lean_dec(x_9); +lean_dec_ref(x_8); lean_dec(x_7); -lean_dec_ref(x_2); +lean_dec_ref(x_6); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_24 = !lean_is_exclusive(x_16); +if (x_24 == 0) +{ return x_16; } +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_16, 0); +lean_inc(x_25); +lean_dec(x_16); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9(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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46___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_10; -x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_12 = lean_unbox_usize(x_2); lean_dec(x_2); +x_13 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +return x_13; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3(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) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_array_size(x_1); +x_11 = 0; +x_12 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__46(x_10, x_11, x_1, x_3, x_4, x_5, x_6, x_7, x_8); +return x_12; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3___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) { +_start: +{ +lean_object* x_10; +x_10 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_2); return x_10; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__1)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__3)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, size_t 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, lean_object* x_14) { -_start: -{ -lean_object* x_16; lean_object* x_152; lean_object* x_153; uint8_t x_154; -x_152 = lean_array_get_size(x_7); -x_153 = lean_array_get_size(x_6); -x_154 = lean_nat_dec_eq(x_152, x_153); -if (x_154 == 0) -{ -lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_155 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2; -x_156 = l_Nat_reprFast(x_153); -x_157 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_157, 0, x_156); -x_158 = l_Lean_MessageData_ofFormat(x_157); -x_159 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_159, 0, x_155); -lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4; -x_161 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_161, 0, x_159); -lean_ctor_set(x_161, 1, x_160); -x_162 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_161, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) -{ -return x_162; -} -else -{ -lean_object* x_164; lean_object* x_165; -x_164 = lean_ctor_get(x_162, 0); -lean_inc(x_164); -lean_dec(x_162); -x_165 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_165, 0, x_164); -return x_165; -} -} -else -{ -x_16 = lean_box(0); -goto block_151; -} -block_151: -{ -lean_object* x_17; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc_ref(x_7); -x_17 = lean_apply_9(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, lean_box(0)); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; size_t x_30; lean_object* x_31; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -lean_dec_ref(x_17); -x_19 = lean_ctor_get(x_2, 4); -lean_inc_ref(x_19); -lean_dec_ref(x_2); -x_20 = lean_unsigned_to_nat(0u); -x_21 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0; -x_22 = lean_array_get_size(x_3); -x_23 = l_Array_toSubarray___redArg(x_3, x_20, x_22); -x_24 = lean_array_get_size(x_19); -x_25 = l_Array_toSubarray___redArg(x_19, x_20, x_24); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_21); -lean_ctor_set(x_26, 1, x_18); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_21); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_25); -lean_ctor_set(x_28, 1, x_27); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_23); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_array_size(x_7); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_31 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__46(x_4, x_7, x_30, x_5, x_29, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_31) == 0) -{ -lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -lean_dec_ref(x_31); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = !lean_is_exclusive(x_33); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_35 = lean_ctor_get(x_33, 1); -x_36 = lean_ctor_get(x_33, 0); -lean_dec(x_36); -x_37 = !lean_is_exclusive(x_35); -if (x_37 == 0) -{ -lean_object* x_38; uint8_t x_39; -x_38 = lean_ctor_get(x_35, 1); -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; uint8_t x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_40 = lean_ctor_get(x_35, 0); -x_41 = lean_ctor_get(x_38, 0); -x_42 = lean_ctor_get(x_38, 1); -x_43 = 0; -x_44 = 1; -x_45 = 1; -x_46 = lean_box(x_43); -x_47 = lean_box(x_44); -x_48 = lean_box(x_45); -lean_inc(x_42); -x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___boxed), 13, 5); -lean_closure_set(x_49, 0, x_7); -lean_closure_set(x_49, 1, x_42); -lean_closure_set(x_49, 2, x_46); -lean_closure_set(x_49, 3, x_47); -lean_closure_set(x_49, 4, x_48); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_50, 0); -lean_inc(x_51); -lean_dec_ref(x_50); -x_52 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___boxed), 9, 1); -lean_closure_set(x_52, 0, x_42); -x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -if (lean_obj_tag(x_53) == 0) -{ -uint8_t x_54; -x_54 = !lean_is_exclusive(x_53); -if (x_54 == 0) -{ -lean_object* x_55; -x_55 = lean_ctor_get(x_53, 0); -lean_ctor_set(x_38, 1, x_41); -lean_ctor_set(x_38, 0, x_40); -lean_ctor_set(x_35, 0, x_55); -lean_ctor_set(x_33, 0, x_51); -lean_ctor_set(x_53, 0, x_33); -return x_53; -} -else -{ -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_53, 0); -lean_inc(x_56); -lean_dec(x_53); -lean_ctor_set(x_38, 1, x_41); -lean_ctor_set(x_38, 0, x_40); -lean_ctor_set(x_35, 0, x_56); -lean_ctor_set(x_33, 0, x_51); -x_57 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_57, 0, x_33); -return x_57; -} -} -else -{ -uint8_t x_58; -lean_dec(x_51); -lean_free_object(x_38); -lean_dec(x_41); -lean_free_object(x_35); -lean_dec(x_40); -lean_free_object(x_33); -x_58 = !lean_is_exclusive(x_53); -if (x_58 == 0) -{ -return x_53; -} -else -{ -lean_object* x_59; lean_object* x_60; -x_59 = lean_ctor_get(x_53, 0); -lean_inc(x_59); -lean_dec(x_53); -x_60 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_60, 0, x_59); -return x_60; -} -} -} -else -{ -uint8_t x_61; -lean_free_object(x_38); -lean_dec(x_42); -lean_dec(x_41); -lean_free_object(x_35); -lean_dec(x_40); -lean_free_object(x_33); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_61 = !lean_is_exclusive(x_50); -if (x_61 == 0) -{ -return x_50; -} -else -{ -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_50, 0); -lean_inc(x_62); -lean_dec(x_50); -x_63 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_63, 0, x_62); -return x_63; -} -} -} -else -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; uint8_t x_68; uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_64 = lean_ctor_get(x_35, 0); -x_65 = lean_ctor_get(x_38, 0); -x_66 = lean_ctor_get(x_38, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_38); -x_67 = 0; -x_68 = 1; -x_69 = 1; -x_70 = lean_box(x_67); -x_71 = lean_box(x_68); -x_72 = lean_box(x_69); -lean_inc(x_66); -x_73 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___boxed), 13, 5); -lean_closure_set(x_73, 0, x_7); -lean_closure_set(x_73, 1, x_66); -lean_closure_set(x_73, 2, x_70); -lean_closure_set(x_73, 3, x_71); -lean_closure_set(x_73, 4, x_72); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_74) == 0) -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -lean_dec_ref(x_74); -x_76 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___boxed), 9, 1); -lean_closure_set(x_76, 0, x_66); -x_77 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_76, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -if (lean_obj_tag(x_77) == 0) -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - x_79 = x_77; -} else { - lean_dec_ref(x_77); - x_79 = lean_box(0); -} -x_80 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_80, 0, x_64); -lean_ctor_set(x_80, 1, x_65); -lean_ctor_set(x_35, 1, x_80); -lean_ctor_set(x_35, 0, x_78); -lean_ctor_set(x_33, 0, x_75); -if (lean_is_scalar(x_79)) { - x_81 = lean_alloc_ctor(0, 1, 0); -} else { - x_81 = x_79; -} -lean_ctor_set(x_81, 0, x_33); -return x_81; -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; -lean_dec(x_75); -lean_dec(x_65); -lean_free_object(x_35); -lean_dec(x_64); -lean_free_object(x_33); -x_82 = lean_ctor_get(x_77, 0); -lean_inc(x_82); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - x_83 = x_77; -} else { - lean_dec_ref(x_77); - x_83 = lean_box(0); -} -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 1, 0); -} else { - x_84 = x_83; -} -lean_ctor_set(x_84, 0, x_82); -return x_84; -} -} -else -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; -lean_dec(x_66); -lean_dec(x_65); -lean_free_object(x_35); -lean_dec(x_64); -lean_free_object(x_33); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_85 = lean_ctor_get(x_74, 0); -lean_inc(x_85); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - x_86 = x_74; -} else { - lean_dec_ref(x_74); - x_86 = lean_box(0); -} -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 1, 0); -} else { - x_87 = x_86; -} -lean_ctor_set(x_87, 0, x_85); -return x_87; -} -} -} -else -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_88 = lean_ctor_get(x_35, 1); -x_89 = lean_ctor_get(x_35, 0); -lean_inc(x_88); -lean_inc(x_89); -lean_dec(x_35); -x_90 = lean_ctor_get(x_88, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_88, 1); -lean_inc(x_91); -if (lean_is_exclusive(x_88)) { - lean_ctor_release(x_88, 0); - lean_ctor_release(x_88, 1); - x_92 = x_88; -} else { - lean_dec_ref(x_88); - x_92 = lean_box(0); -} -x_93 = 0; -x_94 = 1; -x_95 = 1; -x_96 = lean_box(x_93); -x_97 = lean_box(x_94); -x_98 = lean_box(x_95); -lean_inc(x_91); -x_99 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___boxed), 13, 5); -lean_closure_set(x_99, 0, x_7); -lean_closure_set(x_99, 1, x_91); -lean_closure_set(x_99, 2, x_96); -lean_closure_set(x_99, 3, x_97); -lean_closure_set(x_99, 4, x_98); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_100 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_99, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_100) == 0) -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -lean_dec_ref(x_100); -x_102 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___boxed), 9, 1); -lean_closure_set(x_102, 0, x_91); -x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -if (lean_obj_tag(x_103) == 0) -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_104 = lean_ctor_get(x_103, 0); -lean_inc(x_104); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - x_105 = x_103; -} else { - lean_dec_ref(x_103); - x_105 = lean_box(0); -} -if (lean_is_scalar(x_92)) { - x_106 = lean_alloc_ctor(0, 2, 0); -} else { - x_106 = x_92; -} -lean_ctor_set(x_106, 0, x_89); -lean_ctor_set(x_106, 1, x_90); -x_107 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_106); -lean_ctor_set(x_33, 1, x_107); -lean_ctor_set(x_33, 0, x_101); -if (lean_is_scalar(x_105)) { - x_108 = lean_alloc_ctor(0, 1, 0); -} else { - x_108 = x_105; -} -lean_ctor_set(x_108, 0, x_33); -return x_108; -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; -lean_dec(x_101); -lean_dec(x_92); -lean_dec(x_90); -lean_dec(x_89); -lean_free_object(x_33); -x_109 = lean_ctor_get(x_103, 0); -lean_inc(x_109); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - x_110 = x_103; -} else { - lean_dec_ref(x_103); - x_110 = lean_box(0); -} -if (lean_is_scalar(x_110)) { - x_111 = lean_alloc_ctor(1, 1, 0); -} else { - x_111 = x_110; -} -lean_ctor_set(x_111, 0, x_109); -return x_111; -} -} -else -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; -lean_dec(x_92); -lean_dec(x_91); -lean_dec(x_90); -lean_dec(x_89); -lean_free_object(x_33); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_112 = lean_ctor_get(x_100, 0); -lean_inc(x_112); -if (lean_is_exclusive(x_100)) { - lean_ctor_release(x_100, 0); - x_113 = x_100; -} else { - lean_dec_ref(x_100); - x_113 = lean_box(0); -} -if (lean_is_scalar(x_113)) { - x_114 = lean_alloc_ctor(1, 1, 0); -} else { - x_114 = x_113; -} -lean_ctor_set(x_114, 0, x_112); -return x_114; -} -} -} -else -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; uint8_t x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_115 = lean_ctor_get(x_33, 1); -lean_inc(x_115); -lean_dec(x_33); -x_116 = lean_ctor_get(x_115, 1); -lean_inc(x_116); -x_117 = lean_ctor_get(x_115, 0); -lean_inc(x_117); -if (lean_is_exclusive(x_115)) { - lean_ctor_release(x_115, 0); - lean_ctor_release(x_115, 1); - x_118 = x_115; -} else { - lean_dec_ref(x_115); - x_118 = lean_box(0); -} -x_119 = lean_ctor_get(x_116, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_116, 1); -lean_inc(x_120); -if (lean_is_exclusive(x_116)) { - lean_ctor_release(x_116, 0); - lean_ctor_release(x_116, 1); - x_121 = x_116; -} else { - lean_dec_ref(x_116); - x_121 = lean_box(0); -} -x_122 = 0; -x_123 = 1; -x_124 = 1; -x_125 = lean_box(x_122); -x_126 = lean_box(x_123); -x_127 = lean_box(x_124); -lean_inc(x_120); -x_128 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__7___boxed), 13, 5); -lean_closure_set(x_128, 0, x_7); -lean_closure_set(x_128, 1, x_120); -lean_closure_set(x_128, 2, x_125); -lean_closure_set(x_128, 3, x_126); -lean_closure_set(x_128, 4, x_127); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_129 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_128, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -lean_dec_ref(x_129); -x_131 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__9___boxed), 9, 1); -lean_closure_set(x_131, 0, x_120); -x_132 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_131, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -if (lean_obj_tag(x_132) == 0) -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -if (lean_is_exclusive(x_132)) { - lean_ctor_release(x_132, 0); - x_134 = x_132; -} else { - lean_dec_ref(x_132); - x_134 = lean_box(0); -} -if (lean_is_scalar(x_121)) { - x_135 = lean_alloc_ctor(0, 2, 0); -} else { - x_135 = x_121; -} -lean_ctor_set(x_135, 0, x_117); -lean_ctor_set(x_135, 1, x_119); -if (lean_is_scalar(x_118)) { - x_136 = lean_alloc_ctor(0, 2, 0); -} else { - x_136 = x_118; -} -lean_ctor_set(x_136, 0, x_133); -lean_ctor_set(x_136, 1, x_135); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_130); -lean_ctor_set(x_137, 1, x_136); -if (lean_is_scalar(x_134)) { - x_138 = lean_alloc_ctor(0, 1, 0); -} else { - x_138 = x_134; -} -lean_ctor_set(x_138, 0, x_137); -return x_138; -} -else -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; -lean_dec(x_130); -lean_dec(x_121); -lean_dec(x_119); -lean_dec(x_118); -lean_dec(x_117); -x_139 = lean_ctor_get(x_132, 0); -lean_inc(x_139); -if (lean_is_exclusive(x_132)) { - lean_ctor_release(x_132, 0); - x_140 = x_132; -} else { - lean_dec_ref(x_132); - x_140 = lean_box(0); -} -if (lean_is_scalar(x_140)) { - x_141 = lean_alloc_ctor(1, 1, 0); -} else { - x_141 = x_140; -} -lean_ctor_set(x_141, 0, x_139); -return x_141; -} -} -else -{ -lean_object* x_142; lean_object* x_143; lean_object* x_144; -lean_dec(x_121); -lean_dec(x_120); -lean_dec(x_119); -lean_dec(x_118); -lean_dec(x_117); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_142 = lean_ctor_get(x_129, 0); -lean_inc(x_142); -if (lean_is_exclusive(x_129)) { - lean_ctor_release(x_129, 0); - x_143 = x_129; -} else { - lean_dec_ref(x_129); - x_143 = lean_box(0); -} -if (lean_is_scalar(x_143)) { - x_144 = lean_alloc_ctor(1, 1, 0); -} else { - x_144 = x_143; -} -lean_ctor_set(x_144, 0, x_142); -return x_144; -} -} -} -else -{ -uint8_t x_145; -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -x_145 = !lean_is_exclusive(x_31); -if (x_145 == 0) -{ -return x_31; -} -else -{ -lean_object* x_146; lean_object* x_147; -x_146 = lean_ctor_get(x_31, 0); -lean_inc(x_146); -lean_dec(x_31); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_146); -return x_147; -} -} -} -else -{ -uint8_t x_148; -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_148 = !lean_is_exclusive(x_17); -if (x_148 == 0) -{ -return x_17; -} -else -{ -lean_object* x_149; lean_object* x_150; -x_149 = lean_ctor_get(x_17, 0); -lean_inc(x_149); -lean_dec(x_17); -x_150 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_150, 0, x_149); -return x_150; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___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, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; size_t x_17; lean_object* x_18; -x_16 = lean_unbox(x_4); -x_17 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_18 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11(x_1, x_2, x_3, x_16, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec_ref(x_6); -return x_18; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_14) { _start: { lean_object* x_16; @@ -26581,16 +24208,16 @@ return x_33; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___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, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; lean_object* x_17; x_16 = lean_unbox(x_4); -x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_17; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0(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) { _start: { lean_object* x_9; @@ -26599,11 +24226,11 @@ lean_ctor_set(x_9, 0, x_1); return x_9; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___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) { _start: { lean_object* x_9; -x_9 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); @@ -26613,7 +24240,7 @@ lean_dec_ref(x_2); return x_9; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__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) { _start: { lean_object* x_11; @@ -26621,11 +24248,11 @@ x_11 = l_Lean_Meta_instantiateLambda(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__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) { _start: { lean_object* x_11; -x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -26633,67 +24260,7 @@ lean_dec_ref(x_2); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0(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) { -_start: -{ -lean_object* x_9; -x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___lam__0___boxed), 8, 3); -lean_closure_set(x_11, 0, x_3); -lean_closure_set(x_11, 1, x_4); -lean_closure_set(x_11, 2, x_5); -x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_box(0), x_1, x_2, x_11, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_12) == 0) -{ -return x_12; -} -else -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -return x_12; -} -else -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_12, 0); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_15, 0, x_14); -return x_15; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg___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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -26701,14 +24268,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5___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) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -26720,7 +24287,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_16; @@ -26755,7 +24322,7 @@ x_21 = 1; x_22 = lean_box(x_7); x_23 = lean_box(x_8); x_24 = lean_box(x_21); -x_25 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5___boxed), 13, 5); +x_25 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5___boxed), 13, 5); lean_closure_set(x_25, 0, x_20); lean_closure_set(x_25, 1, x_19); lean_closure_set(x_25, 2, x_22); @@ -26793,18 +24360,78 @@ return x_16; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4___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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4___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, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; uint8_t x_17; lean_object* x_18; x_16 = lean_unbox(x_7); x_17 = lean_unbox(x_8); -x_18 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14); +x_18 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_6); return x_18; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0(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) { +_start: +{ +lean_object* x_9; +x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___lam__0___boxed), 8, 3); +lean_closure_set(x_11, 0, x_3); +lean_closure_set(x_11, 1, x_4); +lean_closure_set(x_11, 2, x_5); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_withUserNamesImpl(lean_box(0), x_1, x_2, x_11, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_12) == 0) +{ +return x_12; +} +else +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg___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_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_18; @@ -26814,7 +24441,7 @@ lean_inc(x_14); lean_inc_ref(x_13); lean_inc(x_12); lean_inc_ref(x_11); -x_18 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(x_1, x_2, x_3, x_11, x_12, x_13, x_14, x_15, x_16); +x_18 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(x_1, x_2, x_3, x_11, x_12, x_13, x_14, x_15, x_16); if (lean_obj_tag(x_18) == 0) { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; @@ -26824,7 +24451,7 @@ lean_dec_ref(x_18); x_20 = lean_box(x_3); x_21 = lean_box(x_8); lean_inc_ref(x_7); -x_22 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__4___boxed), 15, 8); +x_22 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__4___boxed), 15, 8); lean_closure_set(x_22, 0, x_4); lean_closure_set(x_22, 1, x_5); lean_closure_set(x_22, 2, x_6); @@ -26833,7 +24460,7 @@ lean_closure_set(x_22, 4, x_7); lean_closure_set(x_22, 5, x_9); lean_closure_set(x_22, 6, x_20); lean_closure_set(x_22, 7, x_21); -x_23 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg(x_7, x_19, x_22, x_11, x_12, x_13, x_14, x_15, x_16); +x_23 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg(x_7, x_19, x_22, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_19); lean_dec_ref(x_7); return x_23; @@ -26871,7 +24498,7 @@ return x_26; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -26894,22 +24521,22 @@ _start: uint8_t x_18; uint8_t x_19; lean_object* x_20; x_18 = lean_unbox(x_3); x_19 = lean_unbox(x_8); -x_20 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_20 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_20; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t 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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t 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, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_inc_ref(x_8); lean_inc_ref(x_1); -x_17 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__1___boxed), 10, 2); +x_17 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__1___boxed), 10, 2); lean_closure_set(x_17, 0, x_1); lean_closure_set(x_17, 1, x_8); x_18 = lean_box(x_3); x_19 = lean_box(x_6); -x_20 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__2___boxed), 17, 8); +x_20 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__2___boxed), 17, 8); lean_closure_set(x_20, 0, x_1); lean_closure_set(x_20, 1, x_2); lean_closure_set(x_20, 2, x_18); @@ -26924,146 +24551,17 @@ x_22 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do return x_22; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_3); x_18 = lean_unbox(x_6); -x_19 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_19; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_FVarId_getUserName___redArg(x_1, x_5, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44(size_t x_1, size_t 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) { -_start: -{ -uint8_t x_11; -x_11 = lean_usize_dec_lt(x_2, x_1); -if (x_11 == 0) -{ -lean_object* x_12; -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -x_12 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_12, 0, x_3); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_array_uget(x_3, x_2); -x_14 = l_Lean_Expr_fvarId_x21(x_13); -lean_dec(x_13); -x_15 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___lam__0___boxed), 9, 1); -lean_closure_set(x_15, 0, x_14); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -x_18 = lean_unsigned_to_nat(0u); -x_19 = lean_array_uset(x_3, x_2, x_18); -x_20 = 1; -x_21 = lean_usize_add(x_2, x_20); -x_22 = lean_array_uset(x_19, x_2, x_17); -x_2 = x_21; -x_3 = x_22; -goto _start; -} -else -{ -uint8_t x_24; -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_24 = !lean_is_exclusive(x_16); -if (x_24 == 0) -{ -return x_16; -} -else -{ -lean_object* x_25; lean_object* x_26; -x_25 = lean_ctor_get(x_16, 0); -lean_inc(x_25); -lean_dec(x_16); -x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_25); -return x_26; -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44___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: -{ -size_t x_11; size_t x_12; lean_object* x_13; -x_11 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_13; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3(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) { -_start: -{ -size_t x_10; size_t x_11; lean_object* x_12; -x_10 = lean_array_size(x_1); -x_11 = 0; -x_12 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__44(x_10, x_11, x_1, x_3, x_4, x_5, x_6, x_7, x_8); -return x_12; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3___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) { -_start: -{ -lean_object* x_10; -x_10 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg(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_13; uint8_t x_33; @@ -27123,7 +24621,7 @@ if (x_50 == 0) lean_object* x_51; lean_object* x_52; x_51 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_51, 0, x_5); -x_52 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_52 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_52, 0, x_51); x_13 = x_52; goto block_32; @@ -27159,7 +24657,7 @@ lean_object* x_64; lean_object* x_65; lean_dec(x_60); x_64 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_64, 0, x_5); -x_65 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_65 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_65, 0, x_64); x_13 = x_65; goto block_32; @@ -27195,7 +24693,7 @@ lean_dec(x_73); lean_dec(x_60); x_76 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_76, 0, x_5); -x_77 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_77 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_77, 0, x_76); x_13 = x_77; goto block_32; @@ -27219,7 +24717,7 @@ x_80 = lean_ctor_get(x_39, 1); lean_dec(x_80); x_81 = lean_ctor_get(x_39, 0); lean_dec(x_81); -x_82 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_82 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_83 = 0; x_84 = lean_array_fget_borrowed(x_70, x_71); x_85 = lean_box(x_83); @@ -27228,7 +24726,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_84); -x_87 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_87 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_87, 0, x_84); lean_closure_set(x_87, 1, x_82); lean_closure_set(x_87, 2, x_85); @@ -27242,7 +24740,7 @@ lean_ctor_set(x_39, 1, x_88); x_89 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_89, 0, x_73); x_90 = lean_box(x_83); -x_91 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_91 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_91, 0, x_60); lean_closure_set(x_91, 1, x_89); lean_closure_set(x_91, 2, x_87); @@ -27258,7 +24756,7 @@ else { lean_object* x_92; uint8_t 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; lean_object* x_101; lean_object* x_102; lean_dec(x_39); -x_92 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_92 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_93 = 0; x_94 = lean_array_fget_borrowed(x_70, x_71); x_95 = lean_box(x_93); @@ -27267,7 +24765,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_94); -x_97 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_97 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_97, 0, x_94); lean_closure_set(x_97, 1, x_92); lean_closure_set(x_97, 2, x_95); @@ -27284,7 +24782,7 @@ lean_ctor_set(x_99, 2, x_72); x_100 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_100, 0, x_73); x_101 = lean_box(x_93); -x_102 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_102 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_102, 0, x_60); lean_closure_set(x_102, 1, x_100); lean_closure_set(x_102, 2, x_97); @@ -27321,7 +24819,7 @@ lean_dec(x_60); lean_ctor_set(x_35, 0, x_108); x_110 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_110, 0, x_5); -x_111 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_111 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_111, 0, x_110); x_13 = x_111; goto block_32; @@ -27344,7 +24842,7 @@ if (lean_is_exclusive(x_39)) { lean_dec_ref(x_39); x_112 = lean_box(0); } -x_113 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_113 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_114 = 0; x_115 = lean_array_fget_borrowed(x_103, x_104); x_116 = lean_box(x_114); @@ -27353,7 +24851,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_115); -x_118 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_118 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_118, 0, x_115); lean_closure_set(x_118, 1, x_113); lean_closure_set(x_118, 2, x_116); @@ -27374,7 +24872,7 @@ lean_ctor_set(x_120, 2, x_105); x_121 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_121, 0, x_106); x_122 = lean_box(x_114); -x_123 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_123 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_123, 0, x_60); lean_closure_set(x_123, 1, x_121); lean_closure_set(x_123, 2, x_118); @@ -27412,7 +24910,7 @@ lean_dec(x_127); lean_ctor_set(x_36, 0, x_130); x_132 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_132, 0, x_5); -x_133 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_133 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_133, 0, x_132); x_13 = x_133; goto block_32; @@ -27456,7 +24954,7 @@ lean_ctor_set(x_36, 0, x_130); lean_ctor_set(x_35, 0, x_140); x_142 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_142, 0, x_5); -x_143 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_143 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_143, 0, x_142); x_13 = x_143; goto block_32; @@ -27479,7 +24977,7 @@ if (lean_is_exclusive(x_39)) { lean_dec_ref(x_39); x_144 = lean_box(0); } -x_145 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_145 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_146 = 0; x_147 = lean_array_fget_borrowed(x_135, x_136); x_148 = lean_box(x_146); @@ -27488,7 +24986,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_147); -x_150 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_150 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_150, 0, x_147); lean_closure_set(x_150, 1, x_145); lean_closure_set(x_150, 2, x_148); @@ -27509,7 +25007,7 @@ lean_ctor_set(x_152, 2, x_137); x_153 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_153, 0, x_138); x_154 = lean_box(x_146); -x_155 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_155 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_155, 0, x_127); lean_closure_set(x_155, 1, x_153); lean_closure_set(x_155, 2, x_150); @@ -27544,7 +25042,7 @@ lean_ctor_set(x_161, 1, x_156); lean_ctor_set(x_35, 1, x_161); x_162 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_162, 0, x_5); -x_163 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_163 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_163, 0, x_162); x_13 = x_163; goto block_32; @@ -27590,7 +25088,7 @@ lean_ctor_set(x_173, 1, x_156); lean_ctor_set(x_35, 1, x_173); x_174 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_174, 0, x_5); -x_175 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_175 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_175, 0, x_174); x_13 = x_175; goto block_32; @@ -27637,7 +25135,7 @@ lean_ctor_set(x_35, 1, x_184); lean_ctor_set(x_35, 0, x_182); x_185 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_185, 0, x_5); -x_186 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_186 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_186, 0, x_185); x_13 = x_186; goto block_32; @@ -27659,7 +25157,7 @@ if (lean_is_exclusive(x_39)) { lean_dec_ref(x_39); x_187 = lean_box(0); } -x_188 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_188 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_189 = 0; x_190 = lean_array_fget_borrowed(x_177, x_178); x_191 = lean_box(x_189); @@ -27668,7 +25166,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_190); -x_193 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_193 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_193, 0, x_190); lean_closure_set(x_193, 1, x_188); lean_closure_set(x_193, 2, x_191); @@ -27689,7 +25187,7 @@ lean_ctor_set(x_195, 2, x_179); x_196 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_196, 0, x_180); x_197 = lean_box(x_189); -x_198 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_198 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_198, 0, x_168); lean_closure_set(x_198, 1, x_196); lean_closure_set(x_198, 2, x_193); @@ -27741,7 +25239,7 @@ lean_ctor_set(x_207, 1, x_206); lean_ctor_set(x_5, 1, x_207); x_208 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_208, 0, x_5); -x_209 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_209 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_209, 0, x_208); x_13 = x_209; goto block_32; @@ -27794,7 +25292,7 @@ lean_ctor_set(x_220, 1, x_219); lean_ctor_set(x_5, 1, x_220); x_221 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_221, 0, x_5); -x_222 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_222 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_222, 0, x_221); x_13 = x_222; goto block_32; @@ -27847,7 +25345,7 @@ lean_ctor_set(x_232, 1, x_231); lean_ctor_set(x_5, 1, x_232); x_233 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_233, 0, x_5); -x_234 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_234 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_234, 0, x_233); x_13 = x_234; goto block_32; @@ -27869,7 +25367,7 @@ if (lean_is_exclusive(x_39)) { lean_dec_ref(x_39); x_235 = lean_box(0); } -x_236 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_236 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_237 = 0; x_238 = lean_array_fget_borrowed(x_224, x_225); x_239 = lean_box(x_237); @@ -27878,7 +25376,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_238); -x_241 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_241 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_241, 0, x_238); lean_closure_set(x_241, 1, x_236); lean_closure_set(x_241, 2, x_239); @@ -27899,7 +25397,7 @@ lean_ctor_set(x_243, 2, x_226); x_244 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_244, 0, x_227); x_245 = lean_box(x_237); -x_246 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_246 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_246, 0, x_214); lean_closure_set(x_246, 1, x_244); lean_closure_set(x_246, 2, x_241); @@ -27967,7 +25465,7 @@ lean_ctor_set(x_258, 0, x_247); lean_ctor_set(x_258, 1, x_257); x_259 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_259, 0, x_258); -x_260 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_260 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_260, 0, x_259); x_13 = x_260; goto block_32; @@ -28026,7 +25524,7 @@ lean_ctor_set(x_272, 0, x_247); lean_ctor_set(x_272, 1, x_271); x_273 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_273, 0, x_272); -x_274 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_274 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_274, 0, x_273); x_13 = x_274; goto block_32; @@ -28085,7 +25583,7 @@ lean_ctor_set(x_285, 0, x_247); lean_ctor_set(x_285, 1, x_284); x_286 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_286, 0, x_285); -x_287 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__0___boxed), 8, 1); +x_287 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__0___boxed), 8, 1); lean_closure_set(x_287, 0, x_286); x_13 = x_287; goto block_32; @@ -28107,7 +25605,7 @@ if (lean_is_exclusive(x_247)) { lean_dec_ref(x_247); x_288 = lean_box(0); } -x_289 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___closed__0)); +x_289 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___closed__0)); x_290 = 0; x_291 = lean_array_fget_borrowed(x_276, x_277); x_292 = lean_box(x_290); @@ -28116,7 +25614,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc_ref(x_2); lean_inc(x_291); -x_294 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__5___boxed), 16, 7); +x_294 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__5___boxed), 16, 7); lean_closure_set(x_294, 0, x_291); lean_closure_set(x_294, 1, x_289); lean_closure_set(x_294, 2, x_292); @@ -28137,7 +25635,7 @@ lean_ctor_set(x_296, 2, x_278); x_297 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_297, 0, x_279); x_298 = lean_box(x_290); -x_299 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___lam__6___boxed), 15, 8); +x_299 = lean_alloc_closure((void*)(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___lam__6___boxed), 15, 8); lean_closure_set(x_299, 0, x_265); lean_closure_set(x_299, 1, x_297); lean_closure_set(x_299, 2, x_294); @@ -28275,44 +25773,86 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg___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) { _start: { lean_object* x_13; -x_13 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg(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_1); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6(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_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57(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) { _start: { -lean_object* x_10; -x_10 = l_Lean_Meta_check(x_1, x_5, x_6, x_7, x_8); +lean_object* x_9; lean_object* x_10; +x_9 = ((lean_object*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___closed__0)); +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 0); +x_13 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_12, x_1); +lean_ctor_set(x_10, 0, x_13); return x_10; } +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_10, 0); +lean_inc(x_14); +lean_dec(x_10); +x_15 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_14, x_1); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___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) { +} +else +{ +uint8_t x_17; +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_10); +if (x_17 == 0) +{ +return x_10; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_10, 0); +lean_inc(x_18); +lean_dec(x_10); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___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) { _start: { -lean_object* x_10; -x_10 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; +lean_object* x_9; +x_9 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_3); +return x_9; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__0)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -28324,52 +25864,52 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__3)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__3)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__5)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__5)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__7)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__7)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__9)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__9)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__11)); +x_1 = ((lean_object*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__11)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1() { +static lean_object* _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1() { _start: { size_t x_1; lean_object* x_2; @@ -28378,11 +25918,11 @@ x_2 = lean_box_usize(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37(lean_object* x_1, uint8_t x_2, uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39(lean_object* x_1, uint8_t x_2, uint8_t 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_15; lean_object* x_16; -x_15 = ((lean_object*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55___closed__0)); +x_15 = ((lean_object*)(l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57___closed__0)); lean_inc(x_13); lean_inc_ref(x_12); lean_inc(x_11); @@ -28391,7 +25931,7 @@ lean_inc_ref(x_8); x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_8, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_16) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; 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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_117; uint8_t x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; size_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; 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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_117; uint8_t x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; size_t x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); lean_dec_ref(x_16); @@ -28408,7 +25948,7 @@ lean_inc_ref(x_24); x_25 = lean_ctor_get(x_1, 7); lean_inc_ref(x_25); lean_inc(x_19); -x_117 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__1___boxed), 9, 1); +x_117 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__1___boxed), 9, 1); lean_closure_set(x_117, 0, x_19); lean_inc(x_19); x_118 = l_Lean_isCasesOnRecursor(x_17, x_19); @@ -28421,7 +25961,7 @@ lean_inc(x_11); lean_inc_ref(x_10); lean_inc_ref(x_8); lean_inc(x_19); -x_653 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__55(x_19, x_8, x_9, x_10, x_11, x_12, x_13); +x_653 = l_Lean_Meta_getMatcherInfo_x3f___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__57(x_19, x_8, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_653) == 0) { lean_object* x_654; @@ -28440,12 +25980,12 @@ lean_dec_ref(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec_ref(x_1); -x_655 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10; +x_655 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10; x_656 = l_Lean_MessageData_ofName(x_19); x_657 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_657, 0, x_655); lean_ctor_set(x_657, 1, x_656); -x_658 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12; +x_658 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12; x_659 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_659, 0, x_657); lean_ctor_set(x_659, 1, x_658); @@ -28539,34 +26079,34 @@ goto block_652; block_116: { lean_object* x_44; lean_object* x_45; lean_object* x_46; 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; lean_object* x_55; -lean_inc_ref(x_39); -x_44 = lean_array_to_list(x_39); +lean_inc_ref(x_31); +x_44 = lean_array_to_list(x_31); lean_inc(x_19); x_45 = l_Lean_mkConst(x_19, x_44); -x_46 = l_Lean_mkAppN(x_45, x_43); -lean_inc_ref(x_34); -x_47 = l_Lean_Expr_app___override(x_46, x_34); -x_48 = l_Lean_mkAppN(x_47, x_31); +x_46 = l_Lean_mkAppN(x_45, x_34); +lean_inc_ref(x_38); +x_47 = l_Lean_Expr_app___override(x_46, x_38); +x_48 = l_Lean_mkAppN(x_47, x_30); lean_inc_ref(x_48); -x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__0___boxed), 9, 1); +x_49 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__0___boxed), 9, 1); lean_closure_set(x_49, 0, x_48); -x_50 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_50 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_50, 0, x_49); -lean_closure_set(x_50, 1, x_29); -lean_closure_set(x_50, 2, x_26); -x_51 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1; +lean_closure_set(x_50, 1, x_28); +lean_closure_set(x_50, 2, x_27); +x_51 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1; lean_inc_ref(x_48); x_52 = l_Lean_indentExpr(x_48); x_53 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); -x_54 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_54 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_54, 0, x_53); -lean_inc(x_35); -lean_inc_ref(x_40); -lean_inc(x_37); -lean_inc_ref(x_36); -x_55 = l_Lean_Meta_mapErrorImp___redArg(x_50, x_54, x_36, x_37, x_40, x_35); +lean_inc(x_42); +lean_inc_ref(x_32); +lean_inc(x_41); +lean_inc_ref(x_39); +x_55 = l_Lean_Meta_mapErrorImp___redArg(x_50, x_54, x_39, x_41, x_32, x_42); if (lean_obj_tag(x_55) == 0) { if (lean_obj_tag(x_55) == 0) @@ -28574,15 +26114,15 @@ if (lean_obj_tag(x_55) == 0) lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_dec_ref(x_55); x_56 = lean_array_get_size(x_24); -x_57 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__4___boxed), 10, 2); +x_57 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__4___boxed), 10, 2); lean_closure_set(x_57, 0, x_56); lean_closure_set(x_57, 1, x_48); -lean_inc(x_35); -lean_inc_ref(x_40); -lean_inc(x_37); -lean_inc_ref(x_36); -lean_inc_ref(x_38); -x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_38, x_30, x_36, x_37, x_40, x_35); +lean_inc(x_42); +lean_inc_ref(x_32); +lean_inc(x_41); +lean_inc_ref(x_39); +lean_inc_ref(x_33); +x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_33, x_36, x_39, x_41, x_32, x_42); if (lean_obj_tag(x_58) == 0) { 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; lean_object* x_69; @@ -28592,28 +26132,28 @@ lean_dec_ref(x_58); x_60 = l_Lean_Meta_MatcherApp_altNumParams(x_1); x_61 = lean_array_get_size(x_60); x_62 = lean_array_get_size(x_59); -lean_inc(x_32); -x_63 = l_Array_toSubarray___redArg(x_24, x_32, x_56); -lean_inc(x_32); -x_64 = l_Array_toSubarray___redArg(x_60, x_32, x_61); -lean_inc(x_32); -x_65 = l_Array_toSubarray___redArg(x_59, x_32, x_62); +lean_inc(x_35); +x_63 = l_Array_toSubarray___redArg(x_24, x_35, x_56); +lean_inc(x_35); +x_64 = l_Array_toSubarray___redArg(x_60, x_35, x_61); +lean_inc(x_35); +x_65 = l_Array_toSubarray___redArg(x_59, x_35, x_62); x_66 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_33); +lean_ctor_set(x_66, 1, x_43); x_67 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_67, 0, x_64); lean_ctor_set(x_67, 1, x_66); x_68 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_68, 0, x_63); lean_ctor_set(x_68, 1, x_67); -lean_inc(x_35); -lean_inc_ref(x_40); -lean_inc(x_37); -lean_inc_ref(x_36); -lean_inc(x_30); -lean_inc_ref(x_38); -x_69 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg(x_56, x_6, x_28, x_32, x_68, x_38, x_30, x_36, x_37, x_40, x_35); +lean_inc(x_42); +lean_inc_ref(x_32); +lean_inc(x_41); +lean_inc_ref(x_39); +lean_inc(x_36); +lean_inc_ref(x_33); +x_69 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg(x_56, x_6, x_29, x_35, x_68, x_33, x_36, x_39, x_41, x_32, x_42); if (lean_obj_tag(x_69) == 0) { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; @@ -28629,7 +26169,7 @@ lean_dec(x_71); x_73 = lean_ctor_get(x_72, 1); lean_inc(x_73); lean_dec(x_72); -x_74 = lean_apply_8(x_7, x_25, x_38, x_30, x_36, x_37, x_40, x_35, lean_box(0)); +x_74 = lean_apply_8(x_7, x_25, x_33, x_36, x_39, x_41, x_32, x_42, lean_box(0)); if (lean_obj_tag(x_74) == 0) { uint8_t x_75; @@ -28644,16 +26184,16 @@ lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; x_77 = lean_ctor_get(x_74, 0); x_78 = lean_ctor_get(x_18, 4); lean_dec(x_78); -x_79 = l_Array_append___redArg(x_27, x_77); +x_79 = l_Array_append___redArg(x_26, x_77); lean_dec(x_77); -lean_ctor_set(x_18, 4, x_41); +lean_ctor_set(x_18, 4, x_37); x_80 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_80, 0, x_18); lean_ctor_set(x_80, 1, x_19); -lean_ctor_set(x_80, 2, x_39); -lean_ctor_set(x_80, 3, x_43); -lean_ctor_set(x_80, 4, x_34); -lean_ctor_set(x_80, 5, x_31); +lean_ctor_set(x_80, 2, x_31); +lean_ctor_set(x_80, 3, x_34); +lean_ctor_set(x_80, 4, x_38); +lean_ctor_set(x_80, 5, x_30); lean_ctor_set(x_80, 6, x_73); lean_ctor_set(x_80, 7, x_79); lean_ctor_set(x_74, 0, x_80); @@ -28674,22 +26214,22 @@ lean_inc(x_84); lean_inc(x_83); lean_inc(x_82); lean_dec(x_18); -x_87 = l_Array_append___redArg(x_27, x_81); +x_87 = l_Array_append___redArg(x_26, x_81); lean_dec(x_81); x_88 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_88, 0, x_82); lean_ctor_set(x_88, 1, x_83); lean_ctor_set(x_88, 2, x_84); lean_ctor_set(x_88, 3, x_85); -lean_ctor_set(x_88, 4, x_41); +lean_ctor_set(x_88, 4, x_37); lean_ctor_set(x_88, 5, x_86); x_89 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_19); -lean_ctor_set(x_89, 2, x_39); -lean_ctor_set(x_89, 3, x_43); -lean_ctor_set(x_89, 4, x_34); -lean_ctor_set(x_89, 5, x_31); +lean_ctor_set(x_89, 2, x_31); +lean_ctor_set(x_89, 3, x_34); +lean_ctor_set(x_89, 4, x_38); +lean_ctor_set(x_89, 5, x_30); lean_ctor_set(x_89, 6, x_73); lean_ctor_set(x_89, 7, x_87); lean_ctor_set(x_74, 0, x_89); @@ -28724,7 +26264,7 @@ if (lean_is_exclusive(x_18)) { lean_dec_ref(x_18); x_96 = lean_box(0); } -x_97 = l_Array_append___redArg(x_27, x_90); +x_97 = l_Array_append___redArg(x_26, x_90); lean_dec(x_90); if (lean_is_scalar(x_96)) { x_98 = lean_alloc_ctor(0, 6, 0); @@ -28735,15 +26275,15 @@ lean_ctor_set(x_98, 0, x_91); lean_ctor_set(x_98, 1, x_92); lean_ctor_set(x_98, 2, x_93); lean_ctor_set(x_98, 3, x_94); -lean_ctor_set(x_98, 4, x_41); +lean_ctor_set(x_98, 4, x_37); lean_ctor_set(x_98, 5, x_95); x_99 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_19); -lean_ctor_set(x_99, 2, x_39); -lean_ctor_set(x_99, 3, x_43); -lean_ctor_set(x_99, 4, x_34); -lean_ctor_set(x_99, 5, x_31); +lean_ctor_set(x_99, 2, x_31); +lean_ctor_set(x_99, 3, x_34); +lean_ctor_set(x_99, 4, x_38); +lean_ctor_set(x_99, 5, x_30); lean_ctor_set(x_99, 6, x_73); lean_ctor_set(x_99, 7, x_97); x_100 = lean_alloc_ctor(0, 1, 0); @@ -28755,12 +26295,12 @@ else { uint8_t x_101; lean_dec(x_73); -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_39); +lean_dec_ref(x_38); +lean_dec_ref(x_37); lean_dec_ref(x_34); lean_dec_ref(x_31); -lean_dec_ref(x_27); +lean_dec_ref(x_30); +lean_dec_ref(x_26); lean_dec(x_19); lean_dec_ref(x_18); x_101 = !lean_is_exclusive(x_74); @@ -28783,18 +26323,18 @@ return x_103; else { uint8_t x_104; -lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_40); +lean_dec(x_42); +lean_dec(x_41); lean_dec_ref(x_39); lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); -lean_dec(x_35); +lean_dec_ref(x_37); +lean_dec(x_36); lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec_ref(x_32); lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec_ref(x_27); +lean_dec_ref(x_30); +lean_dec_ref(x_26); lean_dec_ref(x_25); lean_dec(x_19); lean_dec_ref(x_18); @@ -28820,20 +26360,20 @@ else { uint8_t x_107; lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_40); +lean_dec(x_42); +lean_dec(x_41); lean_dec_ref(x_39); lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); +lean_dec_ref(x_37); +lean_dec(x_36); lean_dec(x_35); lean_dec_ref(x_34); lean_dec_ref(x_33); -lean_dec(x_32); +lean_dec_ref(x_32); lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec_ref(x_27); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_26); lean_dec_ref(x_25); lean_dec_ref(x_24); lean_dec(x_19); @@ -28863,20 +26403,20 @@ else uint8_t x_110; lean_dec_ref(x_48); lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_40); +lean_dec(x_42); +lean_dec(x_41); lean_dec_ref(x_39); lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); +lean_dec_ref(x_37); +lean_dec(x_36); lean_dec(x_35); lean_dec_ref(x_34); lean_dec_ref(x_33); -lean_dec(x_32); +lean_dec_ref(x_32); lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec_ref(x_27); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_26); lean_dec_ref(x_25); lean_dec_ref(x_24); lean_dec(x_19); @@ -28907,20 +26447,20 @@ else uint8_t x_113; lean_dec_ref(x_48); lean_dec_ref(x_43); -lean_dec_ref(x_41); -lean_dec_ref(x_40); +lean_dec(x_42); +lean_dec(x_41); lean_dec_ref(x_39); lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); +lean_dec_ref(x_37); +lean_dec(x_36); lean_dec(x_35); lean_dec_ref(x_34); lean_dec_ref(x_33); -lean_dec(x_32); +lean_dec_ref(x_32); lean_dec_ref(x_31); -lean_dec(x_30); -lean_dec(x_28); -lean_dec_ref(x_27); +lean_dec_ref(x_30); +lean_dec(x_29); +lean_dec_ref(x_26); lean_dec_ref(x_25); lean_dec_ref(x_24); lean_dec(x_19); @@ -28950,12 +26490,12 @@ block_609: lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; size_t x_142; lean_object* x_143; x_134 = lean_unsigned_to_nat(0u); x_135 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33___redArg___closed__0; -x_136 = l_Array_reverse___redArg(x_123); +x_136 = l_Array_reverse___redArg(x_121); x_137 = lean_array_get_size(x_136); x_138 = l_Array_toSubarray___redArg(x_136, x_134, x_137); -lean_inc_ref(x_119); -x_139 = l_Array_reverse___redArg(x_119); -x_140 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2; +lean_inc_ref(x_120); +x_139 = l_Array_reverse___redArg(x_120); +x_140 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2; x_141 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_141, 0, x_138); lean_ctor_set(x_141, 1, x_140); @@ -28965,7 +26505,7 @@ lean_inc_ref(x_131); lean_inc(x_130); lean_inc_ref(x_129); lean_inc_ref(x_127); -x_143 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__48(x_139, x_142, x_124, x_141, x_127, x_128, x_129, x_130, x_131, x_132); +x_143 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__50(x_139, x_142, x_125, x_141, x_127, x_128, x_129, x_130, x_131, x_132); lean_dec_ref(x_139); if (lean_obj_tag(x_143) == 0) { @@ -28993,24 +26533,24 @@ lean_inc(x_149); lean_dec(x_146); lean_inc_ref(x_127); lean_inc(x_128); -x_26 = x_128; -x_27 = x_149; -x_28 = x_148; -x_29 = x_127; -x_30 = x_128; -x_31 = x_119; -x_32 = x_134; -x_33 = x_135; -x_34 = x_120; -x_35 = x_132; -x_36 = x_129; -x_37 = x_130; -x_38 = x_127; -x_39 = x_126; -x_40 = x_131; -x_41 = x_121; -x_42 = lean_box(0); -x_43 = x_125; +x_26 = x_149; +x_27 = x_128; +x_28 = x_127; +x_29 = x_148; +x_30 = x_120; +x_31 = x_126; +x_32 = x_131; +x_33 = x_127; +x_34 = x_124; +x_35 = x_134; +x_36 = x_128; +x_37 = x_119; +x_38 = x_123; +x_39 = x_129; +x_40 = lean_box(0); +x_41 = x_130; +x_42 = x_132; +x_43 = x_135; goto block_116; } else @@ -29048,30 +26588,30 @@ lean_inc_ref(x_126); x_162 = lean_array_to_list(x_126); lean_inc(x_162); x_163 = l_Lean_mkConst(x_19, x_162); -x_164 = l_Lean_mkAppN(x_163, x_125); -lean_inc_ref(x_120); -x_165 = l_Lean_Expr_app___override(x_164, x_120); -x_166 = l_Lean_mkAppN(x_165, x_119); +x_164 = l_Lean_mkAppN(x_163, x_124); +lean_inc_ref(x_123); +x_165 = l_Lean_Expr_app___override(x_164, x_123); +x_166 = l_Lean_mkAppN(x_165, x_120); lean_inc_ref(x_166); -x_167 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___boxed), 9, 1); +x_167 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___boxed), 9, 1); lean_closure_set(x_167, 0, x_166); lean_inc(x_128); lean_inc_ref(x_127); -x_168 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_168 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_168, 0, x_167); lean_closure_set(x_168, 1, x_127); lean_closure_set(x_168, 2, x_128); -x_169 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4; +x_169 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4; lean_inc_ref(x_166); x_170 = l_Lean_indentExpr(x_166); x_171 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_171, 0, x_169); lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6; +x_172 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6; x_173 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_173, 0, x_171); lean_ctor_set(x_173, 1, x_172); -x_174 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_174 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_174, 0, x_173); lean_inc(x_132); lean_inc_ref(x_131); @@ -29085,7 +26625,7 @@ if (lean_obj_tag(x_175) == 0) lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_dec_ref(x_175); x_176 = lean_array_get_size(x_24); -x_177 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___boxed), 10, 2); +x_177 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___boxed), 10, 2); lean_closure_set(x_177, 0, x_176); lean_closure_set(x_177, 1, x_166); lean_inc(x_132); @@ -29119,20 +26659,20 @@ lean_inc_ref(x_183); lean_dec(x_181); lean_inc(x_182); x_184 = l_Lean_mkConst(x_182, x_162); -x_185 = l_Lean_mkAppN(x_184, x_125); -lean_inc_ref(x_120); -x_186 = l_Lean_Expr_app___override(x_185, x_120); -x_187 = l_Lean_mkAppN(x_186, x_119); +x_185 = l_Lean_mkAppN(x_184, x_124); +lean_inc_ref(x_123); +x_186 = l_Lean_Expr_app___override(x_185, x_123); +x_187 = l_Lean_mkAppN(x_186, x_120); lean_inc_ref(x_187); -x_188 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___boxed), 9, 1); +x_188 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___boxed), 9, 1); lean_closure_set(x_188, 0, x_187); lean_inc(x_128); lean_inc_ref(x_127); -x_189 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_189 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_189, 0, x_188); lean_closure_set(x_189, 1, x_127); lean_closure_set(x_189, 2, x_128); -x_190 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8; +x_190 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8; lean_inc_ref(x_187); x_191 = l_Lean_indentExpr(x_187); x_192 = lean_alloc_ctor(7, 2, 0); @@ -29141,7 +26681,7 @@ lean_ctor_set(x_192, 1, x_191); x_193 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_193, 0, x_192); lean_ctor_set(x_193, 1, x_172); -x_194 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_194 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_194, 0, x_193); lean_inc(x_132); lean_inc_ref(x_131); @@ -29154,7 +26694,7 @@ if (lean_obj_tag(x_195) == 0) { lean_object* x_196; lean_object* x_197; lean_dec_ref(x_195); -x_196 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___boxed), 10, 2); +x_196 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___boxed), 10, 2); lean_closure_set(x_196, 0, x_176); lean_closure_set(x_196, 1, x_187); lean_inc(x_132); @@ -29223,7 +26763,7 @@ lean_inc(x_130); lean_inc_ref(x_129); lean_inc(x_128); lean_inc_ref(x_127); -x_223 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_176, x_6, x_2, x_160, x_122, x_134, x_222, x_127, x_128, x_129, x_130, x_131, x_132); +x_223 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_176, x_6, x_2, x_160, x_122, x_134, x_222, x_127, x_128, x_129, x_130, x_131, x_132); if (lean_obj_tag(x_223) == 0) { lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; @@ -29257,16 +26797,16 @@ x_232 = lean_ctor_get(x_230, 0); x_233 = l_Array_append___redArg(x_161, x_232); lean_dec(x_232); lean_ctor_set(x_183, 5, x_203); -lean_ctor_set(x_183, 4, x_121); +lean_ctor_set(x_183, 4, x_119); lean_ctor_set(x_183, 3, x_202); lean_ctor_set(x_183, 2, x_201); lean_ctor_set(x_183, 1, x_200); lean_ctor_set(x_183, 0, x_199); lean_ctor_set(x_1, 7, x_233); lean_ctor_set(x_1, 6, x_229); -lean_ctor_set(x_1, 5, x_119); -lean_ctor_set(x_1, 4, x_120); -lean_ctor_set(x_1, 3, x_125); +lean_ctor_set(x_1, 5, x_120); +lean_ctor_set(x_1, 4, x_123); +lean_ctor_set(x_1, 3, x_124); lean_ctor_set(x_1, 2, x_126); lean_ctor_set(x_1, 1, x_182); lean_ctor_set(x_1, 0, x_183); @@ -29282,16 +26822,16 @@ lean_dec(x_230); x_235 = l_Array_append___redArg(x_161, x_234); lean_dec(x_234); lean_ctor_set(x_183, 5, x_203); -lean_ctor_set(x_183, 4, x_121); +lean_ctor_set(x_183, 4, x_119); lean_ctor_set(x_183, 3, x_202); lean_ctor_set(x_183, 2, x_201); lean_ctor_set(x_183, 1, x_200); lean_ctor_set(x_183, 0, x_199); lean_ctor_set(x_1, 7, x_235); lean_ctor_set(x_1, 6, x_229); -lean_ctor_set(x_1, 5, x_119); -lean_ctor_set(x_1, 4, x_120); -lean_ctor_set(x_1, 3, x_125); +lean_ctor_set(x_1, 5, x_120); +lean_ctor_set(x_1, 4, x_123); +lean_ctor_set(x_1, 3, x_124); lean_ctor_set(x_1, 2, x_126); lean_ctor_set(x_1, 1, x_182); lean_ctor_set(x_1, 0, x_183); @@ -29314,8 +26854,8 @@ lean_dec(x_182); lean_dec(x_161); lean_free_object(x_1); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); x_237 = !lean_is_exclusive(x_230); @@ -29354,8 +26894,8 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29411,7 +26951,7 @@ lean_inc(x_130); lean_inc_ref(x_129); lean_inc(x_128); lean_inc_ref(x_127); -x_256 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_176, x_6, x_2, x_160, x_122, x_134, x_255, x_127, x_128, x_129, x_130, x_131, x_132); +x_256 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_176, x_6, x_2, x_160, x_122, x_134, x_255, x_127, x_128, x_129, x_130, x_131, x_132); if (lean_obj_tag(x_256) == 0) { lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; @@ -29453,13 +26993,13 @@ lean_ctor_set(x_267, 0, x_199); lean_ctor_set(x_267, 1, x_200); lean_ctor_set(x_267, 2, x_201); lean_ctor_set(x_267, 3, x_202); -lean_ctor_set(x_267, 4, x_121); +lean_ctor_set(x_267, 4, x_119); lean_ctor_set(x_267, 5, x_203); lean_ctor_set(x_1, 7, x_266); lean_ctor_set(x_1, 6, x_262); -lean_ctor_set(x_1, 5, x_119); -lean_ctor_set(x_1, 4, x_120); -lean_ctor_set(x_1, 3, x_125); +lean_ctor_set(x_1, 5, x_120); +lean_ctor_set(x_1, 4, x_123); +lean_ctor_set(x_1, 3, x_124); lean_ctor_set(x_1, 2, x_126); lean_ctor_set(x_1, 1, x_182); lean_ctor_set(x_1, 0, x_267); @@ -29484,8 +27024,8 @@ lean_dec(x_182); lean_dec(x_161); lean_free_object(x_1); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); x_269 = lean_ctor_get(x_263, 0); @@ -29524,8 +27064,8 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29567,9 +27107,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29613,9 +27153,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29660,9 +27200,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29704,9 +27244,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -29747,9 +27287,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -29792,9 +27332,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -29838,9 +27378,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -29878,30 +27418,30 @@ lean_inc_ref(x_126); x_298 = lean_array_to_list(x_126); lean_inc(x_298); x_299 = l_Lean_mkConst(x_19, x_298); -x_300 = l_Lean_mkAppN(x_299, x_125); -lean_inc_ref(x_120); -x_301 = l_Lean_Expr_app___override(x_300, x_120); -x_302 = l_Lean_mkAppN(x_301, x_119); +x_300 = l_Lean_mkAppN(x_299, x_124); +lean_inc_ref(x_123); +x_301 = l_Lean_Expr_app___override(x_300, x_123); +x_302 = l_Lean_mkAppN(x_301, x_120); lean_inc_ref(x_302); -x_303 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___boxed), 9, 1); +x_303 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___boxed), 9, 1); lean_closure_set(x_303, 0, x_302); lean_inc(x_128); lean_inc_ref(x_127); -x_304 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_304 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_304, 0, x_303); lean_closure_set(x_304, 1, x_127); lean_closure_set(x_304, 2, x_128); -x_305 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4; +x_305 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4; lean_inc_ref(x_302); x_306 = l_Lean_indentExpr(x_302); x_307 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_307, 0, x_305); lean_ctor_set(x_307, 1, x_306); -x_308 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6; +x_308 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6; x_309 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_309, 0, x_307); lean_ctor_set(x_309, 1, x_308); -x_310 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_310 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_310, 0, x_309); lean_inc(x_132); lean_inc_ref(x_131); @@ -29915,7 +27455,7 @@ if (lean_obj_tag(x_311) == 0) lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_dec_ref(x_311); x_312 = lean_array_get_size(x_24); -x_313 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___boxed), 10, 2); +x_313 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___boxed), 10, 2); lean_closure_set(x_313, 0, x_312); lean_closure_set(x_313, 1, x_302); lean_inc(x_132); @@ -29949,20 +27489,20 @@ lean_inc_ref(x_319); lean_dec(x_317); lean_inc(x_318); x_320 = l_Lean_mkConst(x_318, x_298); -x_321 = l_Lean_mkAppN(x_320, x_125); -lean_inc_ref(x_120); -x_322 = l_Lean_Expr_app___override(x_321, x_120); -x_323 = l_Lean_mkAppN(x_322, x_119); +x_321 = l_Lean_mkAppN(x_320, x_124); +lean_inc_ref(x_123); +x_322 = l_Lean_Expr_app___override(x_321, x_123); +x_323 = l_Lean_mkAppN(x_322, x_120); lean_inc_ref(x_323); -x_324 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___boxed), 9, 1); +x_324 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___boxed), 9, 1); lean_closure_set(x_324, 0, x_323); lean_inc(x_128); lean_inc_ref(x_127); -x_325 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_325 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_325, 0, x_324); lean_closure_set(x_325, 1, x_127); lean_closure_set(x_325, 2, x_128); -x_326 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8; +x_326 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8; lean_inc_ref(x_323); x_327 = l_Lean_indentExpr(x_323); x_328 = lean_alloc_ctor(7, 2, 0); @@ -29971,7 +27511,7 @@ lean_ctor_set(x_328, 1, x_327); x_329 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_329, 0, x_328); lean_ctor_set(x_329, 1, x_308); -x_330 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_330 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_330, 0, x_329); lean_inc(x_132); lean_inc_ref(x_131); @@ -29984,7 +27524,7 @@ if (lean_obj_tag(x_331) == 0) { lean_object* x_332; lean_object* x_333; lean_dec_ref(x_331); -x_332 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___boxed), 10, 2); +x_332 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___boxed), 10, 2); lean_closure_set(x_332, 0, x_312); lean_closure_set(x_332, 1, x_323); lean_inc(x_132); @@ -30054,7 +27594,7 @@ lean_inc(x_130); lean_inc_ref(x_129); lean_inc(x_128); lean_inc_ref(x_127); -x_355 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_312, x_6, x_2, x_296, x_122, x_134, x_354, x_127, x_128, x_129, x_130, x_131, x_132); +x_355 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_312, x_6, x_2, x_296, x_122, x_134, x_354, x_127, x_128, x_129, x_130, x_131, x_132); if (lean_obj_tag(x_355) == 0) { lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; @@ -30100,13 +27640,13 @@ lean_ctor_set(x_366, 0, x_335); lean_ctor_set(x_366, 1, x_336); lean_ctor_set(x_366, 2, x_337); lean_ctor_set(x_366, 3, x_338); -lean_ctor_set(x_366, 4, x_121); +lean_ctor_set(x_366, 4, x_119); lean_ctor_set(x_366, 5, x_339); lean_ctor_set(x_1, 7, x_365); lean_ctor_set(x_1, 6, x_361); -lean_ctor_set(x_1, 5, x_119); -lean_ctor_set(x_1, 4, x_120); -lean_ctor_set(x_1, 3, x_125); +lean_ctor_set(x_1, 5, x_120); +lean_ctor_set(x_1, 4, x_123); +lean_ctor_set(x_1, 3, x_124); lean_ctor_set(x_1, 2, x_126); lean_ctor_set(x_1, 1, x_318); lean_ctor_set(x_1, 0, x_366); @@ -30132,8 +27672,8 @@ lean_dec(x_318); lean_dec(x_297); lean_free_object(x_1); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); x_368 = lean_ctor_get(x_362, 0); @@ -30173,8 +27713,8 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30214,9 +27754,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30260,9 +27800,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30307,9 +27847,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30351,9 +27891,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30394,9 +27934,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -30439,9 +27979,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -30485,9 +28025,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -30535,30 +28075,30 @@ lean_inc_ref(x_126); x_398 = lean_array_to_list(x_126); lean_inc(x_398); x_399 = l_Lean_mkConst(x_19, x_398); -x_400 = l_Lean_mkAppN(x_399, x_125); -lean_inc_ref(x_120); -x_401 = l_Lean_Expr_app___override(x_400, x_120); -x_402 = l_Lean_mkAppN(x_401, x_119); +x_400 = l_Lean_mkAppN(x_399, x_124); +lean_inc_ref(x_123); +x_401 = l_Lean_Expr_app___override(x_400, x_123); +x_402 = l_Lean_mkAppN(x_401, x_120); lean_inc_ref(x_402); -x_403 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___boxed), 9, 1); +x_403 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___boxed), 9, 1); lean_closure_set(x_403, 0, x_402); lean_inc(x_128); lean_inc_ref(x_127); -x_404 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_404 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_404, 0, x_403); lean_closure_set(x_404, 1, x_127); lean_closure_set(x_404, 2, x_128); -x_405 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4; +x_405 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4; lean_inc_ref(x_402); x_406 = l_Lean_indentExpr(x_402); x_407 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_407, 0, x_405); lean_ctor_set(x_407, 1, x_406); -x_408 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6; +x_408 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6; x_409 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_409, 0, x_407); lean_ctor_set(x_409, 1, x_408); -x_410 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_410 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_410, 0, x_409); lean_inc(x_132); lean_inc_ref(x_131); @@ -30572,7 +28112,7 @@ if (lean_obj_tag(x_411) == 0) lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_dec_ref(x_411); x_412 = lean_array_get_size(x_24); -x_413 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___boxed), 10, 2); +x_413 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___boxed), 10, 2); lean_closure_set(x_413, 0, x_412); lean_closure_set(x_413, 1, x_402); lean_inc(x_132); @@ -30606,20 +28146,20 @@ lean_inc_ref(x_419); lean_dec(x_417); lean_inc(x_418); x_420 = l_Lean_mkConst(x_418, x_398); -x_421 = l_Lean_mkAppN(x_420, x_125); -lean_inc_ref(x_120); -x_422 = l_Lean_Expr_app___override(x_421, x_120); -x_423 = l_Lean_mkAppN(x_422, x_119); +x_421 = l_Lean_mkAppN(x_420, x_124); +lean_inc_ref(x_123); +x_422 = l_Lean_Expr_app___override(x_421, x_123); +x_423 = l_Lean_mkAppN(x_422, x_120); lean_inc_ref(x_423); -x_424 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___boxed), 9, 1); +x_424 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___boxed), 9, 1); lean_closure_set(x_424, 0, x_423); lean_inc(x_128); lean_inc_ref(x_127); -x_425 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_425 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_425, 0, x_424); lean_closure_set(x_425, 1, x_127); lean_closure_set(x_425, 2, x_128); -x_426 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8; +x_426 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8; lean_inc_ref(x_423); x_427 = l_Lean_indentExpr(x_423); x_428 = lean_alloc_ctor(7, 2, 0); @@ -30628,7 +28168,7 @@ lean_ctor_set(x_428, 1, x_427); x_429 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_429, 0, x_428); lean_ctor_set(x_429, 1, x_408); -x_430 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_430 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_430, 0, x_429); lean_inc(x_132); lean_inc_ref(x_131); @@ -30641,7 +28181,7 @@ if (lean_obj_tag(x_431) == 0) { lean_object* x_432; lean_object* x_433; lean_dec_ref(x_431); -x_432 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___boxed), 10, 2); +x_432 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___boxed), 10, 2); lean_closure_set(x_432, 0, x_412); lean_closure_set(x_432, 1, x_423); lean_inc(x_132); @@ -30715,7 +28255,7 @@ lean_inc(x_130); lean_inc_ref(x_129); lean_inc(x_128); lean_inc_ref(x_127); -x_455 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_412, x_6, x_2, x_395, x_122, x_134, x_454, x_127, x_128, x_129, x_130, x_131, x_132); +x_455 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_412, x_6, x_2, x_395, x_122, x_134, x_454, x_127, x_128, x_129, x_130, x_131, x_132); if (lean_obj_tag(x_455) == 0) { lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; @@ -30761,15 +28301,15 @@ lean_ctor_set(x_466, 0, x_435); lean_ctor_set(x_466, 1, x_436); lean_ctor_set(x_466, 2, x_437); lean_ctor_set(x_466, 3, x_438); -lean_ctor_set(x_466, 4, x_121); +lean_ctor_set(x_466, 4, x_119); lean_ctor_set(x_466, 5, x_439); x_467 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_467, 0, x_466); lean_ctor_set(x_467, 1, x_418); lean_ctor_set(x_467, 2, x_126); -lean_ctor_set(x_467, 3, x_125); -lean_ctor_set(x_467, 4, x_120); -lean_ctor_set(x_467, 5, x_119); +lean_ctor_set(x_467, 3, x_124); +lean_ctor_set(x_467, 4, x_123); +lean_ctor_set(x_467, 5, x_120); lean_ctor_set(x_467, 6, x_461); lean_ctor_set(x_467, 7, x_465); if (lean_is_scalar(x_464)) { @@ -30793,8 +28333,8 @@ lean_dec(x_435); lean_dec(x_418); lean_dec(x_396); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); x_469 = lean_ctor_get(x_462, 0); @@ -30833,8 +28373,8 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30874,9 +28414,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30920,9 +28460,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -30967,9 +28507,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31011,9 +28551,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31054,9 +28594,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31099,9 +28639,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31145,9 +28685,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31188,24 +28728,24 @@ lean_inc(x_497); lean_dec(x_146); lean_inc_ref(x_127); lean_inc(x_128); -x_26 = x_128; -x_27 = x_497; -x_28 = x_496; -x_29 = x_127; -x_30 = x_128; -x_31 = x_119; -x_32 = x_134; -x_33 = x_135; -x_34 = x_120; -x_35 = x_132; -x_36 = x_129; -x_37 = x_130; -x_38 = x_127; -x_39 = x_126; -x_40 = x_131; -x_41 = x_121; -x_42 = lean_box(0); -x_43 = x_125; +x_26 = x_497; +x_27 = x_128; +x_28 = x_127; +x_29 = x_496; +x_30 = x_120; +x_31 = x_126; +x_32 = x_131; +x_33 = x_127; +x_34 = x_124; +x_35 = x_134; +x_36 = x_128; +x_37 = x_119; +x_38 = x_123; +x_39 = x_129; +x_40 = lean_box(0); +x_41 = x_130; +x_42 = x_132; +x_43 = x_135; goto block_116; } } @@ -31228,24 +28768,24 @@ lean_inc(x_500); lean_dec(x_498); lean_inc_ref(x_127); lean_inc(x_128); -x_26 = x_128; -x_27 = x_500; -x_28 = x_499; -x_29 = x_127; -x_30 = x_128; -x_31 = x_119; -x_32 = x_134; -x_33 = x_135; -x_34 = x_120; -x_35 = x_132; -x_36 = x_129; -x_37 = x_130; -x_38 = x_127; -x_39 = x_126; -x_40 = x_131; -x_41 = x_121; -x_42 = lean_box(0); -x_43 = x_125; +x_26 = x_500; +x_27 = x_128; +x_28 = x_127; +x_29 = x_499; +x_30 = x_120; +x_31 = x_126; +x_32 = x_131; +x_33 = x_127; +x_34 = x_124; +x_35 = x_134; +x_36 = x_128; +x_37 = x_119; +x_38 = x_123; +x_39 = x_129; +x_40 = lean_box(0); +x_41 = x_130; +x_42 = x_132; +x_43 = x_135; goto block_116; } else @@ -31283,30 +28823,30 @@ lean_inc_ref(x_126); x_505 = lean_array_to_list(x_126); lean_inc(x_505); x_506 = l_Lean_mkConst(x_19, x_505); -x_507 = l_Lean_mkAppN(x_506, x_125); -lean_inc_ref(x_120); -x_508 = l_Lean_Expr_app___override(x_507, x_120); -x_509 = l_Lean_mkAppN(x_508, x_119); +x_507 = l_Lean_mkAppN(x_506, x_124); +lean_inc_ref(x_123); +x_508 = l_Lean_Expr_app___override(x_507, x_123); +x_509 = l_Lean_mkAppN(x_508, x_120); lean_inc_ref(x_509); -x_510 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__5___boxed), 9, 1); +x_510 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__5___boxed), 9, 1); lean_closure_set(x_510, 0, x_509); lean_inc(x_128); lean_inc_ref(x_127); -x_511 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_511 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_511, 0, x_510); lean_closure_set(x_511, 1, x_127); lean_closure_set(x_511, 2, x_128); -x_512 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4; +x_512 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4; lean_inc_ref(x_509); x_513 = l_Lean_indentExpr(x_509); x_514 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_514, 0, x_512); lean_ctor_set(x_514, 1, x_513); -x_515 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6; +x_515 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6; x_516 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_516, 0, x_514); lean_ctor_set(x_516, 1, x_515); -x_517 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_517 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_517, 0, x_516); lean_inc(x_132); lean_inc_ref(x_131); @@ -31320,7 +28860,7 @@ if (lean_obj_tag(x_518) == 0) lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_dec_ref(x_518); x_519 = lean_array_get_size(x_24); -x_520 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__8___boxed), 10, 2); +x_520 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__8___boxed), 10, 2); lean_closure_set(x_520, 0, x_519); lean_closure_set(x_520, 1, x_509); lean_inc(x_132); @@ -31354,20 +28894,20 @@ lean_inc_ref(x_526); lean_dec(x_524); lean_inc(x_525); x_527 = l_Lean_mkConst(x_525, x_505); -x_528 = l_Lean_mkAppN(x_527, x_125); -lean_inc_ref(x_120); -x_529 = l_Lean_Expr_app___override(x_528, x_120); -x_530 = l_Lean_mkAppN(x_529, x_119); +x_528 = l_Lean_mkAppN(x_527, x_124); +lean_inc_ref(x_123); +x_529 = l_Lean_Expr_app___override(x_528, x_123); +x_530 = l_Lean_mkAppN(x_529, x_120); lean_inc_ref(x_530); -x_531 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__6___boxed), 9, 1); +x_531 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__6___boxed), 9, 1); lean_closure_set(x_531, 0, x_530); lean_inc(x_128); lean_inc_ref(x_127); -x_532 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__2___boxed), 8, 3); +x_532 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__2___boxed), 8, 3); lean_closure_set(x_532, 0, x_531); lean_closure_set(x_532, 1, x_127); lean_closure_set(x_532, 2, x_128); -x_533 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8; +x_533 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8; lean_inc_ref(x_530); x_534 = l_Lean_indentExpr(x_530); x_535 = lean_alloc_ctor(7, 2, 0); @@ -31376,7 +28916,7 @@ lean_ctor_set(x_535, 1, x_534); x_536 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_536, 0, x_535); lean_ctor_set(x_536, 1, x_515); -x_537 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__3), 2, 1); +x_537 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__3), 2, 1); lean_closure_set(x_537, 0, x_536); lean_inc(x_132); lean_inc_ref(x_131); @@ -31389,7 +28929,7 @@ if (lean_obj_tag(x_538) == 0) { lean_object* x_539; lean_object* x_540; lean_dec_ref(x_538); -x_539 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__10___boxed), 10, 2); +x_539 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__10___boxed), 10, 2); lean_closure_set(x_539, 0, x_519); lean_closure_set(x_539, 1, x_530); lean_inc(x_132); @@ -31464,7 +29004,7 @@ lean_inc(x_130); lean_inc_ref(x_129); lean_inc(x_128); lean_inc_ref(x_127); -x_563 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_519, x_6, x_2, x_502, x_122, x_134, x_562, x_127, x_128, x_129, x_130, x_131, x_132); +x_563 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_519, x_6, x_2, x_502, x_122, x_134, x_562, x_127, x_128, x_129, x_130, x_131, x_132); if (lean_obj_tag(x_563) == 0) { lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; @@ -31510,7 +29050,7 @@ lean_ctor_set(x_574, 0, x_542); lean_ctor_set(x_574, 1, x_543); lean_ctor_set(x_574, 2, x_544); lean_ctor_set(x_574, 3, x_545); -lean_ctor_set(x_574, 4, x_121); +lean_ctor_set(x_574, 4, x_119); lean_ctor_set(x_574, 5, x_546); if (lean_is_scalar(x_501)) { x_575 = lean_alloc_ctor(0, 8, 0); @@ -31520,9 +29060,9 @@ if (lean_is_scalar(x_501)) { lean_ctor_set(x_575, 0, x_574); lean_ctor_set(x_575, 1, x_525); lean_ctor_set(x_575, 2, x_126); -lean_ctor_set(x_575, 3, x_125); -lean_ctor_set(x_575, 4, x_120); -lean_ctor_set(x_575, 5, x_119); +lean_ctor_set(x_575, 3, x_124); +lean_ctor_set(x_575, 4, x_123); +lean_ctor_set(x_575, 5, x_120); lean_ctor_set(x_575, 6, x_569); lean_ctor_set(x_575, 7, x_573); if (lean_is_scalar(x_572)) { @@ -31547,8 +29087,8 @@ lean_dec(x_525); lean_dec(x_503); lean_dec(x_501); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); x_577 = lean_ctor_get(x_570, 0); @@ -31588,8 +29128,8 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); -lean_dec_ref(x_121); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31629,9 +29169,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31675,9 +29215,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31722,9 +29262,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31766,9 +29306,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_25); @@ -31809,9 +29349,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31854,9 +29394,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31900,9 +29440,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -31941,24 +29481,24 @@ lean_inc(x_605); lean_dec(x_498); lean_inc_ref(x_127); lean_inc(x_128); -x_26 = x_128; -x_27 = x_605; -x_28 = x_604; -x_29 = x_127; -x_30 = x_128; -x_31 = x_119; -x_32 = x_134; -x_33 = x_135; -x_34 = x_120; -x_35 = x_132; -x_36 = x_129; -x_37 = x_130; -x_38 = x_127; -x_39 = x_126; -x_40 = x_131; -x_41 = x_121; -x_42 = lean_box(0); -x_43 = x_125; +x_26 = x_605; +x_27 = x_128; +x_28 = x_127; +x_29 = x_604; +x_30 = x_120; +x_31 = x_126; +x_32 = x_131; +x_33 = x_127; +x_34 = x_124; +x_35 = x_134; +x_36 = x_128; +x_37 = x_119; +x_38 = x_123; +x_39 = x_129; +x_40 = lean_box(0); +x_41 = x_130; +x_42 = x_132; +x_43 = x_135; goto block_116; } } @@ -31974,9 +29514,9 @@ lean_dec_ref(x_129); lean_dec(x_128); lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec_ref(x_125); +lean_dec_ref(x_124); +lean_dec_ref(x_123); lean_dec(x_122); -lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); lean_dec_ref(x_117); @@ -32017,7 +29557,7 @@ lean_inc(x_612); lean_inc_ref(x_611); lean_inc_ref(x_21); lean_inc_ref(x_4); -x_620 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45(x_4, x_618, x_619, x_21, x_611, x_612, x_613, x_614, x_615, x_616); +x_620 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47(x_4, x_618, x_619, x_21, x_611, x_612, x_613, x_614, x_615, x_616); if (lean_obj_tag(x_620) == 0) { lean_object* x_621; size_t x_622; lean_object* x_623; @@ -32032,7 +29572,7 @@ lean_inc_ref(x_613); lean_inc(x_612); lean_inc_ref(x_611); lean_inc_ref(x_23); -x_623 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__45(x_4, x_622, x_619, x_23, x_611, x_612, x_613, x_614, x_615, x_616); +x_623 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__47(x_4, x_622, x_619, x_23, x_611, x_612, x_613, x_614, x_615, x_616); if (lean_obj_tag(x_623) == 0) { lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; uint8_t x_628; lean_object* x_629; @@ -32040,11 +29580,11 @@ x_624 = lean_ctor_get(x_623, 0); lean_inc(x_624); lean_dec_ref(x_623); x_625 = lean_box(x_3); -x_626 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1; +x_626 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1; lean_inc_ref(x_23); lean_inc(x_624); lean_inc_ref(x_18); -x_627 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___boxed), 15, 6); +x_627 = lean_alloc_closure((void*)(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___boxed), 15, 6); lean_closure_set(x_627, 0, x_5); lean_closure_set(x_627, 1, x_18); lean_closure_set(x_627, 2, x_624); @@ -32059,7 +29599,7 @@ lean_inc_ref(x_613); lean_inc(x_612); lean_inc_ref(x_611); lean_inc_ref(x_22); -x_629 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(x_22, x_627, x_628, x_611, x_612, x_613, x_614, x_615, x_616); +x_629 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(x_22, x_627, x_628, x_611, x_612, x_613, x_614, x_615, x_616); if (lean_obj_tag(x_629) == 0) { lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; @@ -32082,13 +29622,13 @@ x_636 = lean_ctor_get(x_632, 1); lean_inc(x_636); lean_dec(x_632); lean_inc_ref(x_20); -x_119 = x_624; -x_120 = x_634; -x_121 = x_636; +x_119 = x_636; +x_120 = x_624; +x_121 = x_635; x_122 = x_610; -x_123 = x_635; -x_124 = x_619; -x_125 = x_621; +x_123 = x_634; +x_124 = x_621; +x_125 = x_619; x_126 = x_20; x_127 = x_611; x_128 = x_612; @@ -32117,13 +29657,13 @@ lean_dec(x_632); x_641 = lean_ctor_get(x_633, 0); lean_inc_ref(x_20); x_642 = lean_array_set(x_20, x_641, x_638); -x_119 = x_624; -x_120 = x_637; -x_121 = x_640; +x_119 = x_640; +x_120 = x_624; +x_121 = x_639; x_122 = x_610; -x_123 = x_639; -x_124 = x_619; -x_125 = x_621; +x_123 = x_637; +x_124 = x_621; +x_125 = x_619; x_126 = x_642; x_127 = x_611; x_128 = x_612; @@ -32279,63 +29819,153 @@ return x_672; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___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, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox(x_2); x_16 = lean_unbox(x_3); -x_17 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39(x_1, x_15, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__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) { _start: { -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_9, 0, x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__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) { -_start: +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1)); +x_13 = lean_mk_empty_array_with_capacity(x_1); +x_14 = lean_array_push(x_13, x_6); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc_ref(x_14); +x_15 = lean_apply_11(x_2, x_12, x_3, x_1, x_14, x_4, x_5, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_9; -x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); +lean_object* x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = 0; +x_18 = 1; +x_19 = 1; +x_20 = lean_box(x_17); +x_21 = lean_box(x_18); +x_22 = lean_box(x_19); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___boxed), 13, 5); +lean_closure_set(x_23, 0, x_14); +lean_closure_set(x_23, 1, x_16); +lean_closure_set(x_23, 2, x_20); +lean_closure_set(x_23, 3, x_21); +lean_closure_set(x_23, 4, x_22); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_4, x_5, x_7, x_8, x_9, x_10); +lean_dec(x_5); +return x_24; +} +else +{ +lean_dec_ref(x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_5); lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_9; +return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0(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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__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_10; -x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); -return x_10; +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0___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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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) { _start: { -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___boxed), 11, 5); +lean_closure_set(x_15, 0, x_14); +lean_closure_set(x_15, 1, x_1); +lean_closure_set(x_15, 2, x_2); +lean_closure_set(x_15, 3, x_7); +lean_closure_set(x_15, 4, x_8); +x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_3, x_4, x_5, x_15, x_6, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_16) == 0) +{ +return x_16; +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +return x_16; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___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: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_4); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62(x_1, x_2, x_3, x_14, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0___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: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t 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_13; lean_object* x_14; lean_object* x_15; -x_13 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1)); +x_13 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1)); x_14 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33___redArg___closed__0; lean_inc(x_11); lean_inc_ref(x_10); @@ -32359,7 +29989,7 @@ x_20 = 1; x_21 = lean_box(x_19); x_22 = lean_box(x_6); x_23 = lean_box(x_20); -x_24 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57___lam__0___boxed), 13, 5); +x_24 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0___boxed), 13, 5); lean_closure_set(x_24, 0, x_18); lean_closure_set(x_24, 1, x_16); lean_closure_set(x_24, 2, x_21); @@ -32383,22 +30013,22 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__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) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_6); -x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__1(x_1, x_2, x_3, x_4, x_5, x_13, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__1(x_1, x_2, x_3, x_4, x_5, x_13, x_7, x_8, x_9, x_10, x_11); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_15 = lean_unsigned_to_nat(1u); x_16 = lean_box(x_3); -x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___lam__1___boxed), 12, 6); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___lam__1___boxed), 12, 6); lean_closure_set(x_17, 0, x_1); lean_closure_set(x_17, 1, x_2); lean_closure_set(x_17, 2, x_15); @@ -32431,18 +30061,64 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60___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, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; x_15 = lean_unbox(x_3); x_16 = lean_unbox(x_5); x_17 = lean_unbox(x_7); -x_18 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58(x_1, x_2, x_15, x_4, x_16, x_6, x_17, x_8, x_9, x_10, x_11, x_12, x_13); +x_18 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60(x_1, x_2, x_15, x_4, x_16, x_6, x_17, x_8, x_9, x_10, x_11, x_12, x_13); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3(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) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -32454,16 +30130,302 @@ x_17 = lean_apply_11(x_1, x_16, x_3, x_2, x_4, x_6, x_7, x_8, x_9, x_10, x_11, l return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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) { _start: { lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__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_ref(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Expr_abstractM(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4___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_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t 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_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1)); +x_14 = lean_unsigned_to_nat(0u); +x_15 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33___redArg___closed__0; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_4); +lean_inc_ref(x_3); +x_16 = lean_apply_11(x_1, x_13, x_2, x_14, x_15, x_3, x_4, x_8, x_9, x_10, x_11, lean_box(0)); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = lean_mk_empty_array_with_capacity(x_5); +x_19 = lean_array_push(x_18, x_7); +x_20 = 0; +x_21 = 1; +x_22 = lean_box(x_20); +x_23 = lean_box(x_6); +x_24 = lean_box(x_21); +x_25 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__0___boxed), 13, 5); +lean_closure_set(x_25, 0, x_19); +lean_closure_set(x_25, 1, x_17); +lean_closure_set(x_25, 2, x_22); +lean_closure_set(x_25, 3, x_23); +lean_closure_set(x_25, 4, x_24); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_3, x_4, x_8, x_9, x_10, x_11); +lean_dec(x_4); +return x_26; +} +else +{ +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_6); +x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1(x_1, x_2, x_3, x_4, x_5, x_13, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, uint8_t 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_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_box(x_3); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___boxed), 12, 6); +lean_closure_set(x_17, 0, x_1); +lean_closure_set(x_17, 1, x_2); +lean_closure_set(x_17, 2, x_8); +lean_closure_set(x_17, 3, x_9); +lean_closure_set(x_17, 4, x_15); +lean_closure_set(x_17, 5, x_16); +x_18 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_4, x_5, x_6, x_17, x_7, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_18) == 0) +{ +return x_18; +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +return x_21; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___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, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; +x_15 = lean_unbox(x_3); +x_16 = lean_unbox(x_5); +x_17 = lean_unbox(x_7); +x_18 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59(x_1, x_2, x_15, x_4, x_16, x_6, x_17, x_8, x_9, x_10, x_11, x_12, x_13); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5(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_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Array_mask___redArg(x_1, x_3); +x_13 = lean_expr_instantiate_rev(x_2, x_12); +lean_dec_ref(x_12); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5___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_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_11 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1)); +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; +x_14 = lean_array_push(x_13, x_5); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_14); +x_15 = lean_apply_11(x_1, x_11, x_2, x_12, x_14, x_3, x_4, x_6, x_7, x_8, x_9, lean_box(0)); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = 0; +x_18 = 1; +x_19 = 1; +x_20 = lean_box(x_17); +x_21 = lean_box(x_18); +x_22 = lean_box(x_19); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___boxed), 13, 5); +lean_closure_set(x_23, 0, x_14); +lean_closure_set(x_23, 1, x_16); +lean_closure_set(x_23, 2, x_20); +lean_closure_set(x_23, 3, x_21); +lean_closure_set(x_23, 4, x_22); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_3, x_4, x_6, x_7, x_8, x_9); +lean_dec(x_4); +return x_24; +} +else +{ +lean_dec_ref(x_14); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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) { +_start: +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___lam__1___boxed), 10, 4); +lean_closure_set(x_14, 0, x_1); +lean_closure_set(x_14, 1, x_2); +lean_closure_set(x_14, 2, x_7); +lean_closure_set(x_14, 3, x_8); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_3, x_4, x_5, x_14, x_6, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_15) == 0) +{ +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +return x_15; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61___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: +{ +uint8_t x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_unbox(x_4); +x_15 = lean_unbox(x_6); +x_16 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61(x_1, x_2, x_3, x_14, x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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: { switch (lean_obj_tag(x_1)) { @@ -32474,7 +30436,7 @@ x_12 = lean_ctor_get(x_1, 0); lean_inc_ref(x_12); lean_dec_ref(x_1); lean_inc_ref(x_2); -x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0___boxed), 9, 1); +x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0___boxed), 9, 1); lean_closure_set(x_13, 0, x_2); lean_inc(x_10); lean_inc_ref(x_9); @@ -32504,7 +30466,7 @@ lean_dec_ref(x_12); if (x_4 == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_25 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59___lam__1___closed__1)); +x_25 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59___lam__1___closed__1)); x_26 = lean_unsigned_to_nat(0u); x_27 = l_Lean_Meta_withLocalDecls___at___00Lean_Meta_withLocalDeclsD___at___00Lean_Meta_withLocalDeclsDND___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__24_spec__28_spec__33___redArg___closed__0; lean_inc_ref(x_3); @@ -32522,7 +30484,7 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); lean_dec_ref(x_28); -x_30 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60___lam__1___closed__1)); +x_30 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62___lam__1___closed__1)); lean_inc_ref(x_2); x_31 = lean_apply_11(x_3, x_30, x_2, x_16, x_27, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); if (lean_obj_tag(x_31) == 0) @@ -32533,7 +30495,7 @@ if (x_32 == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; x_33 = lean_ctor_get(x_31, 0); -x_34 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__1)); +x_34 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__1)); x_35 = lean_box(0); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_15); @@ -32549,7 +30511,7 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean x_39 = lean_ctor_get(x_31, 0); lean_inc(x_39); lean_dec(x_31); -x_40 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__1)); +x_40 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__1)); x_41 = lean_box(0); x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_15); @@ -32615,7 +30577,7 @@ lean_inc_ref(x_20); lean_inc(x_48); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_51 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__57(x_3, x_2, x_4, x_48, x_49, x_20, x_50, x_5, x_6, x_7, x_8, x_9, x_10); +x_51 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__59(x_3, x_2, x_4, x_48, x_49, x_20, x_50, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_51) == 0) { lean_object* x_52; lean_object* x_53; lean_object* x_54; @@ -32625,7 +30587,7 @@ lean_dec_ref(x_51); lean_inc_ref(x_20); x_53 = l_Lean_mkNot(x_20); lean_inc_ref(x_2); -x_54 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__58(x_3, x_2, x_4, x_48, x_49, x_53, x_50, x_5, x_6, x_7, x_8, x_9, x_10); +x_54 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__60(x_3, x_2, x_4, x_48, x_49, x_53, x_50, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_54) == 0) { uint8_t x_55; @@ -32634,7 +30596,7 @@ if (x_55 == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; x_56 = lean_ctor_get(x_54, 0); -x_57 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3)); +x_57 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3)); x_58 = lean_box(0); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_15); @@ -32650,7 +30612,7 @@ lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean x_62 = lean_ctor_get(x_54, 0); lean_inc(x_62); lean_dec(x_54); -x_63 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3)); +x_63 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3)); x_64 = lean_box(0); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_15); @@ -32757,7 +30719,7 @@ x_75 = lean_ctor_get(x_1, 0); lean_inc_ref(x_75); lean_dec_ref(x_1); lean_inc_ref(x_2); -x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__0___boxed), 9, 1); +x_76 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__0___boxed), 9, 1); lean_closure_set(x_76, 0, x_2); lean_inc(x_10); lean_inc_ref(x_9); @@ -32802,7 +30764,7 @@ lean_inc_ref(x_86); lean_inc(x_81); lean_inc_ref(x_2); lean_inc_ref(x_3); -x_89 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__59(x_3, x_2, x_81, x_87, x_86, x_88, x_5, x_6, x_7, x_8, x_9, x_10); +x_89 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__61(x_3, x_2, x_81, x_87, x_86, x_88, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_89) == 0) { lean_object* x_90; lean_object* x_91; lean_object* x_92; @@ -32812,7 +30774,7 @@ lean_dec_ref(x_89); lean_inc_ref(x_86); x_91 = l_Lean_mkNot(x_86); lean_inc_ref(x_2); -x_92 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__60(x_3, x_2, x_81, x_87, x_91, x_88, x_5, x_6, x_7, x_8, x_9, x_10); +x_92 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__62(x_3, x_2, x_81, x_87, x_91, x_88, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_92) == 0) { uint8_t x_93; @@ -32828,7 +30790,7 @@ x_97 = lean_nat_sub(x_96, x_82); lean_dec(x_96); x_98 = l_Lean_Expr_getRevArg_x21(x_75, x_97); lean_dec_ref(x_75); -x_99 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3)); +x_99 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3)); x_100 = lean_box(0); x_101 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_101, 0, x_78); @@ -32851,7 +30813,7 @@ x_107 = lean_nat_sub(x_106, x_82); lean_dec(x_106); x_108 = l_Lean_Expr_getRevArg_x21(x_75, x_107); lean_dec_ref(x_75); -x_109 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__3)); +x_109 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__3)); x_110 = lean_box(0); x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_78); @@ -32961,10 +30923,10 @@ x_122 = lean_ctor_get(x_121, 5); x_123 = lean_array_size(x_122); x_124 = 0; lean_inc_ref(x_122); -x_125 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__36(x_123, x_124, x_122); +x_125 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__38(x_123, x_124, x_122); lean_inc_ref(x_122); x_126 = l_Array_mask___redArg(x_125, x_122); -x_127 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__4___boxed), 10, 2); +x_127 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__4___boxed), 10, 2); lean_closure_set(x_127, 0, x_2); lean_closure_set(x_127, 1, x_126); lean_inc(x_10); @@ -32979,14 +30941,14 @@ lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; x_129 = lean_ctor_get(x_128, 0); lean_inc(x_129); lean_dec_ref(x_128); -x_130 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__1___boxed), 12, 1); +x_130 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__1___boxed), 12, 1); lean_closure_set(x_130, 0, x_3); -x_131 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__4)); -x_132 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___closed__5)); -x_133 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___lam__5___boxed), 11, 2); +x_131 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__4)); +x_132 = ((lean_object*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___closed__5)); +x_133 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___lam__5___boxed), 11, 2); lean_closure_set(x_133, 0, x_125); lean_closure_set(x_133, 1, x_129); -x_134 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37(x_121, x_4, x_4, x_131, x_133, x_130, x_132, x_5, x_6, x_7, x_8, x_9, x_10); +x_134 = l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39(x_121, x_4, x_4, x_131, x_133, x_130, x_132, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_134) == 0) { uint8_t x_135; @@ -33048,16 +31010,35 @@ return x_128; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_reduceMatcher_x3f(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { _start: { lean_object* x_14; @@ -33065,14 +31046,14 @@ x_14 = l_Lean_Meta_mkLambdaFVars(x_1, x_2, x_3, x_4, x_3, x_4, x_5, x_9, x_10, x return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0___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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_3); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_5); -x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -33084,7 +31065,7 @@ lean_dec_ref(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__1(lean_object* x_1, uint8_t 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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__1(lean_object* x_1, uint8_t 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) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -33098,7 +31079,7 @@ x_16 = 1; x_17 = lean_box(x_15); x_18 = lean_box(x_2); x_19 = lean_box(x_16); -x_20 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__0___boxed), 13, 5); +x_20 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__0___boxed), 13, 5); lean_closure_set(x_20, 0, x_12); lean_closure_set(x_20, 1, x_14); lean_closure_set(x_20, 2, x_17); @@ -33108,22 +31089,22 @@ x_21 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_20, x_3, x_4, x_6, x_7, x_8, x return x_21; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__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) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_2); -x_12 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__1(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__1(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42(lean_object* x_1, uint8_t x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44(lean_object* x_1, uint8_t x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, uint8_t 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) { _start: { lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = lean_box(x_2); -x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___lam__1___boxed), 10, 4); +x_15 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___lam__1___boxed), 10, 4); lean_closure_set(x_15, 0, x_1); lean_closure_set(x_15, 1, x_14); lean_closure_set(x_15, 2, x_7); @@ -33154,14 +31135,14 @@ return x_19; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42___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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44___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: { uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; x_14 = lean_unbox(x_2); x_15 = lean_unbox(x_4); x_16 = lean_unbox(x_6); -x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42(x_1, x_14, x_3, x_15, x_5, x_16, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44(x_1, x_14, x_3, x_15, x_5, x_16, x_7, x_8, x_9, x_10, x_11, x_12); return x_17; } } @@ -33388,7 +31369,34 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0(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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_14 = lean_unbox(x_3); +x_15 = lean_unbox(x_4); +x_16 = lean_unbox(x_5); +x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0(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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -33398,8 +31406,8 @@ x_16 = lean_unsigned_to_nat(4u); x_17 = lean_unsigned_to_nat(0u); x_18 = l_Array_extract___redArg(x_15, x_17, x_16); lean_dec_ref(x_15); -x_19 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__0)); -x_20 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___closed__1)); +x_19 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__0)); +x_20 = ((lean_object*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___closed__1)); x_21 = l_Lean_Name_mkStr4(x_8, x_9, x_19, x_20); x_22 = l_Lean_mkConst(x_21, x_10); x_23 = l_Lean_mkAppN(x_22, x_18); @@ -33415,42 +31423,15 @@ lean_ctor_set(x_25, 3, x_23); return x_25; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___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_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0(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); +x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0(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_7); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, uint8_t 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) { -_start: -{ -lean_object* x_14; -x_14 = l_Lean_Meta_mkForallFVars(x_1, x_2, x_3, x_4, x_4, x_5, x_9, x_10, x_11, x_12); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; -x_14 = lean_unbox(x_3); -x_15 = lean_unbox(x_4); -x_16 = lean_unbox(x_5); -x_17 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__2(x_1, x_2, x_14, x_15, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_17; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4(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: { @@ -33503,124 +31484,6 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(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_13; uint8_t x_14; -x_13 = lean_unsigned_to_nat(0u); -x_14 = lean_nat_dec_eq(x_3, x_13); -if (x_14 == 1) -{ -lean_object* x_15; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_15, 0, x_5); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_array_fget_borrowed(x_2, x_4); -lean_inc(x_4); -lean_inc(x_1); -x_17 = lean_name_append_index_after(x_1, x_4); -lean_inc(x_16); -x_18 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___boxed), 10, 2); -lean_closure_set(x_18, 0, x_16); -lean_closure_set(x_18, 1, x_17); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -x_21 = lean_unsigned_to_nat(1u); -x_22 = lean_nat_sub(x_3, x_21); -lean_dec(x_3); -x_23 = lean_nat_add(x_4, x_21); -lean_dec(x_4); -x_24 = lean_array_push(x_5, x_20); -x_3 = x_22; -x_4 = x_23; -x_5 = x_24; -goto _start; -} -else -{ -uint8_t x_26; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_19); -if (x_26 == 0) -{ -return x_19; -} -else -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_19, 0); -lean_inc(x_27); -lean_dec(x_19); -x_28 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_28, 0, x_27); -return x_28; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___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) { -_start: -{ -lean_object* x_13; -x_13 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(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_7); -lean_dec_ref(x_2); -return x_13; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6(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) { _start: { @@ -33640,23 +31503,7 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0(lean_object* x_1) { -_start: -{ -lean_inc_ref(x_1); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__0(x_1); -lean_dec_ref(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10(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) { _start: { lean_object* x_10; @@ -33664,11 +31511,11 @@ x_10 = l_Lean_throwError___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN__ return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -33679,87 +31526,53 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0(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) { -_start: -{ -lean_object* x_10; -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec_ref(x_10); -x_12 = l_Lean_Meta_decLevel(x_11, x_5, x_6, x_7, x_8); -return x_12; -} -else -{ +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); -return x_10; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4(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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l_Lean_throwError___at___00Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15_spec__26___redArg(x_1, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4___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) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5(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) { _start: { lean_object* x_11; @@ -33767,2905 +31580,18 @@ x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0(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) { -_start: -{ -lean_object* x_9; -x_9 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_7); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0___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) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6(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_12; -x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7(lean_object* x_1, lean_object* x_2, uint8_t 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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { -_start: -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1)); -x_22 = lean_unsigned_to_nat(0u); -x_23 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___boxed), 11, 3); -lean_closure_set(x_23, 0, x_21); -lean_closure_set(x_23, 1, x_22); -lean_closure_set(x_23, 2, x_1); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -lean_dec_ref(x_24); -x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___boxed), 11, 3); -lean_closure_set(x_26, 0, x_21); -lean_closure_set(x_26, 1, x_22); -lean_closure_set(x_26, 2, x_2); -x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; -x_28 = lean_array_push(x_27, x_13); -x_29 = l_Lean_Expr_betaRev(x_25, x_28, x_3, x_3); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_30 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_26, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -lean_dec_ref(x_30); -x_32 = l_Lean_Expr_betaRev(x_31, x_28, x_3, x_3); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -lean_dec_ref(x_33); -x_35 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__2)); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_36) == 0) -{ -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; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -lean_dec_ref(x_36); -x_38 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9)); -x_39 = l_Lean_Name_mkStr4(x_5, x_6, x_7, x_38); -x_40 = l_Lean_mkConst(x_39, x_8); -x_41 = l_Lean_Expr_app___override(x_40, x_9); -x_42 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_42, 0, x_37); -lean_ctor_set(x_42, 1, x_34); -lean_ctor_set(x_42, 2, x_29); -x_43 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_42); -x_44 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_44, 0, x_10); -lean_ctor_set(x_44, 1, x_41); -lean_ctor_set(x_44, 2, x_43); -lean_ctor_set(x_44, 3, x_32); -x_45 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_44); -x_46 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__4)); -x_47 = l_Lean_Name_append(x_11, x_46); -x_48 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__8___boxed), 10, 2); -lean_closure_set(x_48, 0, x_45); -lean_closure_set(x_48, 1, x_47); -lean_inc(x_19); -lean_inc_ref(x_18); -lean_inc(x_17); -lean_inc_ref(x_16); -lean_inc_ref(x_14); -x_49 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_48, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -lean_dec_ref(x_49); -x_51 = 1; -x_52 = lean_box(x_3); -x_53 = lean_box(x_12); -x_54 = lean_box(x_51); -x_55 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__5___boxed), 13, 5); -lean_closure_set(x_55, 0, x_28); -lean_closure_set(x_55, 1, x_50); -lean_closure_set(x_55, 2, x_52); -lean_closure_set(x_55, 3, x_53); -lean_closure_set(x_55, 4, x_54); -x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_14, x_15, x_16, x_17, x_18, x_19); -return x_56; -} -else -{ -lean_dec_ref(x_28); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_14); -return x_49; -} -} -else -{ -uint8_t x_57; -lean_dec(x_34); -lean_dec_ref(x_32); -lean_dec_ref(x_29); -lean_dec_ref(x_28); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_14); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -x_57 = !lean_is_exclusive(x_36); -if (x_57 == 0) -{ -return x_36; -} -else -{ -lean_object* x_58; lean_object* x_59; -x_58 = lean_ctor_get(x_36, 0); -lean_inc(x_58); -lean_dec(x_36); -x_59 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_59, 0, x_58); -return x_59; -} -} -} -else -{ -uint8_t x_60; -lean_dec_ref(x_32); -lean_dec_ref(x_29); -lean_dec_ref(x_28); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_14); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -x_60 = !lean_is_exclusive(x_33); -if (x_60 == 0) -{ -return x_33; -} -else -{ -lean_object* x_61; lean_object* x_62; -x_61 = lean_ctor_get(x_33, 0); -lean_inc(x_61); -lean_dec(x_33); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -return x_62; -} -} -} -else -{ -lean_dec_ref(x_29); -lean_dec_ref(x_28); -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_14); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -return x_30; -} -} -else -{ -lean_dec(x_19); -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_14); -lean_dec_ref(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -return x_24; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; -_start: -{ -uint8_t x_21; uint8_t x_22; lean_object* x_23; -x_21 = lean_unbox(x_3); -x_22 = lean_unbox(x_12); -x_23 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7(x_1, x_2, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_15); -return x_23; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -static uint64_t _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15() { -_start: -{ -uint8_t x_1; uint64_t x_2; -x_1 = 1; -x_2 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__22)); -x_3 = l_Lean_mkConst(x_2, x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(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_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1)); -x_14 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2)); -x_15 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8)); -x_16 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__1)); -x_17 = l_Lean_Expr_isAppOf(x_2, x_16); -if (x_17 == 0) -{ -lean_object* x_18; uint8_t x_19; uint8_t x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; uint8_t x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; uint8_t x_32; uint8_t x_33; uint8_t x_34; uint8_t x_35; uint8_t x_36; uint8_t 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; uint8_t x_44; uint8_t x_45; uint8_t x_46; uint8_t x_47; lean_object* x_48; uint64_t x_49; uint64_t x_50; uint64_t 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; uint8_t x_58; lean_object* x_59; lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; uint8_t x_181; lean_object* x_182; lean_object* x_229; uint64_t x_230; uint64_t x_231; uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_18 = l_Lean_Meta_Context_config(x_8); -x_19 = lean_ctor_get_uint8(x_18, 0); -x_20 = lean_ctor_get_uint8(x_18, 1); -x_21 = lean_ctor_get_uint8(x_18, 2); -x_22 = lean_ctor_get_uint8(x_18, 3); -x_23 = lean_ctor_get_uint8(x_18, 4); -x_24 = lean_ctor_get_uint8(x_18, 5); -x_25 = lean_ctor_get_uint8(x_18, 6); -x_26 = lean_ctor_get_uint8(x_18, 7); -x_27 = lean_ctor_get_uint8(x_18, 8); -x_28 = lean_ctor_get_uint8(x_18, 10); -x_29 = lean_ctor_get_uint8(x_18, 11); -x_30 = lean_ctor_get_uint8(x_18, 12); -x_31 = lean_ctor_get_uint8(x_18, 13); -x_32 = lean_ctor_get_uint8(x_18, 14); -x_33 = lean_ctor_get_uint8(x_18, 15); -x_34 = lean_ctor_get_uint8(x_18, 16); -x_35 = lean_ctor_get_uint8(x_18, 17); -x_36 = lean_ctor_get_uint8(x_18, 18); -x_37 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); -x_38 = lean_ctor_get(x_8, 1); -x_39 = lean_ctor_get(x_8, 2); -x_40 = lean_ctor_get(x_8, 3); -x_41 = lean_ctor_get(x_8, 4); -x_42 = lean_ctor_get(x_8, 5); -x_43 = lean_ctor_get(x_8, 6); -x_44 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); -x_45 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); -x_46 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); -x_47 = 1; -x_48 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_48, 0, x_19); -lean_ctor_set_uint8(x_48, 1, x_20); -lean_ctor_set_uint8(x_48, 2, x_21); -lean_ctor_set_uint8(x_48, 3, x_22); -lean_ctor_set_uint8(x_48, 4, x_23); -lean_ctor_set_uint8(x_48, 5, x_24); -lean_ctor_set_uint8(x_48, 6, x_25); -lean_ctor_set_uint8(x_48, 7, x_26); -lean_ctor_set_uint8(x_48, 8, x_27); -lean_ctor_set_uint8(x_48, 9, x_47); -lean_ctor_set_uint8(x_48, 10, x_28); -lean_ctor_set_uint8(x_48, 11, x_29); -lean_ctor_set_uint8(x_48, 12, x_30); -lean_ctor_set_uint8(x_48, 13, x_31); -lean_ctor_set_uint8(x_48, 14, x_32); -lean_ctor_set_uint8(x_48, 15, x_33); -lean_ctor_set_uint8(x_48, 16, x_34); -lean_ctor_set_uint8(x_48, 17, x_35); -lean_ctor_set_uint8(x_48, 18, x_36); -x_49 = l_Lean_Meta_Context_configKey(x_8); -x_50 = 2; -x_51 = lean_uint64_shift_right(x_49, x_50); -x_52 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__2)); -lean_inc_ref(x_4); -x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__1___boxed), 9, 1); -lean_closure_set(x_53, 0, x_4); -lean_inc_ref(x_3); -x_54 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__2___boxed), 9, 1); -lean_closure_set(x_54, 0, x_3); -lean_inc_ref(x_4); -lean_inc_ref(x_3); -x_229 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__3___boxed), 10, 2); -lean_closure_set(x_229, 0, x_3); -lean_closure_set(x_229, 1, x_4); -x_230 = lean_uint64_shift_left(x_51, x_50); -x_231 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_232 = lean_uint64_lor(x_230, x_231); -x_233 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_233, 0, x_48); -lean_ctor_set_uint64(x_233, sizeof(void*)*1, x_232); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc_ref(x_39); -lean_inc(x_38); -x_234 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_234, 0, x_233); -lean_ctor_set(x_234, 1, x_38); -lean_ctor_set(x_234, 2, x_39); -lean_ctor_set(x_234, 3, x_40); -lean_ctor_set(x_234, 4, x_41); -lean_ctor_set(x_234, 5, x_42); -lean_ctor_set(x_234, 6, x_43); -lean_ctor_set_uint8(x_234, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 2, x_45); -lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 3, x_46); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_235 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_229, x_6, x_7, x_234, x_9, x_10, x_11); -if (lean_obj_tag(x_235) == 0) -{ -lean_object* x_236; uint8_t x_237; -x_236 = lean_ctor_get(x_235, 0); -lean_inc(x_236); -lean_dec_ref(x_235); -x_237 = lean_unbox(x_236); -lean_dec(x_236); -x_181 = x_237; -x_182 = lean_box(0); -goto block_228; -} -else -{ -if (lean_obj_tag(x_235) == 0) -{ -lean_object* x_238; uint8_t x_239; -x_238 = lean_ctor_get(x_235, 0); -lean_inc(x_238); -lean_dec_ref(x_235); -x_239 = lean_unbox(x_238); -lean_dec(x_238); -x_181 = x_239; -x_182 = lean_box(0); -goto block_228; -} -else -{ -uint8_t x_240; -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec_ref(x_18); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_240 = !lean_is_exclusive(x_235); -if (x_240 == 0) -{ -return x_235; -} -else -{ -lean_object* x_241; lean_object* x_242; -x_241 = lean_ctor_get(x_235, 0); -lean_inc(x_241); -lean_dec(x_235); -x_242 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_242, 0, x_241); -return x_242; -} -} -} -block_114: -{ -if (x_58 == 0) -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; -x_60 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__4)); -x_61 = lean_unsigned_to_nat(2u); -x_62 = l_Lean_Expr_isAppOfArity(x_2, x_60, x_61); -if (x_62 == 0) -{ -lean_object* x_63; uint8_t x_64; -x_63 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__6)); -x_64 = l_Lean_Expr_isAppOfArity(x_2, x_63, x_61); -if (x_64 == 0) -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec(x_1); -x_65 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2)); -x_66 = l_Lean_Name_mkStr4(x_13, x_14, x_56, x_65); -x_67 = l_Lean_mkConst(x_66, x_57); -x_68 = l_Lean_mkApp3(x_67, x_2, x_3, x_4); -x_69 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__4___boxed), 10, 2); -lean_closure_set(x_69, 0, x_68); -lean_closure_set(x_69, 1, x_5); -x_70 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_69, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_70; -} -else -{ -lean_object* x_71; -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_71 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_71) == 0) -{ -lean_object* x_72; lean_object* x_73; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -lean_dec_ref(x_71); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_53, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_73) == 0) -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_74 = lean_ctor_get(x_73, 0); -lean_inc(x_74); -lean_dec_ref(x_73); -x_75 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__9)); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_76) == 0) -{ -lean_object* 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; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -lean_dec_ref(x_76); -x_78 = l_Lean_Expr_appFn_x21(x_2); -x_79 = l_Lean_Expr_appArg_x21(x_78); -lean_dec_ref(x_78); -x_80 = l_Lean_Expr_appArg_x21(x_2); -lean_dec_ref(x_2); -x_81 = lean_box(x_62); -x_82 = lean_box(x_64); -lean_inc(x_5); -lean_inc(x_1); -lean_inc_ref(x_80); -lean_inc(x_74); -lean_inc(x_72); -x_83 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___boxed), 20, 12); -lean_closure_set(x_83, 0, x_72); -lean_closure_set(x_83, 1, x_74); -lean_closure_set(x_83, 2, x_81); -lean_closure_set(x_83, 3, x_52); -lean_closure_set(x_83, 4, x_13); -lean_closure_set(x_83, 5, x_14); -lean_closure_set(x_83, 6, x_15); -lean_closure_set(x_83, 7, x_55); -lean_closure_set(x_83, 8, x_80); -lean_closure_set(x_83, 9, x_1); -lean_closure_set(x_83, 10, x_5); -lean_closure_set(x_83, 11, x_82); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_84 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_77, x_79, x_83, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -lean_dec_ref(x_84); -x_86 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1)); -x_87 = lean_unsigned_to_nat(1u); -x_88 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___boxed), 11, 3); -lean_closure_set(x_88, 0, x_86); -lean_closure_set(x_88, 1, x_87); -lean_closure_set(x_88, 2, x_72); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_89 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_88, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_89) == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -lean_dec_ref(x_89); -x_91 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__6___boxed), 11, 3); -lean_closure_set(x_91, 0, x_86); -lean_closure_set(x_91, 1, x_87); -lean_closure_set(x_91, 2, x_74); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_92 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_91, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_92) == 0) -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_93 = lean_ctor_get(x_92, 0); -lean_inc(x_93); -lean_dec_ref(x_92); -x_94 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10)); -x_95 = l_Lean_Name_append(x_5, x_94); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_96 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(x_1, x_80, x_90, x_93, x_95, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_96) == 0) -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -lean_dec_ref(x_96); -x_98 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12)); -x_99 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8; -x_100 = lean_array_push(x_99, x_85); -x_101 = lean_array_push(x_100, x_97); -x_102 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__11___boxed), 10, 2); -lean_closure_set(x_102, 0, x_98); -lean_closure_set(x_102, 1, x_101); -x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_103; -} -else -{ -lean_dec(x_85); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -return x_96; -} -} -else -{ -lean_dec(x_90); -lean_dec(x_85); -lean_dec_ref(x_80); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_92; -} -} -else -{ -lean_dec(x_85); -lean_dec_ref(x_80); -lean_dec(x_74); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_89; -} -} -else -{ -lean_dec_ref(x_80); -lean_dec(x_74); -lean_dec(x_72); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_84; -} -} -else -{ -uint8_t x_104; -lean_dec(x_74); -lean_dec(x_72); -lean_dec(x_55); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -x_104 = !lean_is_exclusive(x_76); -if (x_104 == 0) -{ -return x_76; -} -else -{ -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_76, 0); -lean_inc(x_105); -lean_dec(x_76); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; -} -} -} -else -{ -lean_dec(x_72); -lean_dec(x_55); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_73; -} -} -else -{ -lean_dec(x_55); -lean_dec_ref(x_53); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_71; -} -} -} -else -{ -lean_object* x_107; -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -x_107 = l_Lean_Expr_appArg_x21(x_2); -lean_dec_ref(x_2); -x_2 = x_107; -goto _start; -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_1); -x_109 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__13)); -x_110 = l_Lean_Name_mkStr4(x_13, x_14, x_56, x_109); -x_111 = l_Lean_mkConst(x_110, x_57); -x_112 = l_Lean_mkAppB(x_111, x_2, x_3); -x_113 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_113, 0, x_112); -return x_113; -} -} -block_180: -{ -if (x_117 == 0) -{ -uint8_t x_119; -x_119 = !lean_is_exclusive(x_18); -if (x_119 == 0) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint64_t x_125; uint64_t x_126; uint64_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; -lean_ctor_set_uint8(x_18, 9, x_47); -x_120 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__14)); -lean_inc_ref(x_115); -x_121 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_120); -lean_inc(x_116); -x_122 = l_Lean_mkConst(x_121, x_116); -lean_inc_ref(x_2); -x_123 = l_Lean_Expr_app___override(x_122, x_2); -lean_inc_ref(x_4); -x_124 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9___boxed), 10, 2); -lean_closure_set(x_124, 0, x_4); -lean_closure_set(x_124, 1, x_123); -x_125 = lean_uint64_shift_left(x_51, x_50); -x_126 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_127 = lean_uint64_lor(x_125, x_126); -x_128 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_128, 0, x_18); -lean_ctor_set_uint64(x_128, sizeof(void*)*1, x_127); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc_ref(x_39); -lean_inc(x_38); -x_129 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_38); -lean_ctor_set(x_129, 2, x_39); -lean_ctor_set(x_129, 3, x_40); -lean_ctor_set(x_129, 4, x_41); -lean_ctor_set(x_129, 5, x_42); -lean_ctor_set(x_129, 6, x_43); -lean_ctor_set_uint8(x_129, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 2, x_45); -lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 3, x_46); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_130 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_124, x_6, x_7, x_129, x_9, x_10, x_11); -if (lean_obj_tag(x_130) == 0) -{ -lean_object* x_131; uint8_t x_132; -x_131 = lean_ctor_get(x_130, 0); -lean_inc(x_131); -lean_dec_ref(x_130); -x_132 = lean_unbox(x_131); -lean_dec(x_131); -lean_inc(x_116); -x_55 = x_116; -x_56 = x_115; -x_57 = x_116; -x_58 = x_132; -x_59 = lean_box(0); -goto block_114; -} -else -{ -if (lean_obj_tag(x_130) == 0) -{ -lean_object* x_133; uint8_t x_134; -x_133 = lean_ctor_get(x_130, 0); -lean_inc(x_133); -lean_dec_ref(x_130); -x_134 = lean_unbox(x_133); -lean_dec(x_133); -lean_inc(x_116); -x_55 = x_116; -x_56 = x_115; -x_57 = x_116; -x_58 = x_134; -x_59 = lean_box(0); -goto block_114; -} -else -{ -uint8_t x_135; -lean_dec(x_116); -lean_dec_ref(x_115); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_135 = !lean_is_exclusive(x_130); -if (x_135 == 0) -{ -return x_130; -} -else -{ -lean_object* x_136; lean_object* x_137; -x_136 = lean_ctor_get(x_130, 0); -lean_inc(x_136); -lean_dec(x_130); -x_137 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_137, 0, x_136); -return x_137; -} -} -} -} -else -{ -uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_141; uint8_t x_142; uint8_t x_143; uint8_t x_144; uint8_t x_145; uint8_t x_146; uint8_t x_147; uint8_t x_148; uint8_t x_149; uint8_t x_150; uint8_t x_151; uint8_t x_152; uint8_t x_153; uint8_t x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; uint64_t x_162; uint64_t x_163; uint64_t x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_138 = lean_ctor_get_uint8(x_18, 0); -x_139 = lean_ctor_get_uint8(x_18, 1); -x_140 = lean_ctor_get_uint8(x_18, 2); -x_141 = lean_ctor_get_uint8(x_18, 3); -x_142 = lean_ctor_get_uint8(x_18, 4); -x_143 = lean_ctor_get_uint8(x_18, 5); -x_144 = lean_ctor_get_uint8(x_18, 6); -x_145 = lean_ctor_get_uint8(x_18, 7); -x_146 = lean_ctor_get_uint8(x_18, 8); -x_147 = lean_ctor_get_uint8(x_18, 10); -x_148 = lean_ctor_get_uint8(x_18, 11); -x_149 = lean_ctor_get_uint8(x_18, 12); -x_150 = lean_ctor_get_uint8(x_18, 13); -x_151 = lean_ctor_get_uint8(x_18, 14); -x_152 = lean_ctor_get_uint8(x_18, 15); -x_153 = lean_ctor_get_uint8(x_18, 16); -x_154 = lean_ctor_get_uint8(x_18, 17); -x_155 = lean_ctor_get_uint8(x_18, 18); -lean_dec(x_18); -x_156 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_156, 0, x_138); -lean_ctor_set_uint8(x_156, 1, x_139); -lean_ctor_set_uint8(x_156, 2, x_140); -lean_ctor_set_uint8(x_156, 3, x_141); -lean_ctor_set_uint8(x_156, 4, x_142); -lean_ctor_set_uint8(x_156, 5, x_143); -lean_ctor_set_uint8(x_156, 6, x_144); -lean_ctor_set_uint8(x_156, 7, x_145); -lean_ctor_set_uint8(x_156, 8, x_146); -lean_ctor_set_uint8(x_156, 9, x_47); -lean_ctor_set_uint8(x_156, 10, x_147); -lean_ctor_set_uint8(x_156, 11, x_148); -lean_ctor_set_uint8(x_156, 12, x_149); -lean_ctor_set_uint8(x_156, 13, x_150); -lean_ctor_set_uint8(x_156, 14, x_151); -lean_ctor_set_uint8(x_156, 15, x_152); -lean_ctor_set_uint8(x_156, 16, x_153); -lean_ctor_set_uint8(x_156, 17, x_154); -lean_ctor_set_uint8(x_156, 18, x_155); -x_157 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__14)); -lean_inc_ref(x_115); -x_158 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_157); -lean_inc(x_116); -x_159 = l_Lean_mkConst(x_158, x_116); -lean_inc_ref(x_2); -x_160 = l_Lean_Expr_app___override(x_159, x_2); -lean_inc_ref(x_4); -x_161 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__9___boxed), 10, 2); -lean_closure_set(x_161, 0, x_4); -lean_closure_set(x_161, 1, x_160); -x_162 = lean_uint64_shift_left(x_51, x_50); -x_163 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_164 = lean_uint64_lor(x_162, x_163); -x_165 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_165, 0, x_156); -lean_ctor_set_uint64(x_165, sizeof(void*)*1, x_164); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc_ref(x_39); -lean_inc(x_38); -x_166 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_38); -lean_ctor_set(x_166, 2, x_39); -lean_ctor_set(x_166, 3, x_40); -lean_ctor_set(x_166, 4, x_41); -lean_ctor_set(x_166, 5, x_42); -lean_ctor_set(x_166, 6, x_43); -lean_ctor_set_uint8(x_166, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 2, x_45); -lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 3, x_46); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_167 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_161, x_6, x_7, x_166, x_9, x_10, x_11); -if (lean_obj_tag(x_167) == 0) -{ -lean_object* x_168; uint8_t x_169; -x_168 = lean_ctor_get(x_167, 0); -lean_inc(x_168); -lean_dec_ref(x_167); -x_169 = lean_unbox(x_168); -lean_dec(x_168); -lean_inc(x_116); -x_55 = x_116; -x_56 = x_115; -x_57 = x_116; -x_58 = x_169; -x_59 = lean_box(0); -goto block_114; -} -else -{ -if (lean_obj_tag(x_167) == 0) -{ -lean_object* x_170; uint8_t x_171; -x_170 = lean_ctor_get(x_167, 0); -lean_inc(x_170); -lean_dec_ref(x_167); -x_171 = lean_unbox(x_170); -lean_dec(x_170); -lean_inc(x_116); -x_55 = x_116; -x_56 = x_115; -x_57 = x_116; -x_58 = x_171; -x_59 = lean_box(0); -goto block_114; -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec(x_116); -lean_dec_ref(x_115); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_172 = lean_ctor_get(x_167, 0); -lean_inc(x_172); -if (lean_is_exclusive(x_167)) { - lean_ctor_release(x_167, 0); - x_173 = x_167; -} else { - lean_dec_ref(x_167); - x_173 = lean_box(0); -} -if (lean_is_scalar(x_173)) { - x_174 = lean_alloc_ctor(1, 1, 0); -} else { - x_174 = x_173; -} -lean_ctor_set(x_174, 0, x_172); -return x_174; -} -} -} -} -else -{ -lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec_ref(x_18); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_3); -lean_dec(x_1); -x_175 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__16)); -x_176 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_175); -x_177 = l_Lean_mkConst(x_176, x_116); -x_178 = l_Lean_mkAppB(x_177, x_2, x_4); -x_179 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_179, 0, x_178); -return x_179; -} -} -block_228: -{ -if (x_181 == 0) -{ -uint8_t x_183; uint8_t x_184; uint8_t x_185; uint8_t x_186; uint8_t x_187; uint8_t x_188; uint8_t x_189; uint8_t x_190; uint8_t x_191; uint8_t x_192; uint8_t x_193; uint8_t x_194; uint8_t x_195; uint8_t x_196; uint8_t x_197; uint8_t x_198; uint8_t x_199; uint8_t x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint64_t x_209; uint64_t x_210; uint64_t x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_183 = lean_ctor_get_uint8(x_18, 0); -x_184 = lean_ctor_get_uint8(x_18, 1); -x_185 = lean_ctor_get_uint8(x_18, 2); -x_186 = lean_ctor_get_uint8(x_18, 3); -x_187 = lean_ctor_get_uint8(x_18, 4); -x_188 = lean_ctor_get_uint8(x_18, 5); -x_189 = lean_ctor_get_uint8(x_18, 6); -x_190 = lean_ctor_get_uint8(x_18, 7); -x_191 = lean_ctor_get_uint8(x_18, 8); -x_192 = lean_ctor_get_uint8(x_18, 10); -x_193 = lean_ctor_get_uint8(x_18, 11); -x_194 = lean_ctor_get_uint8(x_18, 12); -x_195 = lean_ctor_get_uint8(x_18, 13); -x_196 = lean_ctor_get_uint8(x_18, 14); -x_197 = lean_ctor_get_uint8(x_18, 15); -x_198 = lean_ctor_get_uint8(x_18, 16); -x_199 = lean_ctor_get_uint8(x_18, 17); -x_200 = lean_ctor_get_uint8(x_18, 18); -x_201 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_201, 0, x_183); -lean_ctor_set_uint8(x_201, 1, x_184); -lean_ctor_set_uint8(x_201, 2, x_185); -lean_ctor_set_uint8(x_201, 3, x_186); -lean_ctor_set_uint8(x_201, 4, x_187); -lean_ctor_set_uint8(x_201, 5, x_188); -lean_ctor_set_uint8(x_201, 6, x_189); -lean_ctor_set_uint8(x_201, 7, x_190); -lean_ctor_set_uint8(x_201, 8, x_191); -lean_ctor_set_uint8(x_201, 9, x_47); -lean_ctor_set_uint8(x_201, 10, x_192); -lean_ctor_set_uint8(x_201, 11, x_193); -lean_ctor_set_uint8(x_201, 12, x_194); -lean_ctor_set_uint8(x_201, 13, x_195); -lean_ctor_set_uint8(x_201, 14, x_196); -lean_ctor_set_uint8(x_201, 15, x_197); -lean_ctor_set_uint8(x_201, 16, x_198); -lean_ctor_set_uint8(x_201, 17, x_199); -lean_ctor_set_uint8(x_201, 18, x_200); -x_202 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__17)); -x_203 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__19)); -x_204 = lean_box(0); -lean_inc(x_1); -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_1); -lean_ctor_set(x_205, 1, x_204); -lean_inc_ref(x_205); -x_206 = l_Lean_mkConst(x_203, x_205); -lean_inc_ref(x_2); -x_207 = l_Lean_Expr_app___override(x_206, x_2); -lean_inc_ref(x_3); -x_208 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__10___boxed), 10, 2); -lean_closure_set(x_208, 0, x_3); -lean_closure_set(x_208, 1, x_207); -x_209 = lean_uint64_shift_left(x_51, x_50); -x_210 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_211 = lean_uint64_lor(x_209, x_210); -x_212 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_212, 0, x_201); -lean_ctor_set_uint64(x_212, sizeof(void*)*1, x_211); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc_ref(x_39); -lean_inc(x_38); -x_213 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_213, 1, x_38); -lean_ctor_set(x_213, 2, x_39); -lean_ctor_set(x_213, 3, x_40); -lean_ctor_set(x_213, 4, x_41); -lean_ctor_set(x_213, 5, x_42); -lean_ctor_set(x_213, 6, x_43); -lean_ctor_set_uint8(x_213, sizeof(void*)*7, x_37); -lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 1, x_44); -lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 2, x_45); -lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 3, x_46); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_214 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_208, x_6, x_7, x_213, x_9, x_10, x_11); -if (lean_obj_tag(x_214) == 0) -{ -lean_object* x_215; uint8_t x_216; -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -lean_dec_ref(x_214); -x_216 = lean_unbox(x_215); -lean_dec(x_215); -x_115 = x_202; -x_116 = x_205; -x_117 = x_216; -x_118 = lean_box(0); -goto block_180; -} -else -{ -if (lean_obj_tag(x_214) == 0) -{ -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_214, 0); -lean_inc(x_217); -lean_dec_ref(x_214); -x_218 = lean_unbox(x_217); -lean_dec(x_217); -x_115 = x_202; -x_116 = x_205; -x_117 = x_218; -x_118 = lean_box(0); -goto block_180; -} -else -{ -uint8_t x_219; -lean_dec_ref(x_205); -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec_ref(x_18); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_219 = !lean_is_exclusive(x_214); -if (x_219 == 0) -{ -return x_214; -} -else -{ -lean_object* x_220; lean_object* x_221; -x_220 = lean_ctor_get(x_214, 0); -lean_inc(x_220); -lean_dec(x_214); -x_221 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_221, 0, x_220); -return x_221; -} -} -} -} -else -{ -lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec_ref(x_18); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_222 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__21)); -x_223 = lean_box(0); -x_224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_224, 0, x_1); -lean_ctor_set(x_224, 1, x_223); -x_225 = l_Lean_mkConst(x_222, x_224); -x_226 = l_Lean_mkAppB(x_225, x_2, x_3); -x_227 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_227, 0, x_226); -return x_227; -} -} -} -else -{ -lean_object* x_243; lean_object* x_244; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -x_243 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23; -x_244 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_244, 0, x_243); -return x_244; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___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) { -_start: -{ -lean_object* x_13; -x_13 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6(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_12; -x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14) { -_start: -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1)); -x_17 = lean_unsigned_to_nat(0u); -x_18 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_18, 0, x_16); -lean_closure_set(x_18, 1, x_17); -lean_closure_set(x_18, 2, x_1); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_21, 0, x_16); -lean_closure_set(x_21, 1, x_17); -lean_closure_set(x_21, 2, x_2); -x_22 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; -x_23 = lean_array_push(x_22, x_8); -x_24 = l_Lean_Expr_betaRev(x_20, x_23, x_3, x_3); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec_ref(x_25); -x_27 = l_Lean_Expr_betaRev(x_26, x_23, x_3, x_3); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -lean_dec_ref(x_28); -x_30 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__11)); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_31) == 0) -{ -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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -lean_dec_ref(x_31); -x_33 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); -x_34 = lean_box(0); -lean_inc(x_5); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_5); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_mkConst(x_33, x_35); -x_37 = l_Lean_Expr_app___override(x_36, x_6); -x_38 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_38, 0, x_32); -lean_ctor_set(x_38, 1, x_29); -lean_ctor_set(x_38, 2, x_24); -x_39 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_38); -x_40 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_40, 0, x_5); -lean_ctor_set(x_40, 1, x_37); -lean_ctor_set(x_40, 2, x_39); -lean_ctor_set(x_40, 3, x_27); -x_41 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_40); -x_42 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___closed__1)); -x_43 = l_Lean_Name_append(x_7, x_42); -x_44 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___boxed), 10, 2); -lean_closure_set(x_44, 0, x_41); -lean_closure_set(x_44, 1, x_43); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_45 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_44, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_45) == 0) -{ -lean_object* x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -lean_dec_ref(x_45); -x_47 = 1; -x_48 = 1; -x_49 = lean_box(x_3); -x_50 = lean_box(x_47); -x_51 = lean_box(x_48); -x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__5___boxed), 13, 5); -lean_closure_set(x_52, 0, x_23); -lean_closure_set(x_52, 1, x_46); -lean_closure_set(x_52, 2, x_49); -lean_closure_set(x_52, 3, x_50); -lean_closure_set(x_52, 4, x_51); -x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_9, x_10, x_11, x_12, x_13, x_14); -return x_53; -} -else -{ -lean_dec_ref(x_23); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -return x_45; -} -} -else -{ -uint8_t x_54; -lean_dec(x_29); -lean_dec_ref(x_27); -lean_dec_ref(x_24); -lean_dec_ref(x_23); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_54 = !lean_is_exclusive(x_31); -if (x_54 == 0) -{ -return x_31; -} -else -{ -lean_object* x_55; lean_object* x_56; -x_55 = lean_ctor_get(x_31, 0); -lean_inc(x_55); -lean_dec(x_31); -x_56 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_56, 0, x_55); -return x_56; -} -} -} -else -{ -uint8_t x_57; -lean_dec_ref(x_27); -lean_dec_ref(x_24); -lean_dec_ref(x_23); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_57 = !lean_is_exclusive(x_28); -if (x_57 == 0) -{ -return x_28; -} -else -{ -lean_object* x_58; lean_object* x_59; -x_58 = lean_ctor_get(x_28, 0); -lean_inc(x_58); -lean_dec(x_28); -x_59 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_59, 0, x_58); -return x_59; -} -} -} -else -{ -lean_dec_ref(x_24); -lean_dec_ref(x_23); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -return x_25; -} -} -else -{ -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -return x_19; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___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, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; lean_object* x_17; -x_16 = lean_unbox(x_3); -x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9(x_1, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_10); -return x_17; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19(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_13; lean_object* x_14; -lean_inc_ref(x_1); -x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__0___boxed), 9, 1); -lean_closure_set(x_13, 0, x_1); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_14 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -if (lean_is_exclusive(x_14)) { - lean_ctor_release(x_14, 0); - x_16 = x_14; -} else { - lean_dec_ref(x_14); - x_16 = lean_box(0); -} -x_17 = l_Lean_Meta_Context_config(x_8); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint64_t x_30; uint64_t x_31; uint64_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_87; uint64_t x_88; uint64_t x_89; uint64_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_19 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); -x_20 = lean_ctor_get(x_8, 1); -x_21 = lean_ctor_get(x_8, 2); -x_22 = lean_ctor_get(x_8, 3); -x_23 = lean_ctor_get(x_8, 4); -x_24 = lean_ctor_get(x_8, 5); -x_25 = lean_ctor_get(x_8, 6); -x_26 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); -x_27 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); -x_28 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); -x_29 = 1; -lean_ctor_set_uint8(x_17, 9, x_29); -x_30 = l_Lean_Meta_Context_configKey(x_8); -x_31 = 2; -x_32 = lean_uint64_shift_right(x_30, x_31); -lean_inc_ref(x_3); -x_33 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__1___boxed), 9, 1); -lean_closure_set(x_33, 0, x_3); -lean_inc_ref(x_4); -x_34 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__2___boxed), 9, 1); -lean_closure_set(x_34, 0, x_4); -x_35 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9)); -lean_inc_ref(x_4); -x_87 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4___boxed), 10, 2); -lean_closure_set(x_87, 0, x_3); -lean_closure_set(x_87, 1, x_4); -x_88 = lean_uint64_shift_left(x_32, x_31); -x_89 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_90 = lean_uint64_lor(x_88, x_89); -x_91 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_91, 0, x_17); -lean_ctor_set_uint64(x_91, sizeof(void*)*1, x_90); -lean_inc(x_25); -lean_inc(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_21); -lean_inc(x_20); -x_92 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_20); -lean_ctor_set(x_92, 2, x_21); -lean_ctor_set(x_92, 3, x_22); -lean_ctor_set(x_92, 4, x_23); -lean_ctor_set(x_92, 5, x_24); -lean_ctor_set(x_92, 6, x_25); -lean_ctor_set_uint8(x_92, sizeof(void*)*7, x_19); -lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 1, x_26); -lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 2, x_27); -lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 3, x_28); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_93 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_87, x_6, x_7, x_92, x_9, x_10, x_11); -if (lean_obj_tag(x_93) == 0) -{ -lean_object* x_94; uint8_t x_95; -x_94 = lean_ctor_get(x_93, 0); -lean_inc(x_94); -lean_dec_ref(x_93); -x_95 = lean_unbox(x_94); -lean_dec(x_94); -x_36 = x_95; -x_37 = lean_box(0); -goto block_86; -} -else -{ -if (lean_obj_tag(x_93) == 0) -{ -lean_object* x_96; uint8_t x_97; -x_96 = lean_ctor_get(x_93, 0); -lean_inc(x_96); -lean_dec_ref(x_93); -x_97 = lean_unbox(x_96); -lean_dec(x_96); -x_36 = x_97; -x_37 = lean_box(0); -goto block_86; -} -else -{ -uint8_t x_98; -lean_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_98 = !lean_is_exclusive(x_93); -if (x_98 == 0) -{ -return x_93; -} -else -{ -lean_object* x_99; lean_object* x_100; -x_99 = lean_ctor_get(x_93, 0); -lean_inc(x_99); -lean_dec(x_93); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -return x_100; -} -} -} -block_86: -{ -if (x_36 == 0) -{ -lean_object* x_38; -lean_dec(x_16); -lean_dec_ref(x_4); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_38) == 0) -{ -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -lean_dec_ref(x_38); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_40 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_40) == 0) -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_40, 0); -lean_inc(x_41); -lean_dec_ref(x_40); -x_42 = l_Lean_Expr_fvarId_x3f(x_39); -if (lean_obj_tag(x_42) == 1) -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec_ref(x_42); -x_43 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1)); -x_44 = lean_box(0); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_15); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_mkConst(x_43, x_45); -x_47 = l_Lean_mkApp4(x_46, x_1, x_2, x_39, x_41); -x_48 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3)); -x_49 = l_Lean_Name_append(x_5, x_48); -x_50 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___boxed), 10, 2); -lean_closure_set(x_50, 0, x_47); -lean_closure_set(x_50, 1, x_49); -x_51 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_50, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; -lean_dec(x_42); -x_52 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__6)); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec_ref(x_53); -x_55 = lean_box(x_36); -lean_inc(x_5); -lean_inc_ref(x_2); -lean_inc(x_15); -lean_inc(x_41); -lean_inc(x_39); -x_56 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___boxed), 15, 7); -lean_closure_set(x_56, 0, x_39); -lean_closure_set(x_56, 1, x_41); -lean_closure_set(x_56, 2, x_55); -lean_closure_set(x_56, 3, x_35); -lean_closure_set(x_56, 4, x_15); -lean_closure_set(x_56, 5, x_2); -lean_closure_set(x_56, 6, x_5); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_57 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_54, x_1, x_56, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_58 = lean_ctor_get(x_57, 0); -lean_inc(x_58); -lean_dec_ref(x_57); -x_59 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1)); -x_60 = lean_unsigned_to_nat(1u); -x_61 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_61, 0, x_59); -lean_closure_set(x_61, 1, x_60); -lean_closure_set(x_61, 2, x_39); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_62) == 0) -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_62, 0); -lean_inc(x_63); -lean_dec_ref(x_62); -x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_64, 0, x_59); -lean_closure_set(x_64, 1, x_60); -lean_closure_set(x_64, 2, x_41); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_65 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_65) == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -lean_dec_ref(x_65); -x_67 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10)); -x_68 = l_Lean_Name_append(x_5, x_67); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_69 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(x_15, x_2, x_63, x_66, x_68, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_69) == 0) -{ -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; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -lean_dec_ref(x_69); -x_71 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12)); -x_72 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8; -x_73 = lean_array_push(x_72, x_58); -x_74 = lean_array_push(x_73, x_70); -x_75 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); -lean_closure_set(x_75, 0, x_71); -lean_closure_set(x_75, 1, x_74); -x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_76; -} -else -{ -lean_dec(x_58); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -return x_69; -} -} -else -{ -lean_dec(x_63); -lean_dec(x_58); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_65; -} -} -else -{ -lean_dec(x_58); -lean_dec(x_41); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_62; -} -} -else -{ -lean_dec(x_41); -lean_dec(x_39); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_57; -} -} -else -{ -uint8_t x_77; -lean_dec(x_41); -lean_dec(x_39); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_77 = !lean_is_exclusive(x_53); -if (x_77 == 0) -{ -return x_53; -} -else -{ -lean_object* x_78; lean_object* x_79; -x_78 = lean_ctor_get(x_53, 0); -lean_inc(x_78); -lean_dec(x_53); -x_79 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_79, 0, x_78); -return x_79; -} -} -} -} -else -{ -lean_dec(x_39); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_40; -} -} -else -{ -lean_dec_ref(x_34); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_38; -} -} -else -{ -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_dec_ref(x_34); -lean_dec_ref(x_33); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_80 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7)); -x_81 = lean_box(0); -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_15); -lean_ctor_set(x_82, 1, x_81); -x_83 = l_Lean_mkConst(x_80, x_82); -x_84 = l_Lean_mkApp3(x_83, x_1, x_2, x_4); -if (lean_is_scalar(x_16)) { - x_85 = lean_alloc_ctor(0, 1, 0); -} else { - x_85 = x_16; -} -lean_ctor_set(x_85, 0, x_84); -return x_85; -} -} -} -else -{ -uint8_t x_101; uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_128; uint8_t x_129; lean_object* x_130; uint64_t x_131; uint64_t x_132; uint64_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; lean_object* x_188; uint64_t x_189; uint64_t x_190; uint64_t x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; -x_101 = lean_ctor_get_uint8(x_17, 0); -x_102 = lean_ctor_get_uint8(x_17, 1); -x_103 = lean_ctor_get_uint8(x_17, 2); -x_104 = lean_ctor_get_uint8(x_17, 3); -x_105 = lean_ctor_get_uint8(x_17, 4); -x_106 = lean_ctor_get_uint8(x_17, 5); -x_107 = lean_ctor_get_uint8(x_17, 6); -x_108 = lean_ctor_get_uint8(x_17, 7); -x_109 = lean_ctor_get_uint8(x_17, 8); -x_110 = lean_ctor_get_uint8(x_17, 10); -x_111 = lean_ctor_get_uint8(x_17, 11); -x_112 = lean_ctor_get_uint8(x_17, 12); -x_113 = lean_ctor_get_uint8(x_17, 13); -x_114 = lean_ctor_get_uint8(x_17, 14); -x_115 = lean_ctor_get_uint8(x_17, 15); -x_116 = lean_ctor_get_uint8(x_17, 16); -x_117 = lean_ctor_get_uint8(x_17, 17); -x_118 = lean_ctor_get_uint8(x_17, 18); -lean_dec(x_17); -x_119 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); -x_120 = lean_ctor_get(x_8, 1); -x_121 = lean_ctor_get(x_8, 2); -x_122 = lean_ctor_get(x_8, 3); -x_123 = lean_ctor_get(x_8, 4); -x_124 = lean_ctor_get(x_8, 5); -x_125 = lean_ctor_get(x_8, 6); -x_126 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); -x_127 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); -x_128 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); -x_129 = 1; -x_130 = lean_alloc_ctor(0, 0, 19); -lean_ctor_set_uint8(x_130, 0, x_101); -lean_ctor_set_uint8(x_130, 1, x_102); -lean_ctor_set_uint8(x_130, 2, x_103); -lean_ctor_set_uint8(x_130, 3, x_104); -lean_ctor_set_uint8(x_130, 4, x_105); -lean_ctor_set_uint8(x_130, 5, x_106); -lean_ctor_set_uint8(x_130, 6, x_107); -lean_ctor_set_uint8(x_130, 7, x_108); -lean_ctor_set_uint8(x_130, 8, x_109); -lean_ctor_set_uint8(x_130, 9, x_129); -lean_ctor_set_uint8(x_130, 10, x_110); -lean_ctor_set_uint8(x_130, 11, x_111); -lean_ctor_set_uint8(x_130, 12, x_112); -lean_ctor_set_uint8(x_130, 13, x_113); -lean_ctor_set_uint8(x_130, 14, x_114); -lean_ctor_set_uint8(x_130, 15, x_115); -lean_ctor_set_uint8(x_130, 16, x_116); -lean_ctor_set_uint8(x_130, 17, x_117); -lean_ctor_set_uint8(x_130, 18, x_118); -x_131 = l_Lean_Meta_Context_configKey(x_8); -x_132 = 2; -x_133 = lean_uint64_shift_right(x_131, x_132); -lean_inc_ref(x_3); -x_134 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__1___boxed), 9, 1); -lean_closure_set(x_134, 0, x_3); -lean_inc_ref(x_4); -x_135 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__2___boxed), 9, 1); -lean_closure_set(x_135, 0, x_4); -x_136 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__9)); -lean_inc_ref(x_4); -x_188 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__4___boxed), 10, 2); -lean_closure_set(x_188, 0, x_3); -lean_closure_set(x_188, 1, x_4); -x_189 = lean_uint64_shift_left(x_133, x_132); -x_190 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; -x_191 = lean_uint64_lor(x_189, x_190); -x_192 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_192, 0, x_130); -lean_ctor_set_uint64(x_192, sizeof(void*)*1, x_191); -lean_inc(x_125); -lean_inc(x_124); -lean_inc(x_123); -lean_inc_ref(x_122); -lean_inc_ref(x_121); -lean_inc(x_120); -x_193 = lean_alloc_ctor(0, 7, 4); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_120); -lean_ctor_set(x_193, 2, x_121); -lean_ctor_set(x_193, 3, x_122); -lean_ctor_set(x_193, 4, x_123); -lean_ctor_set(x_193, 5, x_124); -lean_ctor_set(x_193, 6, x_125); -lean_ctor_set_uint8(x_193, sizeof(void*)*7, x_119); -lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 1, x_126); -lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 2, x_127); -lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 3, x_128); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_6); -x_194 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_188, x_6, x_7, x_193, x_9, x_10, x_11); -if (lean_obj_tag(x_194) == 0) -{ -lean_object* x_195; uint8_t x_196; -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -lean_dec_ref(x_194); -x_196 = lean_unbox(x_195); -lean_dec(x_195); -x_137 = x_196; -x_138 = lean_box(0); -goto block_187; -} -else -{ -if (lean_obj_tag(x_194) == 0) -{ -lean_object* x_197; uint8_t x_198; -x_197 = lean_ctor_get(x_194, 0); -lean_inc(x_197); -lean_dec_ref(x_194); -x_198 = lean_unbox(x_197); -lean_dec(x_197); -x_137 = x_198; -x_138 = lean_box(0); -goto block_187; -} -else -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; -lean_dec_ref(x_135); -lean_dec_ref(x_134); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_199 = lean_ctor_get(x_194, 0); -lean_inc(x_199); -if (lean_is_exclusive(x_194)) { - lean_ctor_release(x_194, 0); - x_200 = x_194; -} else { - lean_dec_ref(x_194); - x_200 = lean_box(0); -} -if (lean_is_scalar(x_200)) { - x_201 = lean_alloc_ctor(1, 1, 0); -} else { - x_201 = x_200; -} -lean_ctor_set(x_201, 0, x_199); -return x_201; -} -} -block_187: -{ -if (x_137 == 0) -{ -lean_object* x_139; -lean_dec(x_16); -lean_dec_ref(x_4); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_139 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_134, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_139) == 0) -{ -lean_object* x_140; lean_object* x_141; -x_140 = lean_ctor_get(x_139, 0); -lean_inc(x_140); -lean_dec_ref(x_139); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_141 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_135, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_141) == 0) -{ -lean_object* x_142; lean_object* x_143; -x_142 = lean_ctor_get(x_141, 0); -lean_inc(x_142); -lean_dec_ref(x_141); -x_143 = l_Lean_Expr_fvarId_x3f(x_140); -if (lean_obj_tag(x_143) == 1) -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -lean_dec_ref(x_143); -x_144 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__1)); -x_145 = lean_box(0); -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_15); -lean_ctor_set(x_146, 1, x_145); -x_147 = l_Lean_mkConst(x_144, x_146); -x_148 = l_Lean_mkApp4(x_147, x_1, x_2, x_140, x_142); -x_149 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3)); -x_150 = l_Lean_Name_append(x_5, x_149); -x_151 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg___lam__0___boxed), 10, 2); -lean_closure_set(x_151, 0, x_148); -lean_closure_set(x_151, 1, x_150); -x_152 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_151, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_152; -} -else -{ -lean_object* x_153; lean_object* x_154; -lean_dec(x_143); -x_153 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__6)); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_154 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_153, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_154) == 0) -{ -lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -lean_dec_ref(x_154); -x_156 = lean_box(x_137); -lean_inc(x_5); -lean_inc_ref(x_2); -lean_inc(x_15); -lean_inc(x_142); -lean_inc(x_140); -x_157 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__9___boxed), 15, 7); -lean_closure_set(x_157, 0, x_140); -lean_closure_set(x_157, 1, x_142); -lean_closure_set(x_157, 2, x_156); -lean_closure_set(x_157, 3, x_136); -lean_closure_set(x_157, 4, x_15); -lean_closure_set(x_157, 5, x_2); -lean_closure_set(x_157, 6, x_5); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_158 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_155, x_1, x_157, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_158) == 0) -{ -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_159 = lean_ctor_get(x_158, 0); -lean_inc(x_159); -lean_dec_ref(x_158); -x_160 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__1)); -x_161 = lean_unsigned_to_nat(1u); -x_162 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_162, 0, x_160); -lean_closure_set(x_162, 1, x_161); -lean_closure_set(x_162, 2, x_140); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_163 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_162, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_163) == 0) -{ -lean_object* x_164; lean_object* x_165; lean_object* x_166; -x_164 = lean_ctor_get(x_163, 0); -lean_inc(x_164); -lean_dec_ref(x_163); -x_165 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___lam__6___boxed), 11, 3); -lean_closure_set(x_165, 0, x_160); -lean_closure_set(x_165, 1, x_161); -lean_closure_set(x_165, 2, x_142); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_166 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_165, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_166) == 0) -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; -x_167 = lean_ctor_get(x_166, 0); -lean_inc(x_167); -lean_dec_ref(x_166); -x_168 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__10)); -x_169 = l_Lean_Name_append(x_5, x_168); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_170 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26(x_15, x_2, x_164, x_167, x_169, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_170) == 0) -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_171 = lean_ctor_get(x_170, 0); -lean_inc(x_171); -lean_dec_ref(x_170); -x_172 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__12)); -x_173 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8; -x_174 = lean_array_push(x_173, x_159); -x_175 = lean_array_push(x_174, x_171); -x_176 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); -lean_closure_set(x_176, 0, x_172); -lean_closure_set(x_176, 1, x_175); -x_177 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_176, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_177; -} -else -{ -lean_dec(x_159); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -return x_170; -} -} -else -{ -lean_dec(x_164); -lean_dec(x_159); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_166; -} -} -else -{ -lean_dec(x_159); -lean_dec(x_142); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_163; -} -} -else -{ -lean_dec(x_142); -lean_dec(x_140); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -return x_158; -} -} -else -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; -lean_dec(x_142); -lean_dec(x_140); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_178 = lean_ctor_get(x_154, 0); -lean_inc(x_178); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - x_179 = x_154; -} else { - lean_dec_ref(x_154); - x_179 = lean_box(0); -} -if (lean_is_scalar(x_179)) { - x_180 = lean_alloc_ctor(1, 1, 0); -} else { - x_180 = x_179; -} -lean_ctor_set(x_180, 0, x_178); -return x_180; -} -} -} -else -{ -lean_dec(x_140); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_141; -} -} -else -{ -lean_dec_ref(x_135); -lean_dec(x_15); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_139; -} -} -else -{ -lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -lean_dec_ref(x_135); -lean_dec_ref(x_134); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -x_181 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__7)); -x_182 = lean_box(0); -x_183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_183, 0, x_15); -lean_ctor_set(x_183, 1, x_182); -x_184 = l_Lean_mkConst(x_181, x_183); -x_185 = l_Lean_mkApp3(x_184, x_1, x_2, x_4); -if (lean_is_scalar(x_16)) { - x_186 = lean_alloc_ctor(0, 1, 0); -} else { - x_186 = x_16; -} -lean_ctor_set(x_186, 0, x_185); -return x_186; -} -} -} -} -else -{ -uint8_t x_202; -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_202 = !lean_is_exclusive(x_14); -if (x_202 == 0) -{ -return x_14; -} -else -{ -lean_object* x_203; lean_object* x_204; -x_203 = lean_ctor_get(x_14, 0); -lean_inc(x_203); -lean_dec(x_14); -x_204 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_204, 0, x_203); -return x_204; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___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) { -_start: -{ -lean_object* x_13; -x_13 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__1(lean_object* x_1, uint8_t 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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_MVarId_setKind___redArg(x_1, x_2, x_7); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__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) { -_start: -{ -uint8_t x_11; lean_object* x_12; -x_11 = lean_unbox(x_2); -x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__1(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; -x_18 = lean_usize_dec_lt(x_3, x_2); -if (x_18 == 0) -{ -lean_object* x_19; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_4); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_20 = lean_array_uget(x_1, x_3); -x_21 = l_Lean_Expr_mvarId_x21(x_20); -lean_dec(x_20); -lean_inc(x_21); -x_22 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0___boxed), 9, 1); -lean_closure_set(x_22, 0, x_21); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_23 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_22, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -lean_dec_ref(x_23); -x_25 = lean_box(0); -x_26 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___closed__1)); -x_27 = l_Lean_Expr_isAppOf(x_24, x_26); -lean_dec(x_24); -if (x_27 == 0) -{ -lean_dec(x_21); -x_12 = x_25; -x_13 = lean_box(0); -goto block_17; -} -else -{ -uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_28 = 2; -x_29 = lean_box(x_28); -x_30 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__1___boxed), 10, 2); -lean_closure_set(x_30, 0, x_21); -lean_closure_set(x_30, 1, x_29); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_31) == 0) -{ -lean_dec_ref(x_31); -x_12 = x_25; -x_13 = lean_box(0); -goto block_17; -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -return x_31; -} -} -} -else -{ -uint8_t x_32; -lean_dec(x_21); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_5); -x_32 = !lean_is_exclusive(x_23); -if (x_32 == 0) -{ -return x_23; -} -else -{ -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_23, 0); -lean_inc(x_33); -lean_dec(x_23); -x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_33); -return x_34; -} -} -} -block_17: -{ -size_t x_14; size_t x_15; -x_14 = 1; -x_15 = lean_usize_add(x_3, x_14); -x_3 = x_15; -x_4 = x_12; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___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: -{ -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_1); -return x_14; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t 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; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -36681,17 +31607,270 @@ x_20 = l_Lean_mkApp6(x_16, x_9, x_10, x_17, x_18, x_11, x_19); return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_6); -x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6(x_1, x_2, x_3, x_4, x_5, x_12, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_5); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_trySynthInstance(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3___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_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_MVarId_getKind(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_2, x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_fget_borrowed(x_1, x_2); +x_7 = l_Lean_instBEqMVarId_beq(x_3, x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_add(x_2, x_8); +lean_dec(x_2); +x_2 = x_9; +goto _start; +} +else +{ +lean_dec(x_2); +return x_7; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; size_t x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_4); +lean_dec_ref(x_1); +x_5 = lean_box(2); +x_6 = 5; +x_7 = l_Lean_PersistentHashMap_insertAux___at___00Lean_PersistentHashMap_insert___at___00Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12_spec__16_spec__18___redArg___closed__1; +x_8 = lean_usize_land(x_2, x_7); +x_9 = lean_usize_to_nat(x_8); +x_10 = lean_array_get(x_5, x_4, x_9); +lean_dec(x_9); +lean_dec_ref(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +x_12 = l_Lean_instBEqMVarId_beq(x_3, x_11); +lean_dec(x_11); +return x_12; +} +case 1: +{ +lean_object* x_13; size_t x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec_ref(x_10); +x_14 = lean_usize_shift_right(x_2, x_6); +x_1 = x_13; +x_2 = x_14; +goto _start; +} +default: +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +} +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_17); +lean_dec_ref(x_1); +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg(x_17, x_18, x_3); +lean_dec_ref(x_17); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; size_t x_4; uint8_t x_5; +x_3 = l_Lean_instHashableMVarId_hash(x_2); +x_4 = lean_uint64_to_usize(x_3); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg(x_1, x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_1, x_2); +lean_dec(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; +x_4 = lean_st_ref_get(x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_5); +lean_dec(x_4); +x_6 = lean_ctor_get(x_5, 7); +lean_inc_ref(x_6); +lean_dec_ref(x_5); +x_7 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_6, x_1); +x_8 = lean_box(x_7); +x_9 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_9, 0, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg(x_1, x_6); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_5; uint8_t x_6; @@ -36831,28 +32010,28 @@ return x_48; } } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_1, x_2, x_3); +x_5 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_1, x_2, x_3); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__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) { _start: { lean_object* x_11; -x_11 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_1, x_2, x_7); +x_11 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_1, x_2, x_7); return x_11; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__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) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -36863,78 +32042,7 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; -x_4 = lean_st_ref_get(x_2); -x_5 = lean_ctor_get(x_4, 0); -lean_inc_ref(x_5); -lean_dec(x_4); -x_6 = lean_ctor_get(x_5, 7); -lean_inc_ref(x_6); -lean_dec_ref(x_5); -x_7 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_6, x_1); -x_8 = lean_box(x_7); -x_9 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_9, 0, x_8); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg(x_1, x_6); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_trySynthInstance(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3___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_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(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_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; lean_object* x_9; uint8_t x_10; @@ -37189,11 +32297,11 @@ return x_91; } } } -LEAN_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17___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_EXPORT lean_object* l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19___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) { _start: { lean_object* x_8; -x_8 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -37201,7 +32309,7 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_4; uint8_t x_5; @@ -37231,57 +32339,57 @@ return x_13; } } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(x_1, x_2); +x_4 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(x_1, x_2); lean_dec_ref(x_2); return x_4; } } -static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1() { +static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__0)); +x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3() { +static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__2)); +x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__2)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5() { +static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__4)); +x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__4)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7() { +static lean_object* _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__6)); +x_1 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__6)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4(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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4(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) { _start: { lean_object* x_14; lean_inc(x_1); -x_14 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(x_1, x_11); +x_14 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(x_1, x_11); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -37305,13 +32413,13 @@ else { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_free_object(x_14); -x_18 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1; +x_18 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1; x_19 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_19, 0, x_3); x_20 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3; +x_21 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3; x_22 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); @@ -37319,7 +32427,7 @@ x_23 = l_Lean_MessageData_ofExpr(x_4); x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5; +x_25 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5; x_26 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -37327,11 +32435,11 @@ x_27 = l_Lean_MessageData_ofExpr(x_5); x_28 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); -x_29 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7; +x_29 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7; x_30 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_30, x_9, x_10, x_11, x_12); +x_31 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_30, x_9, x_10, x_11, x_12); return x_31; } } @@ -37357,13 +32465,13 @@ return x_34; else { lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_35 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1; +x_35 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1; x_36 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_36, 0, x_3); x_37 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_37, 0, x_35); lean_ctor_set(x_37, 1, x_36); -x_38 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3; +x_38 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3; x_39 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); @@ -37371,7 +32479,7 @@ x_40 = l_Lean_MessageData_ofExpr(x_4); x_41 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_41, 0, x_39); lean_ctor_set(x_41, 1, x_40); -x_42 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5; +x_42 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5; x_43 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_42); @@ -37379,11 +32487,11 @@ x_44 = l_Lean_MessageData_ofExpr(x_5); x_45 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_45, 0, x_43); lean_ctor_set(x_45, 1, x_44); -x_46 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7; +x_46 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7; x_47 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_47, x_9, x_10, x_11, x_12); +x_48 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_47, x_9, x_10, x_11, x_12); return x_48; } } @@ -37413,11 +32521,11 @@ return x_51; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___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) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___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___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4(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_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_12); lean_dec_ref(x_11); lean_dec(x_10); @@ -37428,30 +32536,7 @@ lean_dec(x_6); return x_14; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0(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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_MVarId_getKind(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0___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) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t 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_15; lean_object* x_16; uint8_t x_21; @@ -37477,7 +32562,7 @@ x_23 = lean_array_uget(x_4, x_6); x_24 = l_Lean_Expr_mvarId_x21(x_23); lean_dec(x_23); lean_inc(x_24); -x_25 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__0___boxed), 9, 1); +x_25 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__0___boxed), 9, 1); lean_closure_set(x_25, 0, x_24); lean_inc(x_13); lean_inc_ref(x_12); @@ -37492,7 +32577,7 @@ x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); lean_dec_ref(x_26); lean_inc(x_24); -x_28 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__1___boxed), 9, 1); +x_28 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__1___boxed), 9, 1); lean_closure_set(x_28, 0, x_24); lean_inc(x_13); lean_inc_ref(x_12); @@ -37528,7 +32613,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; lean_inc(x_24); -x_34 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13___lam__0___boxed), 9, 1); +x_34 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0___boxed), 9, 1); lean_closure_set(x_34, 0, x_24); lean_inc(x_13); lean_inc_ref(x_12); @@ -37543,7 +32628,7 @@ x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); lean_dec_ref(x_35); x_37 = lean_box(0); -x_38 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__3___boxed), 10, 2); +x_38 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__3___boxed), 10, 2); lean_closure_set(x_38, 0, x_36); lean_closure_set(x_38, 1, x_37); lean_inc(x_13); @@ -37572,7 +32657,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 0); lean_inc(x_41); lean_dec_ref(x_40); -x_42 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__2___boxed), 10, 2); +x_42 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__2___boxed), 10, 2); lean_closure_set(x_42, 0, x_24); lean_closure_set(x_42, 1, x_41); lean_inc(x_13); @@ -37603,10 +32688,10 @@ return x_43; default: { lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1)); +x_44 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1)); lean_inc_ref(x_3); lean_inc_ref(x_2); -x_45 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___boxed), 13, 5); +x_45 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___boxed), 13, 5); lean_closure_set(x_45, 0, x_44); lean_closure_set(x_45, 1, x_31); lean_closure_set(x_45, 2, x_24); @@ -37781,7 +32866,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___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, lean_object* x_14) { _start: { uint8_t x_15; size_t x_16; size_t x_17; lean_object* x_18; @@ -37790,13 +32875,227 @@ x_16 = lean_unbox_usize(x_5); lean_dec(x_5); x_17 = lean_unbox_usize(x_6); lean_dec(x_6); -x_18 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18(x_15, x_2, x_3, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_18 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20(x_15, x_2, x_3, x_4, x_16, x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_9); lean_dec_ref(x_4); return x_18; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7(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) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Elab_Term_throwTypeMismatchError___redArg(x_1, x_2, x_3, x_4, x_5, x_9, x_10, x_11, x_12); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__1(lean_object* x_1, uint8_t 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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_MVarId_setKind___redArg(x_1, x_2, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__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) { +_start: +{ +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_2); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__1(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_lt(x_3, x_2); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_4); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = lean_array_uget(x_1, x_3); +x_21 = l_Lean_Expr_mvarId_x21(x_20); +lean_dec(x_20); +lean_inc(x_21); +x_22 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__0___boxed), 9, 1); +lean_closure_set(x_22, 0, x_21); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_23 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_22, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +lean_dec_ref(x_23); +x_25 = lean_box(0); +x_26 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___closed__1)); +x_27 = l_Lean_Expr_isAppOf(x_24, x_26); +lean_dec(x_24); +if (x_27 == 0) +{ +lean_dec(x_21); +x_12 = x_25; +x_13 = lean_box(0); +goto block_17; +} +else +{ +uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_28 = 2; +x_29 = lean_box(x_28); +x_30 = lean_alloc_closure((void*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___lam__1___boxed), 10, 2); +lean_closure_set(x_30, 0, x_21); +lean_closure_set(x_30, 1, x_29); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_31) == 0) +{ +lean_dec_ref(x_31); +x_12 = x_25; +x_13 = lean_box(0); +goto block_17; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +return x_31; +} +} +} +else +{ +uint8_t x_32; +lean_dec(x_21); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_32 = !lean_is_exclusive(x_23); +if (x_32 == 0) +{ +return x_23; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_23, 0); +lean_inc(x_33); +lean_dec(x_23); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_3, x_14); +x_3 = x_15; +x_4 = x_12; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3(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) { _start: { lean_object* x_11; @@ -37804,11 +33103,11 @@ x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -37818,21 +33117,21 @@ lean_dec(x_3); return x_11; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1() { +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__0)); +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__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) { _start: { lean_object* x_11; uint8_t x_12; lean_inc(x_1); -x_11 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(x_1, x_8); +x_11 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(x_1, x_8); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -37851,60 +33150,54 @@ return x_11; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_free_object(x_11); -x_16 = lean_ctor_get(x_2, 3); -lean_inc_ref(x_16); -lean_dec_ref(x_2); -x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1; -x_18 = l_Lean_MessageData_ofExpr(x_16); -x_19 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_19, x_6, x_7, x_8, x_9); -return x_20; +x_16 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1; +x_17 = l_Lean_MessageData_ofExpr(x_2); +x_18 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_18, x_6, x_7, x_8, x_9); +return x_19; } } else { -lean_object* x_21; uint8_t x_22; -x_21 = lean_ctor_get(x_11, 0); -lean_inc(x_21); +lean_object* x_20; uint8_t x_21; +x_20 = lean_ctor_get(x_11, 0); +lean_inc(x_20); lean_dec(x_11); -x_22 = lean_unbox(x_21); -lean_dec(x_21); -if (x_22 == 0) +x_21 = lean_unbox(x_20); +lean_dec(x_20); +if (x_21 == 0) { -lean_object* x_23; lean_object* x_24; +lean_object* x_22; lean_object* x_23; lean_dec_ref(x_2); lean_dec(x_1); -x_23 = lean_box(0); -x_24 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_24, 0, x_23); -return x_24; +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_25 = lean_ctor_get(x_2, 3); -lean_inc_ref(x_25); -lean_dec_ref(x_2); -x_26 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1; -x_27 = l_Lean_MessageData_ofExpr(x_25); -x_28 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_28, x_6, x_7, x_8, x_9); -return x_29; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_24 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1; +x_25 = l_Lean_MessageData_ofExpr(x_2); +x_26 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +x_27 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_26, x_6, x_7, x_8, x_9); +return x_27; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__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___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -37915,7 +33208,7 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__1(uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__1(uint8_t 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) { _start: { if (x_1 == 0) @@ -38004,33 +33297,33 @@ return x_12; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__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) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); return x_12; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1() { +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__0)); +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0(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) { _start: { lean_object* x_11; uint8_t x_12; lean_inc(x_1); -x_11 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(x_1, x_8); +x_11 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(x_1, x_8); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -38049,54 +33342,60 @@ return x_11; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_free_object(x_11); -x_16 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1; -x_17 = l_Lean_MessageData_ofExpr(x_2); -x_18 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_18, x_6, x_7, x_8, x_9); -return x_19; +x_16 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_16); +lean_dec_ref(x_2); +x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1; +x_18 = l_Lean_MessageData_ofExpr(x_16); +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_19, x_6, x_7, x_8, x_9); +return x_20; } } else { -lean_object* x_20; uint8_t x_21; -x_20 = lean_ctor_get(x_11, 0); -lean_inc(x_20); +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_11, 0); +lean_inc(x_21); lean_dec(x_11); -x_21 = lean_unbox(x_20); -lean_dec(x_20); -if (x_21 == 0) +x_22 = lean_unbox(x_21); +lean_dec(x_21); +if (x_22 == 0) { -lean_object* x_22; lean_object* x_23; +lean_object* x_23; lean_object* x_24; lean_dec_ref(x_2); lean_dec(x_1); -x_22 = lean_box(0); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -return x_23; +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +return x_24; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_24 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1; -x_25 = l_Lean_MessageData_ofExpr(x_2); -x_26 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__17(x_1, x_26, x_6, x_7, x_8, x_9); -return x_27; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_25 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_25); +lean_dec_ref(x_2); +x_26 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1; +x_27 = l_Lean_MessageData_ofExpr(x_25); +x_28 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__19(x_1, x_28, x_6, x_7, x_8, x_9); +return x_29; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__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) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -38107,13 +33406,13 @@ lean_dec(x_3); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20(lean_object* x_1, lean_object* x_2, uint8_t 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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22(lean_object* x_1, lean_object* x_2, uint8_t 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) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_11 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___closed__1)); +x_11 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___closed__1)); lean_inc_ref(x_1); -x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___boxed), 10, 2); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___boxed), 10, 2); lean_closure_set(x_12, 0, x_11); lean_closure_set(x_12, 1, x_1); lean_inc(x_9); @@ -38128,7 +33427,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_dec_ref(x_13); x_14 = lean_box(x_3); lean_inc_ref(x_1); -x_15 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__1___boxed), 10, 2); +x_15 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__1___boxed), 10, 2); lean_closure_set(x_15, 0, x_14); lean_closure_set(x_15, 1, x_1); lean_inc(x_9); @@ -38152,7 +33451,7 @@ x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); lean_dec_ref(x_17); lean_inc(x_18); -x_19 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___boxed), 10, 2); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___boxed), 10, 2); lean_closure_set(x_19, 0, x_11); lean_closure_set(x_19, 1, x_18); x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9); @@ -38203,7 +33502,7 @@ else lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_dec(x_17); x_27 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_1); -x_28 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__3___boxed), 10, 2); +x_28 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__3___boxed), 10, 2); lean_closure_set(x_28, 0, x_27); lean_closure_set(x_28, 1, x_2); x_29 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_28, x_4, x_5, x_6, x_7, x_8, x_9); @@ -38265,107 +33564,2993 @@ return x_35; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___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: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_3); -x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_5); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4(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) { _start: { -lean_object* x_14; -x_14 = l_Lean_Elab_Term_throwTypeMismatchError___redArg(x_1, x_2, x_3, x_4, x_5, x_9, x_10, x_11, x_12); -return x_14; +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7___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) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4___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_14; -x_14 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_object* x_11; +x_11 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = lean_st_ref_get(x_1); +x_4 = lean_ctor_get(x_3, 2); +lean_inc_ref(x_4); +lean_dec(x_3); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_6 = lean_ctor_get(x_4, 0); +x_7 = lean_ctor_get(x_4, 1); +x_8 = lean_st_ref_take(x_1); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_10 = lean_ctor_get(x_8, 2); +lean_dec(x_10); +lean_inc(x_7); +lean_inc(x_6); +x_11 = l_Lean_Name_num___override(x_6, x_7); +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_add(x_7, x_12); +lean_dec(x_7); +lean_ctor_set(x_4, 1, x_13); +lean_ctor_set(x_8, 2, x_4); +x_14 = lean_st_ref_set(x_1, x_8); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_11); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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_16 = lean_ctor_get(x_8, 0); +x_17 = lean_ctor_get(x_8, 1); +x_18 = lean_ctor_get(x_8, 3); +x_19 = lean_ctor_get(x_8, 4); +x_20 = lean_ctor_get(x_8, 5); +x_21 = lean_ctor_get(x_8, 6); +x_22 = lean_ctor_get(x_8, 7); +x_23 = lean_ctor_get(x_8, 8); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); +lean_inc(x_7); +lean_inc(x_6); +x_24 = l_Lean_Name_num___override(x_6, x_7); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_7, x_25); +lean_dec(x_7); +lean_ctor_set(x_4, 1, x_26); +x_27 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_27, 0, x_16); +lean_ctor_set(x_27, 1, x_17); +lean_ctor_set(x_27, 2, x_4); +lean_ctor_set(x_27, 3, x_18); +lean_ctor_set(x_27, 4, x_19); +lean_ctor_set(x_27, 5, x_20); +lean_ctor_set(x_27, 6, x_21); +lean_ctor_set(x_27, 7, x_22); +lean_ctor_set(x_27, 8, x_23); +x_28 = lean_st_ref_set(x_1, x_27); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_24); +return x_29; +} +} +else +{ +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; 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; lean_object* x_47; lean_object* x_48; +x_30 = lean_ctor_get(x_4, 0); +x_31 = lean_ctor_get(x_4, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_4); +x_32 = lean_st_ref_take(x_1); +x_33 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +x_35 = lean_ctor_get(x_32, 3); +lean_inc_ref(x_35); +x_36 = lean_ctor_get(x_32, 4); +lean_inc_ref(x_36); +x_37 = lean_ctor_get(x_32, 5); +lean_inc_ref(x_37); +x_38 = lean_ctor_get(x_32, 6); +lean_inc_ref(x_38); +x_39 = lean_ctor_get(x_32, 7); +lean_inc_ref(x_39); +x_40 = lean_ctor_get(x_32, 8); +lean_inc_ref(x_40); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + lean_ctor_release(x_32, 1); + lean_ctor_release(x_32, 2); + lean_ctor_release(x_32, 3); + lean_ctor_release(x_32, 4); + lean_ctor_release(x_32, 5); + lean_ctor_release(x_32, 6); + lean_ctor_release(x_32, 7); + lean_ctor_release(x_32, 8); + x_41 = x_32; +} else { + lean_dec_ref(x_32); + x_41 = lean_box(0); +} +lean_inc(x_31); +lean_inc(x_30); +x_42 = l_Lean_Name_num___override(x_30, x_31); +x_43 = lean_unsigned_to_nat(1u); +x_44 = lean_nat_add(x_31, x_43); +lean_dec(x_31); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_30); +lean_ctor_set(x_45, 1, x_44); +if (lean_is_scalar(x_41)) { + x_46 = lean_alloc_ctor(0, 9, 0); +} else { + x_46 = x_41; +} +lean_ctor_set(x_46, 0, x_33); +lean_ctor_set(x_46, 1, x_34); +lean_ctor_set(x_46, 2, x_45); +lean_ctor_set(x_46, 3, x_35); +lean_ctor_set(x_46, 4, x_36); +lean_ctor_set(x_46, 5, x_37); +lean_ctor_set(x_46, 6, x_38); +lean_ctor_set(x_46, 7, x_39); +lean_ctor_set(x_46, 8, x_40); +x_47 = lean_st_ref_set(x_1, x_46); +x_48 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_48, 0, x_42); +return x_48; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_1); lean_dec(x_1); -return x_14; +return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5(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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_9; +x_9 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_7); +return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5___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) { _start: { -lean_object* x_11; -x_11 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_9; +x_9 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -return x_11; +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5(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) { -_start: -{ -lean_object* x_11; -x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5___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_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -return x_11; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0(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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp___redArg(x_1, x_6); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__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) { -_start: +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_10 = l_Lean_Meta_getLevel(x_1, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +x_12 = l_Lean_Meta_decLevel(x_11, x_5, x_6, x_7, x_8); +return x_12; +} +else { -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1() { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6(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_12; +x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1)); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_18, 0, x_16); +lean_closure_set(x_18, 1, x_17); +lean_closure_set(x_18, 2, x_1); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_19 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec_ref(x_19); +x_21 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_21, 0, x_16); +lean_closure_set(x_21, 1, x_17); +lean_closure_set(x_21, 2, x_2); +x_22 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; +x_23 = lean_array_push(x_22, x_8); +x_24 = l_Lean_Expr_betaRev(x_20, x_23, x_3, x_3); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_21, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec_ref(x_25); +x_27 = l_Lean_Expr_betaRev(x_26, x_23, x_3, x_3); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +lean_dec_ref(x_28); +x_30 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___closed__11)); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_30, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_31) == 0) +{ +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +x_33 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); +x_34 = lean_box(0); +lean_inc(x_5); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_5); +lean_ctor_set(x_35, 1, x_34); +x_36 = l_Lean_mkConst(x_33, x_35); +x_37 = l_Lean_Expr_app___override(x_36, x_6); +x_38 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_38, 0, x_32); +lean_ctor_set(x_38, 1, x_29); +lean_ctor_set(x_38, 2, x_24); +x_39 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_38); +x_40 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_40, 0, x_5); +lean_ctor_set(x_40, 1, x_37); +lean_ctor_set(x_40, 2, x_39); +lean_ctor_set(x_40, 3, x_27); +x_41 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_40); +x_42 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__3)); +x_43 = l_Lean_Name_append(x_7, x_42); +x_44 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_44, 0, x_41); +lean_closure_set(x_44, 1, x_43); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_9); +x_45 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_44, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_45) == 0) +{ +lean_object* x_46; uint8_t x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +lean_dec_ref(x_45); +x_47 = 1; +x_48 = 1; +x_49 = lean_box(x_3); +x_50 = lean_box(x_47); +x_51 = lean_box(x_48); +x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__5___boxed), 13, 5); +lean_closure_set(x_52, 0, x_23); +lean_closure_set(x_52, 1, x_46); +lean_closure_set(x_52, 2, x_49); +lean_closure_set(x_52, 3, x_50); +lean_closure_set(x_52, 4, x_51); +x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_9, x_10, x_11, x_12, x_13, x_14); +return x_53; +} +else +{ +lean_dec_ref(x_23); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +return x_45; +} +} +else +{ +uint8_t x_54; +lean_dec(x_29); +lean_dec_ref(x_27); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_54 = !lean_is_exclusive(x_31); +if (x_54 == 0) +{ +return x_31; +} +else +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_31, 0); +lean_inc(x_55); +lean_dec(x_31); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; +} +} +} +else +{ +uint8_t x_57; +lean_dec_ref(x_27); +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_57 = !lean_is_exclusive(x_28); +if (x_57 == 0) +{ +return x_28; +} +else +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_28, 0); +lean_inc(x_58); +lean_dec(x_28); +x_59 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_59, 0, x_58); +return x_59; +} +} +} +else +{ +lean_dec_ref(x_24); +lean_dec_ref(x_23); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_25; +} +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___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, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; lean_object* x_17; +x_16 = lean_unbox(x_3); +x_17 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9(x_1, x_2, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +return x_17; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_isExprDefEqGuarded(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6(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_12; +x_12 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_mkProj_x27(x_1, x_2, x_3, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0(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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_9; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8___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_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7(lean_object* x_1, lean_object* x_2, uint8_t 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, uint8_t x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1)); +x_22 = lean_unsigned_to_nat(0u); +x_23 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___boxed), 11, 3); +lean_closure_set(x_23, 0, x_21); +lean_closure_set(x_23, 1, x_22); +lean_closure_set(x_23, 2, x_1); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___boxed), 11, 3); +lean_closure_set(x_26, 0, x_21); +lean_closure_set(x_26, 1, x_22); +lean_closure_set(x_26, 2, x_2); +x_27 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; +x_28 = lean_array_push(x_27, x_13); +x_29 = l_Lean_Expr_betaRev(x_25, x_28, x_3, x_3); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_30 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_26, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +lean_dec_ref(x_30); +x_32 = l_Lean_Expr_betaRev(x_31, x_28, x_3, x_3); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec_ref(x_33); +x_35 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__0)); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_36) == 0) +{ +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; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +x_38 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__9)); +x_39 = l_Lean_Name_mkStr4(x_5, x_6, x_7, x_38); +x_40 = l_Lean_mkConst(x_39, x_8); +x_41 = l_Lean_Expr_app___override(x_40, x_9); +x_42 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_42, 0, x_37); +lean_ctor_set(x_42, 1, x_34); +lean_ctor_set(x_42, 2, x_29); +x_43 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_42); +x_44 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_44, 0, x_10); +lean_ctor_set(x_44, 1, x_41); +lean_ctor_set(x_44, 2, x_43); +lean_ctor_set(x_44, 3, x_32); +x_45 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_44); +x_46 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__2)); +x_47 = l_Lean_Name_append(x_11, x_46); +x_48 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__8___boxed), 10, 2); +lean_closure_set(x_48, 0, x_45); +lean_closure_set(x_48, 1, x_47); +lean_inc(x_19); +lean_inc_ref(x_18); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc_ref(x_14); +x_49 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_48, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_51 = 1; +x_52 = lean_box(x_3); +x_53 = lean_box(x_12); +x_54 = lean_box(x_51); +x_55 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__5___boxed), 13, 5); +lean_closure_set(x_55, 0, x_28); +lean_closure_set(x_55, 1, x_50); +lean_closure_set(x_55, 2, x_52); +lean_closure_set(x_55, 3, x_53); +lean_closure_set(x_55, 4, x_54); +x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_14, x_15, x_16, x_17, x_18, x_19); +return x_56; +} +else +{ +lean_dec_ref(x_28); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +return x_49; +} +} +else +{ +uint8_t x_57; +lean_dec(x_34); +lean_dec_ref(x_32); +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +x_57 = !lean_is_exclusive(x_36); +if (x_57 == 0) +{ +return x_36; +} +else +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_36, 0); +lean_inc(x_58); +lean_dec(x_36); +x_59 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_59, 0, x_58); +return x_59; +} +} +} +else +{ +uint8_t x_60; +lean_dec_ref(x_32); +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +x_60 = !lean_is_exclusive(x_33); +if (x_60 == 0) +{ +return x_33; +} +else +{ +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_33, 0); +lean_inc(x_61); +lean_dec(x_33); +x_62 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_62, 0, x_61); +return x_62; +} +} +} +else +{ +lean_dec_ref(x_29); +lean_dec_ref(x_28); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +return x_30; +} +} +else +{ +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +return x_24; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +_start: +{ +uint8_t x_21; uint8_t x_22; lean_object* x_23; +x_21 = lean_unbox(x_3); +x_22 = lean_unbox(x_12); +x_23 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7(x_1, x_2, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_15); +return x_23; +} +} +static uint64_t _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15() { +_start: +{ +uint8_t x_1; uint64_t x_2; +x_1 = 1; +x_2 = l_Lean_Meta_TransparencyMode_toUInt64(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__22)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(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_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1)); +x_14 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2)); +x_15 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__8)); +x_16 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__1)); +x_17 = l_Lean_Expr_isAppOf(x_2, x_16); +if (x_17 == 0) +{ +lean_object* x_18; uint8_t x_19; uint8_t x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; uint8_t x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; uint8_t x_32; uint8_t x_33; uint8_t x_34; uint8_t x_35; uint8_t x_36; uint8_t 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; uint8_t x_44; uint8_t x_45; uint8_t x_46; uint8_t x_47; lean_object* x_48; uint64_t x_49; uint64_t x_50; uint64_t 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; uint8_t x_58; lean_object* x_59; lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; uint8_t x_181; lean_object* x_182; lean_object* x_229; uint64_t x_230; uint64_t x_231; uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_18 = l_Lean_Meta_Context_config(x_8); +x_19 = lean_ctor_get_uint8(x_18, 0); +x_20 = lean_ctor_get_uint8(x_18, 1); +x_21 = lean_ctor_get_uint8(x_18, 2); +x_22 = lean_ctor_get_uint8(x_18, 3); +x_23 = lean_ctor_get_uint8(x_18, 4); +x_24 = lean_ctor_get_uint8(x_18, 5); +x_25 = lean_ctor_get_uint8(x_18, 6); +x_26 = lean_ctor_get_uint8(x_18, 7); +x_27 = lean_ctor_get_uint8(x_18, 8); +x_28 = lean_ctor_get_uint8(x_18, 10); +x_29 = lean_ctor_get_uint8(x_18, 11); +x_30 = lean_ctor_get_uint8(x_18, 12); +x_31 = lean_ctor_get_uint8(x_18, 13); +x_32 = lean_ctor_get_uint8(x_18, 14); +x_33 = lean_ctor_get_uint8(x_18, 15); +x_34 = lean_ctor_get_uint8(x_18, 16); +x_35 = lean_ctor_get_uint8(x_18, 17); +x_36 = lean_ctor_get_uint8(x_18, 18); +x_37 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); +x_38 = lean_ctor_get(x_8, 1); +x_39 = lean_ctor_get(x_8, 2); +x_40 = lean_ctor_get(x_8, 3); +x_41 = lean_ctor_get(x_8, 4); +x_42 = lean_ctor_get(x_8, 5); +x_43 = lean_ctor_get(x_8, 6); +x_44 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); +x_45 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); +x_46 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); +x_47 = 1; +x_48 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_48, 0, x_19); +lean_ctor_set_uint8(x_48, 1, x_20); +lean_ctor_set_uint8(x_48, 2, x_21); +lean_ctor_set_uint8(x_48, 3, x_22); +lean_ctor_set_uint8(x_48, 4, x_23); +lean_ctor_set_uint8(x_48, 5, x_24); +lean_ctor_set_uint8(x_48, 6, x_25); +lean_ctor_set_uint8(x_48, 7, x_26); +lean_ctor_set_uint8(x_48, 8, x_27); +lean_ctor_set_uint8(x_48, 9, x_47); +lean_ctor_set_uint8(x_48, 10, x_28); +lean_ctor_set_uint8(x_48, 11, x_29); +lean_ctor_set_uint8(x_48, 12, x_30); +lean_ctor_set_uint8(x_48, 13, x_31); +lean_ctor_set_uint8(x_48, 14, x_32); +lean_ctor_set_uint8(x_48, 15, x_33); +lean_ctor_set_uint8(x_48, 16, x_34); +lean_ctor_set_uint8(x_48, 17, x_35); +lean_ctor_set_uint8(x_48, 18, x_36); +x_49 = l_Lean_Meta_Context_configKey(x_8); +x_50 = 2; +x_51 = lean_uint64_shift_right(x_49, x_50); +x_52 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__2)); +lean_inc_ref(x_4); +x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__1___boxed), 9, 1); +lean_closure_set(x_53, 0, x_4); +lean_inc_ref(x_3); +x_54 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__2___boxed), 9, 1); +lean_closure_set(x_54, 0, x_3); +lean_inc_ref(x_4); +lean_inc_ref(x_3); +x_229 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__3___boxed), 10, 2); +lean_closure_set(x_229, 0, x_3); +lean_closure_set(x_229, 1, x_4); +x_230 = lean_uint64_shift_left(x_51, x_50); +x_231 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_232 = lean_uint64_lor(x_230, x_231); +x_233 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_233, 0, x_48); +lean_ctor_set_uint64(x_233, sizeof(void*)*1, x_232); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc_ref(x_40); +lean_inc_ref(x_39); +lean_inc(x_38); +x_234 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_234, 0, x_233); +lean_ctor_set(x_234, 1, x_38); +lean_ctor_set(x_234, 2, x_39); +lean_ctor_set(x_234, 3, x_40); +lean_ctor_set(x_234, 4, x_41); +lean_ctor_set(x_234, 5, x_42); +lean_ctor_set(x_234, 6, x_43); +lean_ctor_set_uint8(x_234, sizeof(void*)*7, x_37); +lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 1, x_44); +lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 2, x_45); +lean_ctor_set_uint8(x_234, sizeof(void*)*7 + 3, x_46); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_235 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_229, x_6, x_7, x_234, x_9, x_10, x_11); +if (lean_obj_tag(x_235) == 0) +{ +lean_object* x_236; uint8_t x_237; +x_236 = lean_ctor_get(x_235, 0); +lean_inc(x_236); +lean_dec_ref(x_235); +x_237 = lean_unbox(x_236); +lean_dec(x_236); +x_181 = x_237; +x_182 = lean_box(0); +goto block_228; +} +else +{ +if (lean_obj_tag(x_235) == 0) +{ +lean_object* x_238; uint8_t x_239; +x_238 = lean_ctor_get(x_235, 0); +lean_inc(x_238); +lean_dec_ref(x_235); +x_239 = lean_unbox(x_238); +lean_dec(x_238); +x_181 = x_239; +x_182 = lean_box(0); +goto block_228; +} +else +{ +uint8_t x_240; +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_240 = !lean_is_exclusive(x_235); +if (x_240 == 0) +{ +return x_235; +} +else +{ +lean_object* x_241; lean_object* x_242; +x_241 = lean_ctor_get(x_235, 0); +lean_inc(x_241); +lean_dec(x_235); +x_242 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_242, 0, x_241); +return x_242; +} +} +} +block_114: +{ +if (x_58 == 0) +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_60 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__4)); +x_61 = lean_unsigned_to_nat(2u); +x_62 = l_Lean_Expr_isAppOfArity(x_2, x_60, x_61); +if (x_62 == 0) +{ +lean_object* x_63; uint8_t x_64; +x_63 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__6)); +x_64 = l_Lean_Expr_isAppOfArity(x_2, x_63, x_61); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec(x_1); +x_65 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__15___closed__2)); +x_66 = l_Lean_Name_mkStr4(x_13, x_14, x_56, x_65); +x_67 = l_Lean_mkConst(x_66, x_57); +x_68 = l_Lean_mkApp3(x_67, x_2, x_3, x_4); +x_69 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__4___boxed), 10, 2); +lean_closure_set(x_69, 0, x_68); +lean_closure_set(x_69, 1, x_5); +x_70 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_69, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_70; +} +else +{ +lean_object* x_71; +lean_dec(x_57); +lean_dec_ref(x_56); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_71 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_54, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +lean_dec_ref(x_71); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_53, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +lean_dec_ref(x_73); +x_75 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__9)); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* 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; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +lean_dec_ref(x_76); +x_78 = l_Lean_Expr_appFn_x21(x_2); +x_79 = l_Lean_Expr_appArg_x21(x_78); +lean_dec_ref(x_78); +x_80 = l_Lean_Expr_appArg_x21(x_2); +lean_dec_ref(x_2); +x_81 = lean_box(x_62); +x_82 = lean_box(x_64); +lean_inc(x_5); +lean_inc(x_1); +lean_inc_ref(x_80); +lean_inc(x_74); +lean_inc(x_72); +x_83 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___boxed), 20, 12); +lean_closure_set(x_83, 0, x_72); +lean_closure_set(x_83, 1, x_74); +lean_closure_set(x_83, 2, x_81); +lean_closure_set(x_83, 3, x_52); +lean_closure_set(x_83, 4, x_13); +lean_closure_set(x_83, 5, x_14); +lean_closure_set(x_83, 6, x_15); +lean_closure_set(x_83, 7, x_55); +lean_closure_set(x_83, 8, x_80); +lean_closure_set(x_83, 9, x_1); +lean_closure_set(x_83, 10, x_5); +lean_closure_set(x_83, 11, x_82); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_84 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_77, x_79, x_83, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_84) == 0) +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +lean_dec_ref(x_84); +x_86 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1)); +x_87 = lean_unsigned_to_nat(1u); +x_88 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___boxed), 11, 3); +lean_closure_set(x_88, 0, x_86); +lean_closure_set(x_88, 1, x_87); +lean_closure_set(x_88, 2, x_72); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_89 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_88, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +lean_dec_ref(x_89); +x_91 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__6___boxed), 11, 3); +lean_closure_set(x_91, 0, x_86); +lean_closure_set(x_91, 1, x_87); +lean_closure_set(x_91, 2, x_74); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_92 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_91, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_92) == 0) +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_93 = lean_ctor_get(x_92, 0); +lean_inc(x_93); +lean_dec_ref(x_92); +x_94 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10)); +x_95 = l_Lean_Name_append(x_5, x_94); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_96 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(x_1, x_80, x_90, x_93, x_95, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_96) == 0) +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_97 = lean_ctor_get(x_96, 0); +lean_inc(x_97); +lean_dec_ref(x_96); +x_98 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12)); +x_99 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8; +x_100 = lean_array_push(x_99, x_85); +x_101 = lean_array_push(x_100, x_97); +x_102 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__11___boxed), 10, 2); +lean_closure_set(x_102, 0, x_98); +lean_closure_set(x_102, 1, x_101); +x_103 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_102, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_103; +} +else +{ +lean_dec(x_85); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +return x_96; +} +} +else +{ +lean_dec(x_90); +lean_dec(x_85); +lean_dec_ref(x_80); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_92; +} +} +else +{ +lean_dec(x_85); +lean_dec_ref(x_80); +lean_dec(x_74); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_89; +} +} +else +{ +lean_dec_ref(x_80); +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_84; +} +} +else +{ +uint8_t x_104; +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_55); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +x_104 = !lean_is_exclusive(x_76); +if (x_104 == 0) +{ +return x_76; +} +else +{ +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_76, 0); +lean_inc(x_105); +lean_dec(x_76); +x_106 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +} +} +else +{ +lean_dec(x_72); +lean_dec(x_55); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_73; +} +} +else +{ +lean_dec(x_55); +lean_dec_ref(x_53); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_71; +} +} +} +else +{ +lean_object* x_107; +lean_dec(x_57); +lean_dec_ref(x_56); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +x_107 = l_Lean_Expr_appArg_x21(x_2); +lean_dec_ref(x_2); +x_2 = x_107; +goto _start; +} +} +else +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +x_109 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__13)); +x_110 = l_Lean_Name_mkStr4(x_13, x_14, x_56, x_109); +x_111 = l_Lean_mkConst(x_110, x_57); +x_112 = l_Lean_mkAppB(x_111, x_2, x_3); +x_113 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_113, 0, x_112); +return x_113; +} +} +block_180: +{ +if (x_117 == 0) +{ +uint8_t x_119; +x_119 = !lean_is_exclusive(x_18); +if (x_119 == 0) +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint64_t x_125; uint64_t x_126; uint64_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_ctor_set_uint8(x_18, 9, x_47); +x_120 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__14)); +lean_inc_ref(x_115); +x_121 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_120); +lean_inc(x_116); +x_122 = l_Lean_mkConst(x_121, x_116); +lean_inc_ref(x_2); +x_123 = l_Lean_Expr_app___override(x_122, x_2); +lean_inc_ref(x_4); +x_124 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9___boxed), 10, 2); +lean_closure_set(x_124, 0, x_4); +lean_closure_set(x_124, 1, x_123); +x_125 = lean_uint64_shift_left(x_51, x_50); +x_126 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_127 = lean_uint64_lor(x_125, x_126); +x_128 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_128, 0, x_18); +lean_ctor_set_uint64(x_128, sizeof(void*)*1, x_127); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc_ref(x_40); +lean_inc_ref(x_39); +lean_inc(x_38); +x_129 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_38); +lean_ctor_set(x_129, 2, x_39); +lean_ctor_set(x_129, 3, x_40); +lean_ctor_set(x_129, 4, x_41); +lean_ctor_set(x_129, 5, x_42); +lean_ctor_set(x_129, 6, x_43); +lean_ctor_set_uint8(x_129, sizeof(void*)*7, x_37); +lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 1, x_44); +lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 2, x_45); +lean_ctor_set_uint8(x_129, sizeof(void*)*7 + 3, x_46); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_130 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_124, x_6, x_7, x_129, x_9, x_10, x_11); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; uint8_t x_132; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +lean_dec_ref(x_130); +x_132 = lean_unbox(x_131); +lean_dec(x_131); +lean_inc(x_116); +x_55 = x_116; +x_56 = x_115; +x_57 = x_116; +x_58 = x_132; +x_59 = lean_box(0); +goto block_114; +} +else +{ +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_133; uint8_t x_134; +x_133 = lean_ctor_get(x_130, 0); +lean_inc(x_133); +lean_dec_ref(x_130); +x_134 = lean_unbox(x_133); +lean_dec(x_133); +lean_inc(x_116); +x_55 = x_116; +x_56 = x_115; +x_57 = x_116; +x_58 = x_134; +x_59 = lean_box(0); +goto block_114; +} +else +{ +uint8_t x_135; +lean_dec(x_116); +lean_dec_ref(x_115); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_135 = !lean_is_exclusive(x_130); +if (x_135 == 0) +{ +return x_130; +} +else +{ +lean_object* x_136; lean_object* x_137; +x_136 = lean_ctor_get(x_130, 0); +lean_inc(x_136); +lean_dec(x_130); +x_137 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_137, 0, x_136); +return x_137; +} +} +} +} +else +{ +uint8_t x_138; uint8_t x_139; uint8_t x_140; uint8_t x_141; uint8_t x_142; uint8_t x_143; uint8_t x_144; uint8_t x_145; uint8_t x_146; uint8_t x_147; uint8_t x_148; uint8_t x_149; uint8_t x_150; uint8_t x_151; uint8_t x_152; uint8_t x_153; uint8_t x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; uint64_t x_162; uint64_t x_163; uint64_t x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; +x_138 = lean_ctor_get_uint8(x_18, 0); +x_139 = lean_ctor_get_uint8(x_18, 1); +x_140 = lean_ctor_get_uint8(x_18, 2); +x_141 = lean_ctor_get_uint8(x_18, 3); +x_142 = lean_ctor_get_uint8(x_18, 4); +x_143 = lean_ctor_get_uint8(x_18, 5); +x_144 = lean_ctor_get_uint8(x_18, 6); +x_145 = lean_ctor_get_uint8(x_18, 7); +x_146 = lean_ctor_get_uint8(x_18, 8); +x_147 = lean_ctor_get_uint8(x_18, 10); +x_148 = lean_ctor_get_uint8(x_18, 11); +x_149 = lean_ctor_get_uint8(x_18, 12); +x_150 = lean_ctor_get_uint8(x_18, 13); +x_151 = lean_ctor_get_uint8(x_18, 14); +x_152 = lean_ctor_get_uint8(x_18, 15); +x_153 = lean_ctor_get_uint8(x_18, 16); +x_154 = lean_ctor_get_uint8(x_18, 17); +x_155 = lean_ctor_get_uint8(x_18, 18); +lean_dec(x_18); +x_156 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_156, 0, x_138); +lean_ctor_set_uint8(x_156, 1, x_139); +lean_ctor_set_uint8(x_156, 2, x_140); +lean_ctor_set_uint8(x_156, 3, x_141); +lean_ctor_set_uint8(x_156, 4, x_142); +lean_ctor_set_uint8(x_156, 5, x_143); +lean_ctor_set_uint8(x_156, 6, x_144); +lean_ctor_set_uint8(x_156, 7, x_145); +lean_ctor_set_uint8(x_156, 8, x_146); +lean_ctor_set_uint8(x_156, 9, x_47); +lean_ctor_set_uint8(x_156, 10, x_147); +lean_ctor_set_uint8(x_156, 11, x_148); +lean_ctor_set_uint8(x_156, 12, x_149); +lean_ctor_set_uint8(x_156, 13, x_150); +lean_ctor_set_uint8(x_156, 14, x_151); +lean_ctor_set_uint8(x_156, 15, x_152); +lean_ctor_set_uint8(x_156, 16, x_153); +lean_ctor_set_uint8(x_156, 17, x_154); +lean_ctor_set_uint8(x_156, 18, x_155); +x_157 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__14)); +lean_inc_ref(x_115); +x_158 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_157); +lean_inc(x_116); +x_159 = l_Lean_mkConst(x_158, x_116); +lean_inc_ref(x_2); +x_160 = l_Lean_Expr_app___override(x_159, x_2); +lean_inc_ref(x_4); +x_161 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__9___boxed), 10, 2); +lean_closure_set(x_161, 0, x_4); +lean_closure_set(x_161, 1, x_160); +x_162 = lean_uint64_shift_left(x_51, x_50); +x_163 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_164 = lean_uint64_lor(x_162, x_163); +x_165 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_165, 0, x_156); +lean_ctor_set_uint64(x_165, sizeof(void*)*1, x_164); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc_ref(x_40); +lean_inc_ref(x_39); +lean_inc(x_38); +x_166 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_38); +lean_ctor_set(x_166, 2, x_39); +lean_ctor_set(x_166, 3, x_40); +lean_ctor_set(x_166, 4, x_41); +lean_ctor_set(x_166, 5, x_42); +lean_ctor_set(x_166, 6, x_43); +lean_ctor_set_uint8(x_166, sizeof(void*)*7, x_37); +lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 1, x_44); +lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 2, x_45); +lean_ctor_set_uint8(x_166, sizeof(void*)*7 + 3, x_46); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_167 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_161, x_6, x_7, x_166, x_9, x_10, x_11); +if (lean_obj_tag(x_167) == 0) +{ +lean_object* x_168; uint8_t x_169; +x_168 = lean_ctor_get(x_167, 0); +lean_inc(x_168); +lean_dec_ref(x_167); +x_169 = lean_unbox(x_168); +lean_dec(x_168); +lean_inc(x_116); +x_55 = x_116; +x_56 = x_115; +x_57 = x_116; +x_58 = x_169; +x_59 = lean_box(0); +goto block_114; +} +else +{ +if (lean_obj_tag(x_167) == 0) +{ +lean_object* x_170; uint8_t x_171; +x_170 = lean_ctor_get(x_167, 0); +lean_inc(x_170); +lean_dec_ref(x_167); +x_171 = lean_unbox(x_170); +lean_dec(x_170); +lean_inc(x_116); +x_55 = x_116; +x_56 = x_115; +x_57 = x_116; +x_58 = x_171; +x_59 = lean_box(0); +goto block_114; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_116); +lean_dec_ref(x_115); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_172 = lean_ctor_get(x_167, 0); +lean_inc(x_172); +if (lean_is_exclusive(x_167)) { + lean_ctor_release(x_167, 0); + x_173 = x_167; +} else { + lean_dec_ref(x_167); + x_173 = lean_box(0); +} +if (lean_is_scalar(x_173)) { + x_174 = lean_alloc_ctor(1, 1, 0); +} else { + x_174 = x_173; +} +lean_ctor_set(x_174, 0, x_172); +return x_174; +} +} +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_3); +lean_dec(x_1); +x_175 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__16)); +x_176 = l_Lean_Name_mkStr4(x_13, x_14, x_115, x_175); +x_177 = l_Lean_mkConst(x_176, x_116); +x_178 = l_Lean_mkAppB(x_177, x_2, x_4); +x_179 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_179, 0, x_178); +return x_179; +} +} +block_228: +{ +if (x_181 == 0) +{ +uint8_t x_183; uint8_t x_184; uint8_t x_185; uint8_t x_186; uint8_t x_187; uint8_t x_188; uint8_t x_189; uint8_t x_190; uint8_t x_191; uint8_t x_192; uint8_t x_193; uint8_t x_194; uint8_t x_195; uint8_t x_196; uint8_t x_197; uint8_t x_198; uint8_t x_199; uint8_t x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint64_t x_209; uint64_t x_210; uint64_t x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_183 = lean_ctor_get_uint8(x_18, 0); +x_184 = lean_ctor_get_uint8(x_18, 1); +x_185 = lean_ctor_get_uint8(x_18, 2); +x_186 = lean_ctor_get_uint8(x_18, 3); +x_187 = lean_ctor_get_uint8(x_18, 4); +x_188 = lean_ctor_get_uint8(x_18, 5); +x_189 = lean_ctor_get_uint8(x_18, 6); +x_190 = lean_ctor_get_uint8(x_18, 7); +x_191 = lean_ctor_get_uint8(x_18, 8); +x_192 = lean_ctor_get_uint8(x_18, 10); +x_193 = lean_ctor_get_uint8(x_18, 11); +x_194 = lean_ctor_get_uint8(x_18, 12); +x_195 = lean_ctor_get_uint8(x_18, 13); +x_196 = lean_ctor_get_uint8(x_18, 14); +x_197 = lean_ctor_get_uint8(x_18, 15); +x_198 = lean_ctor_get_uint8(x_18, 16); +x_199 = lean_ctor_get_uint8(x_18, 17); +x_200 = lean_ctor_get_uint8(x_18, 18); +x_201 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_201, 0, x_183); +lean_ctor_set_uint8(x_201, 1, x_184); +lean_ctor_set_uint8(x_201, 2, x_185); +lean_ctor_set_uint8(x_201, 3, x_186); +lean_ctor_set_uint8(x_201, 4, x_187); +lean_ctor_set_uint8(x_201, 5, x_188); +lean_ctor_set_uint8(x_201, 6, x_189); +lean_ctor_set_uint8(x_201, 7, x_190); +lean_ctor_set_uint8(x_201, 8, x_191); +lean_ctor_set_uint8(x_201, 9, x_47); +lean_ctor_set_uint8(x_201, 10, x_192); +lean_ctor_set_uint8(x_201, 11, x_193); +lean_ctor_set_uint8(x_201, 12, x_194); +lean_ctor_set_uint8(x_201, 13, x_195); +lean_ctor_set_uint8(x_201, 14, x_196); +lean_ctor_set_uint8(x_201, 15, x_197); +lean_ctor_set_uint8(x_201, 16, x_198); +lean_ctor_set_uint8(x_201, 17, x_199); +lean_ctor_set_uint8(x_201, 18, x_200); +x_202 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__17)); +x_203 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__19)); +x_204 = lean_box(0); +lean_inc(x_1); +x_205 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_205, 0, x_1); +lean_ctor_set(x_205, 1, x_204); +lean_inc_ref(x_205); +x_206 = l_Lean_mkConst(x_203, x_205); +lean_inc_ref(x_2); +x_207 = l_Lean_Expr_app___override(x_206, x_2); +lean_inc_ref(x_3); +x_208 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__10___boxed), 10, 2); +lean_closure_set(x_208, 0, x_3); +lean_closure_set(x_208, 1, x_207); +x_209 = lean_uint64_shift_left(x_51, x_50); +x_210 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_211 = lean_uint64_lor(x_209, x_210); +x_212 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_212, 0, x_201); +lean_ctor_set_uint64(x_212, sizeof(void*)*1, x_211); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_inc_ref(x_40); +lean_inc_ref(x_39); +lean_inc(x_38); +x_213 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_213, 0, x_212); +lean_ctor_set(x_213, 1, x_38); +lean_ctor_set(x_213, 2, x_39); +lean_ctor_set(x_213, 3, x_40); +lean_ctor_set(x_213, 4, x_41); +lean_ctor_set(x_213, 5, x_42); +lean_ctor_set(x_213, 6, x_43); +lean_ctor_set_uint8(x_213, sizeof(void*)*7, x_37); +lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 1, x_44); +lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 2, x_45); +lean_ctor_set_uint8(x_213, sizeof(void*)*7 + 3, x_46); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_214 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_208, x_6, x_7, x_213, x_9, x_10, x_11); +if (lean_obj_tag(x_214) == 0) +{ +lean_object* x_215; uint8_t x_216; +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +lean_dec_ref(x_214); +x_216 = lean_unbox(x_215); +lean_dec(x_215); +x_115 = x_202; +x_116 = x_205; +x_117 = x_216; +x_118 = lean_box(0); +goto block_180; +} +else +{ +if (lean_obj_tag(x_214) == 0) +{ +lean_object* x_217; uint8_t x_218; +x_217 = lean_ctor_get(x_214, 0); +lean_inc(x_217); +lean_dec_ref(x_214); +x_218 = lean_unbox(x_217); +lean_dec(x_217); +x_115 = x_202; +x_116 = x_205; +x_117 = x_218; +x_118 = lean_box(0); +goto block_180; +} +else +{ +uint8_t x_219; +lean_dec_ref(x_205); +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_219 = !lean_is_exclusive(x_214); +if (x_219 == 0) +{ +return x_214; +} +else +{ +lean_object* x_220; lean_object* x_221; +x_220 = lean_ctor_get(x_214, 0); +lean_inc(x_220); +lean_dec(x_214); +x_221 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_221, 0, x_220); +return x_221; +} +} +} +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +lean_dec_ref(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_222 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__21)); +x_223 = lean_box(0); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_1); +lean_ctor_set(x_224, 1, x_223); +x_225 = l_Lean_mkConst(x_222, x_224); +x_226 = l_Lean_mkAppB(x_225, x_2, x_3); +x_227 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_227, 0, x_226); +return x_227; +} +} +} +else +{ +lean_object* x_243; lean_object* x_244; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_243 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23; +x_244 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_244, 0, x_243); +return x_244; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___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) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_whnfR(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21(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_13; lean_object* x_14; +lean_inc_ref(x_1); +x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__0___boxed), 9, 1); +lean_closure_set(x_13, 0, x_1); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_14 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_13, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + x_16 = x_14; +} else { + lean_dec_ref(x_14); + x_16 = lean_box(0); +} +x_17 = l_Lean_Meta_Context_config(x_8); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint64_t x_30; uint64_t x_31; uint64_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_87; uint64_t x_88; uint64_t x_89; uint64_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_19 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); +x_20 = lean_ctor_get(x_8, 1); +x_21 = lean_ctor_get(x_8, 2); +x_22 = lean_ctor_get(x_8, 3); +x_23 = lean_ctor_get(x_8, 4); +x_24 = lean_ctor_get(x_8, 5); +x_25 = lean_ctor_get(x_8, 6); +x_26 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); +x_27 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); +x_28 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); +x_29 = 1; +lean_ctor_set_uint8(x_17, 9, x_29); +x_30 = l_Lean_Meta_Context_configKey(x_8); +x_31 = 2; +x_32 = lean_uint64_shift_right(x_30, x_31); +lean_inc_ref(x_3); +x_33 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__1___boxed), 9, 1); +lean_closure_set(x_33, 0, x_3); +lean_inc_ref(x_4); +x_34 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__2___boxed), 9, 1); +lean_closure_set(x_34, 0, x_4); +x_35 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0)); +lean_inc_ref(x_4); +x_87 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4___boxed), 10, 2); +lean_closure_set(x_87, 0, x_3); +lean_closure_set(x_87, 1, x_4); +x_88 = lean_uint64_shift_left(x_32, x_31); +x_89 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_90 = lean_uint64_lor(x_88, x_89); +x_91 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_91, 0, x_17); +lean_ctor_set_uint64(x_91, sizeof(void*)*1, x_90); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc_ref(x_22); +lean_inc_ref(x_21); +lean_inc(x_20); +x_92 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_92, 0, x_91); +lean_ctor_set(x_92, 1, x_20); +lean_ctor_set(x_92, 2, x_21); +lean_ctor_set(x_92, 3, x_22); +lean_ctor_set(x_92, 4, x_23); +lean_ctor_set(x_92, 5, x_24); +lean_ctor_set(x_92, 6, x_25); +lean_ctor_set_uint8(x_92, sizeof(void*)*7, x_19); +lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 1, x_26); +lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 2, x_27); +lean_ctor_set_uint8(x_92, sizeof(void*)*7 + 3, x_28); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_93 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_87, x_6, x_7, x_92, x_9, x_10, x_11); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; uint8_t x_95; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +lean_dec_ref(x_93); +x_95 = lean_unbox(x_94); +lean_dec(x_94); +x_36 = x_95; +x_37 = lean_box(0); +goto block_86; +} +else +{ +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_96; uint8_t x_97; +x_96 = lean_ctor_get(x_93, 0); +lean_inc(x_96); +lean_dec_ref(x_93); +x_97 = lean_unbox(x_96); +lean_dec(x_96); +x_36 = x_97; +x_37 = lean_box(0); +goto block_86; +} +else +{ +uint8_t x_98; +lean_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_98 = !lean_is_exclusive(x_93); +if (x_98 == 0) +{ +return x_93; +} +else +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_93, 0); +lean_inc(x_99); +lean_dec(x_93); +x_100 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_100, 0, x_99); +return x_100; +} +} +} +block_86: +{ +if (x_36 == 0) +{ +lean_object* x_38; +lean_dec(x_16); +lean_dec_ref(x_4); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_40 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +lean_dec_ref(x_40); +x_42 = l_Lean_Expr_fvarId_x3f(x_39); +if (lean_obj_tag(x_42) == 1) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec_ref(x_42); +x_43 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2)); +x_44 = lean_box(0); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_15); +lean_ctor_set(x_45, 1, x_44); +x_46 = l_Lean_mkConst(x_43, x_45); +x_47 = l_Lean_mkApp4(x_46, x_1, x_2, x_39, x_41); +x_48 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4)); +x_49 = l_Lean_Name_append(x_5, x_48); +x_50 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_50, 0, x_47); +lean_closure_set(x_50, 1, x_49); +x_51 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_50, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_51; +} +else +{ +lean_object* x_52; lean_object* x_53; +lean_dec(x_42); +x_52 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__7)); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_53) == 0) +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +lean_dec_ref(x_53); +x_55 = lean_box(x_36); +lean_inc(x_5); +lean_inc_ref(x_2); +lean_inc(x_15); +lean_inc(x_41); +lean_inc(x_39); +x_56 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___boxed), 15, 7); +lean_closure_set(x_56, 0, x_39); +lean_closure_set(x_56, 1, x_41); +lean_closure_set(x_56, 2, x_55); +lean_closure_set(x_56, 3, x_35); +lean_closure_set(x_56, 4, x_15); +lean_closure_set(x_56, 5, x_2); +lean_closure_set(x_56, 6, x_5); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_57 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_54, x_1, x_56, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +lean_dec_ref(x_57); +x_59 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1)); +x_60 = lean_unsigned_to_nat(1u); +x_61 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_61, 0, x_59); +lean_closure_set(x_61, 1, x_60); +lean_closure_set(x_61, 2, x_39); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_62 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_61, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +lean_dec_ref(x_62); +x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_64, 0, x_59); +lean_closure_set(x_64, 1, x_60); +lean_closure_set(x_64, 2, x_41); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_65 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +lean_dec_ref(x_65); +x_67 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10)); +x_68 = l_Lean_Name_append(x_5, x_67); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_69 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(x_15, x_2, x_63, x_66, x_68, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_69) == 0) +{ +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; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +lean_dec_ref(x_69); +x_71 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12)); +x_72 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8; +x_73 = lean_array_push(x_72, x_58); +x_74 = lean_array_push(x_73, x_70); +x_75 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); +lean_closure_set(x_75, 0, x_71); +lean_closure_set(x_75, 1, x_74); +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_76; +} +else +{ +lean_dec(x_58); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +return x_69; +} +} +else +{ +lean_dec(x_63); +lean_dec(x_58); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_65; +} +} +else +{ +lean_dec(x_58); +lean_dec(x_41); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_62; +} +} +else +{ +lean_dec(x_41); +lean_dec(x_39); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_57; +} +} +else +{ +uint8_t x_77; +lean_dec(x_41); +lean_dec(x_39); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_77 = !lean_is_exclusive(x_53); +if (x_77 == 0) +{ +return x_53; +} +else +{ +lean_object* x_78; lean_object* x_79; +x_78 = lean_ctor_get(x_53, 0); +lean_inc(x_78); +lean_dec(x_53); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +return x_79; +} +} +} +} +else +{ +lean_dec(x_39); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_40; +} +} +else +{ +lean_dec_ref(x_34); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_38; +} +} +else +{ +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_dec_ref(x_34); +lean_dec_ref(x_33); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_80 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8)); +x_81 = lean_box(0); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_15); +lean_ctor_set(x_82, 1, x_81); +x_83 = l_Lean_mkConst(x_80, x_82); +x_84 = l_Lean_mkApp3(x_83, x_1, x_2, x_4); +if (lean_is_scalar(x_16)) { + x_85 = lean_alloc_ctor(0, 1, 0); +} else { + x_85 = x_16; +} +lean_ctor_set(x_85, 0, x_84); +return x_85; +} +} +} +else +{ +uint8_t x_101; uint8_t x_102; uint8_t x_103; uint8_t x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_108; uint8_t x_109; uint8_t x_110; uint8_t x_111; uint8_t x_112; uint8_t x_113; uint8_t x_114; uint8_t x_115; uint8_t x_116; uint8_t x_117; uint8_t x_118; uint8_t x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; uint8_t x_127; uint8_t x_128; uint8_t x_129; lean_object* x_130; uint64_t x_131; uint64_t x_132; uint64_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; lean_object* x_188; uint64_t x_189; uint64_t x_190; uint64_t x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_101 = lean_ctor_get_uint8(x_17, 0); +x_102 = lean_ctor_get_uint8(x_17, 1); +x_103 = lean_ctor_get_uint8(x_17, 2); +x_104 = lean_ctor_get_uint8(x_17, 3); +x_105 = lean_ctor_get_uint8(x_17, 4); +x_106 = lean_ctor_get_uint8(x_17, 5); +x_107 = lean_ctor_get_uint8(x_17, 6); +x_108 = lean_ctor_get_uint8(x_17, 7); +x_109 = lean_ctor_get_uint8(x_17, 8); +x_110 = lean_ctor_get_uint8(x_17, 10); +x_111 = lean_ctor_get_uint8(x_17, 11); +x_112 = lean_ctor_get_uint8(x_17, 12); +x_113 = lean_ctor_get_uint8(x_17, 13); +x_114 = lean_ctor_get_uint8(x_17, 14); +x_115 = lean_ctor_get_uint8(x_17, 15); +x_116 = lean_ctor_get_uint8(x_17, 16); +x_117 = lean_ctor_get_uint8(x_17, 17); +x_118 = lean_ctor_get_uint8(x_17, 18); +lean_dec(x_17); +x_119 = lean_ctor_get_uint8(x_8, sizeof(void*)*7); +x_120 = lean_ctor_get(x_8, 1); +x_121 = lean_ctor_get(x_8, 2); +x_122 = lean_ctor_get(x_8, 3); +x_123 = lean_ctor_get(x_8, 4); +x_124 = lean_ctor_get(x_8, 5); +x_125 = lean_ctor_get(x_8, 6); +x_126 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 1); +x_127 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 2); +x_128 = lean_ctor_get_uint8(x_8, sizeof(void*)*7 + 3); +x_129 = 1; +x_130 = lean_alloc_ctor(0, 0, 19); +lean_ctor_set_uint8(x_130, 0, x_101); +lean_ctor_set_uint8(x_130, 1, x_102); +lean_ctor_set_uint8(x_130, 2, x_103); +lean_ctor_set_uint8(x_130, 3, x_104); +lean_ctor_set_uint8(x_130, 4, x_105); +lean_ctor_set_uint8(x_130, 5, x_106); +lean_ctor_set_uint8(x_130, 6, x_107); +lean_ctor_set_uint8(x_130, 7, x_108); +lean_ctor_set_uint8(x_130, 8, x_109); +lean_ctor_set_uint8(x_130, 9, x_129); +lean_ctor_set_uint8(x_130, 10, x_110); +lean_ctor_set_uint8(x_130, 11, x_111); +lean_ctor_set_uint8(x_130, 12, x_112); +lean_ctor_set_uint8(x_130, 13, x_113); +lean_ctor_set_uint8(x_130, 14, x_114); +lean_ctor_set_uint8(x_130, 15, x_115); +lean_ctor_set_uint8(x_130, 16, x_116); +lean_ctor_set_uint8(x_130, 17, x_117); +lean_ctor_set_uint8(x_130, 18, x_118); +x_131 = l_Lean_Meta_Context_configKey(x_8); +x_132 = 2; +x_133 = lean_uint64_shift_right(x_131, x_132); +lean_inc_ref(x_3); +x_134 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__1___boxed), 9, 1); +lean_closure_set(x_134, 0, x_3); +lean_inc_ref(x_4); +x_135 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__2___boxed), 9, 1); +lean_closure_set(x_135, 0, x_4); +x_136 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0)); +lean_inc_ref(x_4); +x_188 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__4___boxed), 10, 2); +lean_closure_set(x_188, 0, x_3); +lean_closure_set(x_188, 1, x_4); +x_189 = lean_uint64_shift_left(x_133, x_132); +x_190 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; +x_191 = lean_uint64_lor(x_189, x_190); +x_192 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_192, 0, x_130); +lean_ctor_set_uint64(x_192, sizeof(void*)*1, x_191); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_inc_ref(x_122); +lean_inc_ref(x_121); +lean_inc(x_120); +x_193 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_120); +lean_ctor_set(x_193, 2, x_121); +lean_ctor_set(x_193, 3, x_122); +lean_ctor_set(x_193, 4, x_123); +lean_ctor_set(x_193, 5, x_124); +lean_ctor_set(x_193, 6, x_125); +lean_ctor_set_uint8(x_193, sizeof(void*)*7, x_119); +lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 1, x_126); +lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 2, x_127); +lean_ctor_set_uint8(x_193, sizeof(void*)*7 + 3, x_128); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_6); +x_194 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_188, x_6, x_7, x_193, x_9, x_10, x_11); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; uint8_t x_196; +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +lean_dec_ref(x_194); +x_196 = lean_unbox(x_195); +lean_dec(x_195); +x_137 = x_196; +x_138 = lean_box(0); +goto block_187; +} +else +{ +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_197; uint8_t x_198; +x_197 = lean_ctor_get(x_194, 0); +lean_inc(x_197); +lean_dec_ref(x_194); +x_198 = lean_unbox(x_197); +lean_dec(x_197); +x_137 = x_198; +x_138 = lean_box(0); +goto block_187; +} +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; +lean_dec_ref(x_135); +lean_dec_ref(x_134); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_199 = lean_ctor_get(x_194, 0); +lean_inc(x_199); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_200 = x_194; +} else { + lean_dec_ref(x_194); + x_200 = lean_box(0); +} +if (lean_is_scalar(x_200)) { + x_201 = lean_alloc_ctor(1, 1, 0); +} else { + x_201 = x_200; +} +lean_ctor_set(x_201, 0, x_199); +return x_201; +} +} +block_187: +{ +if (x_137 == 0) +{ +lean_object* x_139; +lean_dec(x_16); +lean_dec_ref(x_4); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_139 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_134, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_141 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_135, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +lean_dec_ref(x_141); +x_143 = l_Lean_Expr_fvarId_x3f(x_140); +if (lean_obj_tag(x_143) == 1) +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +lean_dec_ref(x_143); +x_144 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__2)); +x_145 = lean_box(0); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_15); +lean_ctor_set(x_146, 1, x_145); +x_147 = l_Lean_mkConst(x_144, x_146); +x_148 = l_Lean_mkApp4(x_147, x_1, x_2, x_140, x_142); +x_149 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4)); +x_150 = l_Lean_Name_append(x_5, x_149); +x_151 = lean_alloc_closure((void*)(l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_151, 0, x_148); +lean_closure_set(x_151, 1, x_150); +x_152 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_151, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_152; +} +else +{ +lean_object* x_153; lean_object* x_154; +lean_dec(x_143); +x_153 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__7)); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_154 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_153, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_154) == 0) +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_155 = lean_ctor_get(x_154, 0); +lean_inc(x_155); +lean_dec_ref(x_154); +x_156 = lean_box(x_137); +lean_inc(x_5); +lean_inc_ref(x_2); +lean_inc(x_15); +lean_inc(x_142); +lean_inc(x_140); +x_157 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___boxed), 15, 7); +lean_closure_set(x_157, 0, x_140); +lean_closure_set(x_157, 1, x_142); +lean_closure_set(x_157, 2, x_156); +lean_closure_set(x_157, 3, x_136); +lean_closure_set(x_157, 4, x_15); +lean_closure_set(x_157, 5, x_2); +lean_closure_set(x_157, 6, x_5); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_158 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33___redArg(x_155, x_1, x_157, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_159 = lean_ctor_get(x_158, 0); +lean_inc(x_159); +lean_dec_ref(x_158); +x_160 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__9___closed__1)); +x_161 = lean_unsigned_to_nat(1u); +x_162 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_162, 0, x_160); +lean_closure_set(x_162, 1, x_161); +lean_closure_set(x_162, 2, x_140); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_163 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_162, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +lean_dec_ref(x_163); +x_165 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___lam__6___boxed), 11, 3); +lean_closure_set(x_165, 0, x_160); +lean_closure_set(x_165, 1, x_161); +lean_closure_set(x_165, 2, x_142); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_166 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_165, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_166) == 0) +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; +x_167 = lean_ctor_get(x_166, 0); +lean_inc(x_167); +lean_dec_ref(x_166); +x_168 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__10)); +x_169 = l_Lean_Name_append(x_5, x_168); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +x_170 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28(x_15, x_2, x_164, x_167, x_169, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +lean_dec_ref(x_170); +x_172 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__12)); +x_173 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8; +x_174 = lean_array_push(x_173, x_159); +x_175 = lean_array_push(x_174, x_171); +x_176 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__2___boxed), 10, 2); +lean_closure_set(x_176, 0, x_172); +lean_closure_set(x_176, 1, x_175); +x_177 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_176, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +return x_177; +} +else +{ +lean_dec(x_159); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +return x_170; +} +} +else +{ +lean_dec(x_164); +lean_dec(x_159); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_166; +} +} +else +{ +lean_dec(x_159); +lean_dec(x_142); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_163; +} +} +else +{ +lean_dec(x_142); +lean_dec(x_140); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +return x_158; +} +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_dec(x_142); +lean_dec(x_140); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_178 = lean_ctor_get(x_154, 0); +lean_inc(x_178); +if (lean_is_exclusive(x_154)) { + lean_ctor_release(x_154, 0); + x_179 = x_154; +} else { + lean_dec_ref(x_154); + x_179 = lean_box(0); +} +if (lean_is_scalar(x_179)) { + x_180 = lean_alloc_ctor(1, 1, 0); +} else { + x_180 = x_179; +} +lean_ctor_set(x_180, 0, x_178); +return x_180; +} +} +} +else +{ +lean_dec(x_140); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_141; +} +} +else +{ +lean_dec_ref(x_135); +lean_dec(x_15); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_139; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +lean_dec_ref(x_135); +lean_dec_ref(x_134); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +x_181 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__8)); +x_182 = lean_box(0); +x_183 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_183, 0, x_15); +lean_ctor_set(x_183, 1, x_182); +x_184 = l_Lean_mkConst(x_181, x_183); +x_185 = l_Lean_mkApp3(x_184, x_1, x_2, x_4); +if (lean_is_scalar(x_16)) { + x_186 = lean_alloc_ctor(0, 1, 0); +} else { + x_186 = x_16; +} +lean_ctor_set(x_186, 0, x_185); +return x_186; +} +} +} +} +else +{ +uint8_t x_202; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_202 = !lean_is_exclusive(x_14); +if (x_202 == 0) +{ +return x_14; +} +else +{ +lean_object* x_203; lean_object* x_204; +x_203 = lean_ctor_get(x_14, 0); +lean_inc(x_203); +lean_dec(x_14); +x_204 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_204, 0, x_203); +return x_204; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___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) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__0)); +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_25; @@ -38423,7 +36608,7 @@ lean_inc_ref(x_14); lean_inc(x_13); lean_inc_ref(x_12); lean_inc_ref(x_10); -x_38 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__13(x_30, x_36, x_37, x_35, x_10, x_11, x_12, x_13, x_14, x_15); +x_38 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__15(x_30, x_36, x_37, x_35, x_10, x_11, x_12, x_13, x_14, x_15); if (lean_obj_tag(x_38) == 0) { lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; @@ -38653,7 +36838,7 @@ lean_inc_ref(x_70); x_71 = l_Lean_Expr_appFnCleanup___redArg(x_68); x_72 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1)); x_73 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2)); -x_74 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__3)); +x_74 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__3)); x_75 = l_Lean_Expr_isConstOf(x_71, x_74); if (x_75 == 0) { @@ -38695,7 +36880,7 @@ lean_inc_ref(x_67); x_79 = l_Lean_mkApp5(x_78, x_70, x_67, x_64, x_61, x_58); lean_inc_ref(x_79); lean_inc_ref(x_2); -x_80 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__3___boxed), 10, 2); +x_80 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__3___boxed), 10, 2); lean_closure_set(x_80, 0, x_2); lean_closure_set(x_80, 1, x_79); lean_inc(x_15); @@ -38706,15 +36891,15 @@ lean_inc_ref(x_10); x_81 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_80, x_10, x_11, x_12, x_13, x_14, x_15); if (lean_obj_tag(x_81) == 0) { -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; uint8_t x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_141; uint8_t x_142; lean_object* x_143; uint8_t x_144; lean_object* x_145; uint8_t x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_373; +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; uint8_t x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; 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_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_373; x_82 = lean_ctor_get(x_81, 0); lean_inc(x_82); lean_dec_ref(x_81); x_83 = l_Lean_Expr_consumeMData(x_48); x_84 = l_Lean_Expr_getAppNumArgs(x_83); -x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__2___boxed), 9, 1); +x_85 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__2___boxed), 9, 1); lean_closure_set(x_85, 0, x_52); -x_86 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__2___boxed), 9, 1); +x_86 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__2___boxed), 9, 1); lean_closure_set(x_86, 0, x_55); x_87 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; lean_inc(x_84); @@ -38736,7 +36921,7 @@ lean_object* x_374; lean_object* x_375; lean_object* x_376; x_374 = lean_box(0); lean_inc(x_32); lean_inc_ref(x_2); -x_375 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__7___boxed), 13, 5); +x_375 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__7___boxed), 13, 5); lean_closure_set(x_375, 0, x_374); lean_closure_set(x_375, 1, x_2); lean_closure_set(x_375, 2, x_79); @@ -38821,7 +37006,7 @@ goto block_372; block_122: { lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_109 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4)); +x_109 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4)); x_110 = lean_box(0); if (lean_is_scalar(x_29)) { x_111 = lean_alloc_ctor(1, 2, 0); @@ -38833,34 +37018,34 @@ lean_ctor_set(x_111, 0, x_45); lean_ctor_set(x_111, 1, x_110); lean_inc_ref(x_111); x_112 = l_Lean_mkConst(x_109, x_111); -lean_inc_ref(x_100); +lean_inc_ref(x_105); lean_inc_ref(x_2); lean_inc_ref(x_61); lean_inc_ref(x_67); lean_inc_ref(x_112); -x_113 = l_Lean_mkApp4(x_112, x_67, x_61, x_2, x_100); +x_113 = l_Lean_mkApp4(x_112, x_67, x_61, x_2, x_105); lean_inc(x_92); lean_inc_ref(x_2); lean_inc_ref(x_61); lean_inc_ref(x_67); x_114 = l_Lean_mkApp4(x_112, x_67, x_61, x_2, x_92); lean_inc(x_92); -lean_inc_ref(x_100); +lean_inc_ref(x_105); lean_inc_ref(x_67); lean_inc_ref(x_61); -x_115 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19(x_61, x_67, x_100, x_92, x_108, x_99, x_105, x_106, x_104, x_103, x_98); +x_115 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21(x_61, x_67, x_105, x_92, x_108, x_107, x_98, x_106, x_101, x_99, x_104); if (lean_obj_tag(x_115) == 0) { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; x_116 = lean_ctor_get(x_115, 0); lean_inc(x_116); lean_dec_ref(x_115); -x_117 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__6)); +x_117 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__6)); lean_inc_ref(x_111); x_118 = l_Lean_mkConst(x_117, x_111); -x_119 = l_Lean_mkApp6(x_118, x_67, x_61, x_2, x_100, x_92, x_116); -x_120 = lean_box(x_97); -x_121 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__6___boxed), 11, 10); +x_119 = l_Lean_mkApp6(x_118, x_67, x_61, x_2, x_105, x_92, x_116); +x_120 = lean_box(x_96); +x_121 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__6___boxed), 11, 10); lean_closure_set(x_121, 0, x_72); lean_closure_set(x_121, 1, x_73); lean_closure_set(x_121, 2, x_111); @@ -38870,9 +37055,9 @@ lean_closure_set(x_121, 5, x_120); lean_closure_set(x_121, 6, x_114); lean_closure_set(x_121, 7, x_119); lean_closure_set(x_121, 8, x_46); -lean_closure_set(x_121, 9, x_96); -x_17 = x_101; -x_18 = x_107; +lean_closure_set(x_121, 9, x_97); +x_17 = x_100; +x_18 = x_102; x_19 = x_121; x_20 = lean_box(0); goto block_24; @@ -38882,10 +37067,10 @@ else lean_dec_ref(x_114); lean_dec_ref(x_113); lean_dec_ref(x_111); -lean_dec_ref(x_107); -lean_dec_ref(x_101); +lean_dec_ref(x_105); +lean_dec_ref(x_102); lean_dec_ref(x_100); -lean_dec_ref(x_96); +lean_dec_ref(x_97); lean_dec_ref(x_95); lean_dec(x_92); lean_dec_ref(x_67); @@ -38897,7 +37082,7 @@ return x_115; } block_140: { -if (x_128 == 0) +if (x_129 == 0) { if (x_75 == 0) { @@ -38907,8 +37092,8 @@ lean_dec(x_134); lean_dec_ref(x_133); lean_dec(x_132); lean_dec_ref(x_131); -lean_dec_ref(x_126); -lean_dec_ref(x_123); +lean_dec_ref(x_128); +lean_dec_ref(x_124); lean_dec_ref(x_95); lean_dec(x_92); lean_dec_ref(x_67); @@ -38919,50 +37104,50 @@ lean_dec(x_29); lean_dec(x_6); lean_dec_ref(x_2); x_17 = x_130; -x_18 = x_129; -x_19 = x_125; +x_18 = x_125; +x_19 = x_126; x_20 = lean_box(0); goto block_24; } else { -lean_dec_ref(x_125); +lean_dec_ref(x_126); if (x_127 == 0) { if (x_75 == 0) { x_96 = x_123; x_97 = x_124; -x_98 = x_136; -x_99 = x_131; -x_100 = x_126; -x_101 = x_130; -x_102 = lean_box(0); -x_103 = x_135; -x_104 = x_134; -x_105 = x_132; +x_98 = x_132; +x_99 = x_135; +x_100 = x_130; +x_101 = x_134; +x_102 = x_125; +x_103 = lean_box(0); +x_104 = x_136; +x_105 = x_128; x_106 = x_133; -x_107 = x_129; +x_107 = x_131; x_108 = x_6; goto block_122; } else { lean_object* x_138; lean_object* x_139; -x_138 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19___closed__3)); +x_138 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__4)); x_139 = l_Lean_Name_append(x_6, x_138); x_96 = x_123; x_97 = x_124; -x_98 = x_136; -x_99 = x_131; -x_100 = x_126; -x_101 = x_130; -x_102 = lean_box(0); -x_103 = x_135; -x_104 = x_134; -x_105 = x_132; +x_98 = x_132; +x_99 = x_135; +x_100 = x_130; +x_101 = x_134; +x_102 = x_125; +x_103 = lean_box(0); +x_104 = x_136; +x_105 = x_128; x_106 = x_133; -x_107 = x_129; +x_107 = x_131; x_108 = x_139; goto block_122; } @@ -38971,16 +37156,16 @@ else { x_96 = x_123; x_97 = x_124; -x_98 = x_136; -x_99 = x_131; -x_100 = x_126; -x_101 = x_130; -x_102 = lean_box(0); -x_103 = x_135; -x_104 = x_134; -x_105 = x_132; +x_98 = x_132; +x_99 = x_135; +x_100 = x_130; +x_101 = x_134; +x_102 = x_125; +x_103 = lean_box(0); +x_104 = x_136; +x_105 = x_128; x_106 = x_133; -x_107 = x_129; +x_107 = x_131; x_108 = x_6; goto block_122; } @@ -38994,8 +37179,8 @@ lean_dec(x_134); lean_dec_ref(x_133); lean_dec(x_132); lean_dec_ref(x_131); -lean_dec_ref(x_126); -lean_dec_ref(x_123); +lean_dec_ref(x_128); +lean_dec_ref(x_124); lean_dec_ref(x_95); lean_dec(x_92); lean_dec_ref(x_67); @@ -39006,8 +37191,8 @@ lean_dec(x_29); lean_dec(x_6); lean_dec_ref(x_2); x_17 = x_130; -x_18 = x_129; -x_19 = x_125; +x_18 = x_125; +x_19 = x_126; x_20 = lean_box(0); goto block_24; } @@ -39015,7 +37200,7 @@ goto block_24; block_165: { lean_object* x_157; lean_object* x_158; -lean_inc_ref(x_155); +lean_inc_ref(x_153); lean_inc_ref(x_47); lean_inc_ref(x_46); lean_inc(x_45); @@ -39027,20 +37212,20 @@ if (lean_is_scalar(x_49)) { lean_ctor_set(x_157, 0, x_45); lean_ctor_set(x_157, 1, x_46); lean_ctor_set(x_157, 2, x_47); -lean_ctor_set(x_157, 3, x_155); +lean_ctor_set(x_157, 3, x_153); lean_inc(x_154); +lean_inc_ref(x_147); +lean_inc(x_144); lean_inc_ref(x_143); -lean_inc(x_153); -lean_inc_ref(x_145); -lean_inc_ref(x_148); -x_158 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20(x_157, x_156, x_8, x_148, x_149, x_145, x_153, x_143, x_154); +lean_inc_ref(x_151); +x_158 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22(x_157, x_156, x_8, x_151, x_150, x_143, x_144, x_147, x_154); if (lean_obj_tag(x_158) == 0) { lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; x_159 = lean_ctor_get(x_158, 0); lean_inc(x_159); lean_dec_ref(x_158); -x_160 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__7)); +x_160 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__7)); x_161 = lean_box(0); lean_inc(x_45); if (lean_is_scalar(x_31)) { @@ -39057,39 +37242,39 @@ x_164 = lean_alloc_closure((void*)(l_Lean_mkApp6), 7, 6); lean_closure_set(x_164, 0, x_163); lean_closure_set(x_164, 1, x_46); lean_closure_set(x_164, 2, x_47); -lean_closure_set(x_164, 3, x_155); +lean_closure_set(x_164, 3, x_153); lean_closure_set(x_164, 4, x_48); lean_closure_set(x_164, 5, x_159); x_123 = x_141; x_124 = x_142; -x_125 = x_150; -x_126 = x_151; -x_127 = x_144; -x_128 = x_146; -x_129 = x_147; +x_125 = x_152; +x_126 = x_145; +x_127 = x_146; +x_128 = x_149; +x_129 = x_155; x_130 = x_164; -x_131 = x_148; -x_132 = x_149; -x_133 = x_145; -x_134 = x_153; -x_135 = x_143; +x_131 = x_151; +x_132 = x_150; +x_133 = x_143; +x_134 = x_144; +x_135 = x_147; x_136 = x_154; x_137 = lean_box(0); goto block_140; } else { -lean_dec_ref(x_155); lean_dec(x_154); -lean_dec(x_153); +lean_dec_ref(x_153); +lean_dec_ref(x_152); lean_dec_ref(x_151); -lean_dec_ref(x_150); -lean_dec(x_149); -lean_dec_ref(x_148); +lean_dec(x_150); +lean_dec_ref(x_149); lean_dec_ref(x_147); lean_dec_ref(x_145); +lean_dec(x_144); lean_dec_ref(x_143); -lean_dec_ref(x_141); +lean_dec_ref(x_142); lean_dec_ref(x_95); lean_dec(x_92); lean_dec_ref(x_67); @@ -39113,7 +37298,7 @@ lean_inc_ref(x_170); lean_inc(x_169); lean_inc_ref(x_168); lean_inc_ref(x_166); -x_173 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18(x_75, x_33, x_58, x_30, x_36, x_37, x_35, x_166, x_167, x_168, x_169, x_170, x_171); +x_173 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20(x_75, x_33, x_58, x_30, x_36, x_37, x_35, x_166, x_167, x_168, x_169, x_170, x_171); lean_dec(x_30); if (lean_obj_tag(x_173) == 0) { @@ -39167,7 +37352,7 @@ x_194 = l_Lean_Meta_Context_configKey(x_168); x_195 = 2; x_196 = lean_uint64_shift_right(x_194, x_195); x_197 = lean_uint64_shift_left(x_196, x_195); -x_198 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; +x_198 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; x_199 = lean_uint64_lor(x_197, x_198); x_200 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_200, 0, x_181); @@ -39198,7 +37383,7 @@ if (x_203 == 0) lean_object* x_204; uint64_t x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_inc_ref(x_47); lean_inc_ref(x_179); -x_204 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5___boxed), 10, 2); +x_204 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5___boxed), 10, 2); lean_closure_set(x_204, 0, x_179); lean_closure_set(x_204, 1, x_47); lean_ctor_set_uint8(x_202, 0, x_75); @@ -39241,7 +37426,7 @@ lean_inc(x_209); lean_dec_ref(x_208); lean_inc(x_92); lean_inc(x_177); -x_210 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4___boxed), 10, 2); +x_210 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4___boxed), 10, 2); lean_closure_set(x_210, 0, x_177); lean_closure_set(x_210, 1, x_92); lean_inc(x_171); @@ -39270,13 +37455,13 @@ lean_dec(x_209); x_215 = lean_unbox(x_213); lean_dec(x_213); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_214; -x_128 = x_215; -x_129 = x_180; +x_128 = x_177; +x_129 = x_215; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -39305,28 +37490,28 @@ x_219 = lean_unbox(x_216); lean_dec(x_216); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_218; -x_145 = x_168; -x_146 = x_219; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_218; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_219; x_156 = x_6; goto block_165; } else { lean_object* x_220; lean_object* x_221; uint8_t x_222; uint8_t x_223; -x_220 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9)); +x_220 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9)); lean_inc(x_6); x_221 = l_Lean_Name_append(x_6, x_220); x_222 = lean_unbox(x_209); @@ -39334,21 +37519,21 @@ lean_dec(x_209); x_223 = lean_unbox(x_216); lean_dec(x_216); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_222; -x_145 = x_168; -x_146 = x_223; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_222; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_223; x_156 = x_221; goto block_165; } @@ -39362,21 +37547,21 @@ x_225 = lean_unbox(x_216); lean_dec(x_216); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_224; -x_145 = x_168; -x_146 = x_225; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_224; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_225; x_156 = x_6; goto block_165; } @@ -39397,13 +37582,13 @@ lean_dec(x_209); x_228 = lean_unbox(x_226); lean_dec(x_226); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_227; -x_128 = x_228; -x_129 = x_180; +x_128 = x_177; +x_129 = x_228; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -39524,7 +37709,7 @@ x_249 = lean_ctor_get_uint8(x_202, 18); lean_dec(x_202); lean_inc_ref(x_47); lean_inc_ref(x_179); -x_250 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5___boxed), 10, 2); +x_250 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5___boxed), 10, 2); lean_closure_set(x_250, 0, x_179); lean_closure_set(x_250, 1, x_47); x_251 = lean_alloc_ctor(0, 0, 19); @@ -39583,7 +37768,7 @@ lean_inc(x_256); lean_dec_ref(x_255); lean_inc(x_92); lean_inc(x_177); -x_257 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4___boxed), 10, 2); +x_257 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4___boxed), 10, 2); lean_closure_set(x_257, 0, x_177); lean_closure_set(x_257, 1, x_92); lean_inc(x_171); @@ -39612,13 +37797,13 @@ lean_dec(x_256); x_262 = lean_unbox(x_260); lean_dec(x_260); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_261; -x_128 = x_262; -x_129 = x_180; +x_128 = x_177; +x_129 = x_262; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -39647,28 +37832,28 @@ x_266 = lean_unbox(x_263); lean_dec(x_263); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_265; -x_145 = x_168; -x_146 = x_266; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_265; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_266; x_156 = x_6; goto block_165; } else { lean_object* x_267; lean_object* x_268; uint8_t x_269; uint8_t x_270; -x_267 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9)); +x_267 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9)); lean_inc(x_6); x_268 = l_Lean_Name_append(x_6, x_267); x_269 = lean_unbox(x_256); @@ -39676,21 +37861,21 @@ lean_dec(x_256); x_270 = lean_unbox(x_263); lean_dec(x_263); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_269; -x_145 = x_168; -x_146 = x_270; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_269; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_270; x_156 = x_268; goto block_165; } @@ -39704,21 +37889,21 @@ x_272 = lean_unbox(x_263); lean_dec(x_263); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_271; -x_145 = x_168; -x_146 = x_272; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_271; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_272; x_156 = x_6; goto block_165; } @@ -39739,13 +37924,13 @@ lean_dec(x_256); x_275 = lean_unbox(x_273); lean_dec(x_273); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_274; -x_128 = x_275; -x_129 = x_180; +x_128 = x_177; +x_129 = x_275; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -39905,7 +38090,7 @@ x_312 = l_Lean_Meta_Context_configKey(x_168); x_313 = 2; x_314 = lean_uint64_shift_right(x_312, x_313); x_315 = lean_uint64_shift_left(x_314, x_313); -x_316 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15; +x_316 = l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15; x_317 = lean_uint64_lor(x_315, x_316); x_318 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_318, 0, x_311); @@ -39953,7 +38138,7 @@ if (lean_is_exclusive(x_320)) { } lean_inc_ref(x_47); lean_inc_ref(x_179); -x_337 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__5___boxed), 10, 2); +x_337 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__5___boxed), 10, 2); lean_closure_set(x_337, 0, x_179); lean_closure_set(x_337, 1, x_47); if (lean_is_scalar(x_336)) { @@ -40016,7 +38201,7 @@ lean_inc(x_343); lean_dec_ref(x_342); lean_inc(x_92); lean_inc(x_177); -x_344 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__4___boxed), 10, 2); +x_344 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__4___boxed), 10, 2); lean_closure_set(x_344, 0, x_177); lean_closure_set(x_344, 1, x_92); lean_inc(x_171); @@ -40045,13 +38230,13 @@ lean_dec(x_343); x_349 = lean_unbox(x_347); lean_dec(x_347); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_348; -x_128 = x_349; -x_129 = x_180; +x_128 = x_177; +x_129 = x_349; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -40080,28 +38265,28 @@ x_353 = lean_unbox(x_350); lean_dec(x_350); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_352; -x_145 = x_168; -x_146 = x_353; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_352; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_353; x_156 = x_6; goto block_165; } else { lean_object* x_354; lean_object* x_355; uint8_t x_356; uint8_t x_357; -x_354 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__9)); +x_354 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__9)); lean_inc(x_6); x_355 = l_Lean_Name_append(x_6, x_354); x_356 = lean_unbox(x_343); @@ -40109,21 +38294,21 @@ lean_dec(x_343); x_357 = lean_unbox(x_350); lean_dec(x_350); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_356; -x_145 = x_168; -x_146 = x_357; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_356; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_357; x_156 = x_355; goto block_165; } @@ -40137,21 +38322,21 @@ x_359 = lean_unbox(x_350); lean_dec(x_350); lean_inc(x_6); lean_inc_ref(x_179); -x_141 = x_179; -x_142 = x_178; -x_143 = x_170; -x_144 = x_358; -x_145 = x_168; -x_146 = x_359; -x_147 = x_180; -x_148 = x_166; -x_149 = x_167; -x_150 = x_7; -x_151 = x_177; -x_152 = lean_box(0); -x_153 = x_169; +x_141 = x_178; +x_142 = x_179; +x_143 = x_168; +x_144 = x_169; +x_145 = x_7; +x_146 = x_358; +x_147 = x_170; +x_148 = lean_box(0); +x_149 = x_177; +x_150 = x_167; +x_151 = x_166; +x_152 = x_180; +x_153 = x_179; x_154 = x_171; -x_155 = x_179; +x_155 = x_359; x_156 = x_6; goto block_165; } @@ -40172,13 +38357,13 @@ lean_dec(x_343); x_362 = lean_unbox(x_360); lean_dec(x_360); lean_inc_ref(x_7); -x_123 = x_179; -x_124 = x_178; -x_125 = x_7; -x_126 = x_177; +x_123 = x_178; +x_124 = x_179; +x_125 = x_180; +x_126 = x_7; x_127 = x_361; -x_128 = x_362; -x_129 = x_180; +x_128 = x_177; +x_129 = x_362; x_130 = x_7; x_131 = x_166; x_132 = x_167; @@ -40436,7 +38621,7 @@ return x_382; block_44: { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_39 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1; +x_39 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1; x_40 = l_Lean_MessageData_ofExpr(x_33); if (lean_is_scalar(x_34)) { x_41 = lean_alloc_ctor(7, 2, 0); @@ -40446,7 +38631,7 @@ if (lean_is_scalar(x_34)) { } lean_ctor_set(x_41, 0, x_39); lean_ctor_set(x_41, 1, x_40); -x_42 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___lam__4___boxed), 9, 1); +x_42 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4___boxed), 9, 1); lean_closure_set(x_42, 0, x_41); x_43 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_42, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_11); @@ -40533,36 +38718,17 @@ return x_23; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; lean_object* x_18; x_17 = lean_unbox(x_8); -x_18 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_3); return x_18; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(x_1, x_5, x_6, x_7, x_8); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__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) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9(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) { _start: { lean_object* x_10; @@ -40570,24 +38736,43 @@ x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Ta return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1() { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecProof_instantiate(x_1, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__0)); +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__0)); x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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) { _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; lean_object* x_21; lean_object* x_22; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; @@ -40596,19 +38781,19 @@ x_15 = l_Lean_Expr_consumeMData(x_14); x_45 = l_Lean_Expr_getAppFn(x_15); x_46 = l_Lean_Expr_constName_x21(x_45); lean_dec_ref(x_45); -x_47 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4)); +x_47 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4)); x_48 = lean_name_eq(x_46, x_47); lean_dec(x_46); if (x_48 == 0) { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_49 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1; +x_49 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1; lean_inc_ref(x_15); x_50 = l_Lean_indentExpr(x_15); x_51 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); -x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__10___boxed), 9, 1); +x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__10___boxed), 9, 1); lean_closure_set(x_52, 0, x_51); lean_inc(x_12); lean_inc_ref(x_11); @@ -40701,11 +38886,11 @@ lean_inc_ref(x_31); x_32 = lean_ctor_get(x_30, 3); lean_inc(x_32); lean_dec(x_30); -x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__1___boxed), 9, 1); +x_33 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__1___boxed), 9, 1); lean_closure_set(x_33, 0, x_31); x_34 = lean_unsigned_to_nat(4u); x_35 = lean_box(x_5); -x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___boxed), 16, 8); +x_36 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___boxed), 16, 8); lean_closure_set(x_36, 0, x_33); lean_closure_set(x_36, 1, x_28); lean_closure_set(x_36, 2, x_26); @@ -40714,14 +38899,14 @@ lean_closure_set(x_36, 4, x_34); lean_closure_set(x_36, 5, x_3); lean_closure_set(x_36, 6, x_4); lean_closure_set(x_36, 7, x_35); -x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__9___boxed), 9, 1); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__9___boxed), 9, 1); lean_closure_set(x_37, 0, x_36); x_38 = lean_nat_sub(x_24, x_34); lean_dec(x_24); x_39 = lean_nat_sub(x_32, x_38); lean_dec(x_38); lean_dec(x_32); -x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_6, x_39, x_37, x_16, x_17, x_18, x_19, x_20, x_21); +x_40 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_6, x_39, x_37, x_16, x_17, x_18, x_19, x_20, x_21); lean_dec(x_39); return x_40; } @@ -40759,24 +38944,40 @@ return x_43; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___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) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___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: { uint8_t x_14; lean_object* x_15; x_14 = lean_unbox(x_5); -x_15 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11(x_1, x_2, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11(x_1, x_2, x_3, x_4, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(lean_object* x_1) { +_start: +{ +lean_inc_ref(x_1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; x_12 = lean_ctor_get(x_1, 3); -x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___closed__0)); +x_13 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___closed__0)); x_14 = l_Lean_instInhabitedExpr; x_15 = lean_box(x_4); -x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___boxed), 13, 5); +x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___boxed), 13, 5); lean_closure_set(x_16, 0, x_2); lean_closure_set(x_16, 1, x_14); lean_closure_set(x_16, 2, x_3); @@ -40785,17 +38986,17 @@ lean_closure_set(x_16, 4, x_15); x_17 = l_Lean_Expr_consumeMData(x_12); x_18 = l_Lean_Expr_getNumHeadLambdas(x_17); lean_dec_ref(x_17); -x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_1, x_18, x_16, x_5, x_6, x_7, x_8, x_9, x_10); +x_19 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12(x_1, x_18, x_16, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_18); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } @@ -40804,7 +39005,7 @@ _start: { uint8_t x_11; lean_object* x_12; x_11 = 0; -x_12 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_3, x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11(x_3, x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9); return x_12; } } @@ -40816,154 +39017,206 @@ x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs return x_11; } } -static lean_object* _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2() { +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(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) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__1)); -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} -static lean_object* _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3() { -_start: +lean_object* x_9; lean_object* x_10; +x_9 = ((lean_object*)(l_Lean_instantiateMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__2___closed__0)); +x_10 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_9, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) { -lean_object* x_1; lean_object* x_2; -x_1 = lean_box(1); -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(lean_object* x_1, lean_object* x_2) { -_start: +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_3; -x_3 = l_List_reverse___redArg(x_2); -return x_3; +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_12, 7); +lean_inc_ref(x_13); +lean_dec(x_12); +x_14 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_13, x_1); +x_15 = lean_box(x_14); +lean_ctor_set(x_10, 0, x_15); +return x_10; } else { -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_ctor_get(x_1, 0); -x_6 = !lean_is_exclusive(x_5); -if (x_6 == 0) -{ -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; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_7 = lean_ctor_get(x_1, 1); -x_8 = lean_ctor_get(x_5, 0); -x_9 = lean_ctor_get(x_5, 1); -x_10 = l_Lean_MessageData_ofName(x_8); -x_11 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2; -lean_ctor_set_tag(x_5, 7); -lean_ctor_set(x_5, 1, x_11); -lean_ctor_set(x_5, 0, x_10); -x_12 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3; -x_13 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_13, 0, x_5); -lean_ctor_set(x_13, 1, x_12); -x_14 = l_Lean_MessageData_ofExpr(x_9); -x_15 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_MessageData_paren(x_15); -lean_ctor_set(x_1, 1, x_2); -lean_ctor_set(x_1, 0, x_16); -{ -lean_object* _tmp_0 = x_7; -lean_object* _tmp_1 = x_1; -x_1 = _tmp_0; -x_2 = _tmp_1; -} -goto _start; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; -x_18 = lean_ctor_get(x_1, 1); -x_19 = lean_ctor_get(x_5, 0); -x_20 = lean_ctor_get(x_5, 1); -lean_inc(x_20); -lean_inc(x_19); -lean_dec(x_5); -x_21 = l_Lean_MessageData_ofName(x_19); -x_22 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2; -x_23 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -x_24 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3; -x_25 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_MessageData_ofExpr(x_20); -x_27 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_MessageData_paren(x_27); -lean_ctor_set(x_1, 1, x_2); -lean_ctor_set(x_1, 0, x_28); -{ -lean_object* _tmp_0 = x_18; -lean_object* _tmp_1 = x_1; -x_1 = _tmp_0; -x_2 = _tmp_1; -} -goto _start; +lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_ctor_get(x_10, 0); +lean_inc(x_16); +lean_dec(x_10); +x_17 = lean_ctor_get(x_16, 7); +lean_inc_ref(x_17); +lean_dec(x_16); +x_18 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_17, x_1); +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +return x_20; } } else { -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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_30 = lean_ctor_get(x_1, 0); -x_31 = lean_ctor_get(x_1, 1); -lean_inc(x_31); -lean_inc(x_30); +uint8_t x_21; +x_21 = !lean_is_exclusive(x_10); +if (x_21 == 0) +{ +return x_10; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_10, 0); +lean_inc(x_22); +lean_dec(x_10); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_3); lean_dec(x_1); -x_32 = lean_ctor_get(x_30, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_30, 1); -lean_inc(x_33); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - lean_ctor_release(x_30, 1); - x_34 = x_30; -} else { - lean_dec_ref(x_30); - x_34 = lean_box(0); +return x_9; } -x_35 = l_Lean_MessageData_ofName(x_32); -x_36 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2; -if (lean_is_scalar(x_34)) { - x_37 = lean_alloc_ctor(7, 2, 0); -} else { - x_37 = x_34; - lean_ctor_set_tag(x_37, 7); } -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3; -x_39 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -x_40 = l_Lean_MessageData_ofExpr(x_33); -x_41 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_MessageData_paren(x_41); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_2); -x_1 = x_31; -x_2 = x_43; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(lean_object* x_1, size_t x_2, size_t 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_12; lean_object* x_13; uint8_t x_18; +x_18 = lean_usize_dec_eq(x_2, x_3); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_23; +x_19 = lean_array_uget(x_1, x_2); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_23 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_19, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; uint8_t x_25; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +lean_dec_ref(x_23); +x_25 = lean_unbox(x_24); +lean_dec(x_24); +if (x_25 == 0) +{ +x_20 = lean_box(0); +goto block_22; +} +else +{ +lean_dec(x_19); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +} +else +{ +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_26; uint8_t x_27; +x_26 = lean_ctor_get(x_23, 0); +lean_inc(x_26); +lean_dec_ref(x_23); +x_27 = lean_unbox(x_26); +lean_dec(x_26); +if (x_27 == 0) +{ +lean_dec(x_19); +x_12 = x_4; +x_13 = lean_box(0); +goto block_17; +} +else +{ +x_20 = lean_box(0); +goto block_22; +} +} +else +{ +uint8_t x_28; +lean_dec(x_19); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_28 = !lean_is_exclusive(x_23); +if (x_28 == 0) +{ +return x_23; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_23, 0); +lean_inc(x_29); +lean_dec(x_23); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +return x_30; +} +} +} +block_22: +{ +lean_object* x_21; +x_21 = lean_array_push(x_4, x_19); +x_12 = x_21; +x_13 = lean_box(0); +goto block_17; +} +} +else +{ +lean_object* x_31; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +x_31 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_31, 0, x_4); +return x_31; +} +block_17: +{ +size_t x_14; size_t x_15; +x_14 = 1; +x_15 = lean_usize_add(x_2, x_14); +x_2 = x_15; +x_4 = x_12; goto _start; } } } +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___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: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_14; +} } LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13(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) { _start: @@ -40989,7 +39242,7 @@ lean_dec_ref(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6(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) { _start: { lean_object* x_10; @@ -41006,7 +39259,7 @@ x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); lean_dec_ref(x_10); x_12 = 0; -x_13 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_11, x_2, x_12, x_3, x_4, x_5, x_6, x_7, x_8); +x_13 = l_Lean_Meta_forallTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_11, x_2, x_12, x_3, x_4, x_5, x_6, x_7, x_8); return x_13; } else @@ -41037,38 +39290,545 @@ return x_16; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6___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) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0(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) { _start: { -lean_object* x_10; -x_10 = l_Lean_MVarId_getType(x_1, x_5, x_6, x_7, x_8); -return x_10; +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0___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_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_11; +x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__4)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__6)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__8)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(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_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_26; lean_object* x_29; uint8_t x_30; +x_29 = lean_array_get_size(x_1); +x_30 = lean_nat_dec_lt(x_4, x_29); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_4); +x_31 = lean_apply_9(x_3, lean_box(0), x_2, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_array_fget_borrowed(x_1, x_4); +x_33 = l_Lean_Expr_fvarId_x21(x_32); +x_34 = lean_unsigned_to_nat(100u); +x_35 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_35, 0, x_33); +lean_closure_set(x_35, 1, x_34); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +x_38 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_39 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_38, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; uint8_t x_41; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +lean_dec_ref(x_39); +x_41 = lean_unbox(x_40); +lean_dec(x_40); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc_ref(x_2); +x_43 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__1(x_4, x_37, x_1, x_2, x_3, x_42, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_43; +goto block_28; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_37, 2); +x_45 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1; +switch (lean_obj_tag(x_44)) { +case 0: +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_56 = lean_ctor_get(x_44, 0); +x_57 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3; +lean_inc(x_56); +x_58 = l_Lean_MessageData_ofName(x_56); +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +x_46 = x_59; +goto block_55; +} +case 1: +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_60 = lean_ctor_get(x_44, 0); +x_61 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5; +lean_inc(x_60); +x_62 = l_Lean_mkFVar(x_60); +x_63 = l_Lean_MessageData_ofExpr(x_62); +x_64 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_63); +x_46 = x_64; +goto block_55; +} +default: +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_65 = lean_ctor_get(x_44, 1); +x_66 = lean_ctor_get(x_44, 2); +x_67 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7; +lean_inc(x_65); +x_68 = l_Lean_MessageData_ofSyntax(x_65); +x_69 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_69, 0, x_67); +lean_ctor_set(x_69, 1, x_68); +x_70 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9; +x_71 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +lean_inc_ref(x_66); +x_72 = l_Lean_MessageData_ofExpr(x_66); +x_73 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +x_46 = x_73; +goto block_55; +} +} +block_55: +{ +lean_object* x_47; lean_object* x_48; +x_47 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_48 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_38, x_47, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec_ref(x_48); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc_ref(x_2); +x_50 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__1(x_4, x_37, x_1, x_2, x_3, x_49, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_50; +goto block_28; +} +else +{ +uint8_t x_51; +lean_dec(x_37); +x_51 = !lean_is_exclusive(x_48); +if (x_51 == 0) +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_48, 0); +lean_inc(x_52); +x_20 = x_48; +x_21 = x_52; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_48, 0); +lean_inc(x_53); +lean_dec(x_48); +lean_inc(x_53); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_53); +x_20 = x_54; +x_21 = x_53; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_37); +x_74 = !lean_is_exclusive(x_39); +if (x_74 == 0) +{ +lean_object* x_75; +x_75 = lean_ctor_get(x_39, 0); +lean_inc(x_75); +x_20 = x_39; +x_21 = x_75; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_39, 0); +lean_inc(x_76); +lean_dec(x_39); +lean_inc(x_76); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +x_20 = x_77; +x_21 = x_76; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +uint8_t x_78; +x_78 = !lean_is_exclusive(x_36); +if (x_78 == 0) +{ +lean_object* x_79; +x_79 = lean_ctor_get(x_36, 0); +lean_inc(x_79); +x_20 = x_36; +x_21 = x_79; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_80; lean_object* x_81; +x_80 = lean_ctor_get(x_36, 0); +lean_inc(x_80); +lean_dec(x_36); +lean_inc(x_80); +x_81 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_81, 0, x_80); +x_20 = x_81; +x_21 = x_80; +x_22 = lean_box(0); +goto block_25; +} +} +} +block_19: +{ +if (x_15 == 0) +{ +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec_ref(x_13); +lean_dec_ref(x_12); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_add(x_4, x_16); +lean_dec(x_4); +x_4 = x_17; +goto _start; +} +else +{ +lean_dec_ref(x_13); +lean_dec(x_10); +lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -lean_dec(x_2); +lean_dec_ref(x_2); +return x_12; +} +} +else +{ +lean_dec_ref(x_13); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_12; +} +} +block_25: +{ +uint8_t x_23; +x_23 = l_Lean_Exception_isInterrupt(x_21); +if (x_23 == 0) +{ +uint8_t x_24; +lean_inc_ref(x_21); +x_24 = l_Lean_Exception_isRuntime(x_21); +x_12 = x_20; +x_13 = x_21; +x_14 = lean_box(0); +x_15 = x_24; +goto block_19; +} +else +{ +x_12 = x_20; +x_13 = x_21; +x_14 = lean_box(0); +x_15 = x_23; +goto block_19; +} +} +block_28: +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_20 = x_26; +x_21 = x_27; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__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) { +_start: +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_7); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_ctor_get(x_7, 1); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_add(x_1, x_16); +x_18 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_15, x_2); +lean_ctor_set(x_7, 1, x_18); +x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(x_3, x_4, x_5, x_17, x_7, x_8, x_9, x_10, x_11, x_12); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; +x_20 = lean_ctor_get(x_7, 0); +x_21 = lean_ctor_get(x_7, 1); +x_22 = lean_ctor_get(x_7, 2); +x_23 = lean_ctor_get(x_7, 3); +x_24 = lean_ctor_get(x_7, 4); +x_25 = lean_ctor_get(x_7, 5); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_7); +x_26 = lean_unsigned_to_nat(1u); +x_27 = lean_nat_add(x_1, x_26); +x_28 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_21, x_2); +x_29 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_29, 0, x_20); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_29, 2, x_22); +lean_ctor_set(x_29, 3, x_23); +lean_ctor_set(x_29, 4, x_24); +lean_ctor_set(x_29, 5, x_25); +x_30 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(x_3, x_4, x_5, x_27, x_29, x_8, x_9, x_10, x_11, x_12); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___lam__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); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(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) { +_start: +{ +lean_object* x_10; +x_10 = lean_apply_7(x_2, x_3, x_4, x_5, x_6, x_7, x_8, lean_box(0)); return x_10; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0(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_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = ((lean_object*)(l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___closed__0)); +x_11 = lean_unsigned_to_nat(0u); +x_12 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(x_1, x_2, x_10, x_11, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_12) == 0) +{ +return x_12; +} +else +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec_ref(x_1); +return x_10; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0(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) { _start: { lean_object* x_10; @@ -41076,11 +39836,11 @@ x_10 = l_Lean_MVarId_getTag(x_1, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0___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_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0___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) { _start: { lean_object* x_10; -x_10 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -41091,252 +39851,936 @@ lean_dec(x_2); return x_10; } } -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0() { +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(lean_object* x_1) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(32u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1() { -_start: +if (lean_obj_tag(x_1) == 0) { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2() { -_start: +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) { -size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = 5; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0; -x_4 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1; -x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set_tag(x_1, 1); +return x_1; +} +else +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_5, 0, x_4); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_2); -lean_ctor_set(x_5, 3, x_2); -lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_ctor_set_tag(x_1, 0); +return x_1; +} +else +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +lean_dec(x_1); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg___boxed(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_9; uint8_t x_10; -x_9 = lean_st_ref_take(x_7); -x_10 = !lean_is_exclusive(x_9); -if (x_10 == 0) +lean_object* x_3; +x_3 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0(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) { +_start: { -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_9, 4); -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) +lean_object* x_10; uint8_t x_11; +x_10 = lean_st_ref_take(x_8); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_13 = lean_ctor_get(x_11, 0); -lean_dec(x_13); -x_14 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2; -lean_ctor_set(x_11, 0, x_14); -x_15 = lean_st_ref_set(x_7, x_9); -x_16 = lean_box(0); -x_17 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_17, 0, x_16); -return x_17; +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_10, 4); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_12, 0); +x_15 = l_Lean_PersistentArray_append___redArg(x_1, x_14); +lean_dec_ref(x_14); +lean_ctor_set(x_12, 0, x_15); +x_16 = lean_st_ref_set(x_8, x_10); +x_17 = lean_box(0); +x_18 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; } else { -uint64_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_18 = lean_ctor_get_uint64(x_11, sizeof(void*)*1); -lean_dec(x_11); -x_19 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2; -x_20 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set_uint64(x_20, sizeof(void*)*1, x_18); -lean_ctor_set(x_9, 4, x_20); -x_21 = lean_st_ref_set(x_7, x_9); -x_22 = lean_box(0); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -return x_23; +uint64_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_19 = lean_ctor_get_uint64(x_12, sizeof(void*)*1); +x_20 = lean_ctor_get(x_12, 0); +lean_inc(x_20); +lean_dec(x_12); +x_21 = l_Lean_PersistentArray_append___redArg(x_1, x_20); +lean_dec_ref(x_20); +x_22 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set_uint64(x_22, sizeof(void*)*1, x_19); +lean_ctor_set(x_10, 4, x_22); +x_23 = lean_st_ref_set(x_8, x_10); +x_24 = lean_box(0); +x_25 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_25, 0, x_24); +return x_25; } } else { -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; uint64_t 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; lean_object* x_40; -x_24 = lean_ctor_get(x_9, 4); -x_25 = lean_ctor_get(x_9, 0); -x_26 = lean_ctor_get(x_9, 1); -x_27 = lean_ctor_get(x_9, 2); -x_28 = lean_ctor_get(x_9, 3); -x_29 = lean_ctor_get(x_9, 5); -x_30 = lean_ctor_get(x_9, 6); -x_31 = lean_ctor_get(x_9, 7); -x_32 = lean_ctor_get(x_9, 8); +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; lean_object* x_34; uint64_t x_35; 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; +x_26 = lean_ctor_get(x_10, 4); +x_27 = lean_ctor_get(x_10, 0); +x_28 = lean_ctor_get(x_10, 1); +x_29 = lean_ctor_get(x_10, 2); +x_30 = lean_ctor_get(x_10, 3); +x_31 = lean_ctor_get(x_10, 5); +x_32 = lean_ctor_get(x_10, 6); +x_33 = lean_ctor_get(x_10, 7); +x_34 = lean_ctor_get(x_10, 8); +lean_inc(x_34); +lean_inc(x_33); lean_inc(x_32); lean_inc(x_31); +lean_inc(x_26); lean_inc(x_30); lean_inc(x_29); -lean_inc(x_24); lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_9); -x_33 = lean_ctor_get_uint64(x_24, sizeof(void*)*1); -if (lean_is_exclusive(x_24)) { - lean_ctor_release(x_24, 0); - x_34 = x_24; -} else { - lean_dec_ref(x_24); - x_34 = lean_box(0); -} -x_35 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2; -if (lean_is_scalar(x_34)) { - x_36 = lean_alloc_ctor(0, 1, 8); -} else { - x_36 = x_34; -} -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set_uint64(x_36, sizeof(void*)*1, x_33); -x_37 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_37, 0, x_25); -lean_ctor_set(x_37, 1, x_26); -lean_ctor_set(x_37, 2, x_27); -lean_ctor_set(x_37, 3, x_28); -lean_ctor_set(x_37, 4, x_36); -lean_ctor_set(x_37, 5, x_29); -lean_ctor_set(x_37, 6, x_30); -lean_ctor_set(x_37, 7, x_31); -lean_ctor_set(x_37, 8, x_32); -x_38 = lean_st_ref_set(x_7, x_37); -x_39 = lean_box(0); -x_40 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_40, 0, x_39); -return x_40; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__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) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec(x_1); -return x_9; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_8; lean_object* x_9; -x_8 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__27___closed__0)); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -lean_inc_ref(x_1); -x_9 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_8, x_1, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -lean_dec_ref(x_9); -x_11 = lean_ctor_get(x_10, 0); -lean_inc_ref(x_11); lean_dec(x_10); -x_12 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___closed__0)); -x_13 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_12, x_1, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_13) == 0) -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) -{ -lean_object* x_15; -x_15 = lean_ctor_get(x_13, 0); -lean_dec(x_15); -lean_ctor_set(x_13, 0, x_11); -return x_13; +x_35 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); +x_36 = lean_ctor_get(x_26, 0); +lean_inc_ref(x_36); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + x_37 = x_26; +} else { + lean_dec_ref(x_26); + x_37 = lean_box(0); } -else -{ -lean_object* x_16; -lean_dec(x_13); -x_16 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_16, 0, x_11); -return x_16; +x_38 = l_Lean_PersistentArray_append___redArg(x_1, x_36); +lean_dec_ref(x_36); +if (lean_is_scalar(x_37)) { + x_39 = lean_alloc_ctor(0, 1, 8); +} else { + x_39 = x_37; } -} -else -{ -uint8_t x_17; -lean_dec_ref(x_11); -x_17 = !lean_is_exclusive(x_13); -if (x_17 == 0) -{ -return x_13; -} -else -{ -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_13, 0); -lean_inc(x_18); -lean_dec(x_13); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_18); -return x_19; +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set_uint64(x_39, sizeof(void*)*1, x_35); +x_40 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_40, 0, x_27); +lean_ctor_set(x_40, 1, x_28); +lean_ctor_set(x_40, 2, x_29); +lean_ctor_set(x_40, 3, x_30); +lean_ctor_set(x_40, 4, x_39); +lean_ctor_set(x_40, 5, x_31); +lean_ctor_set(x_40, 6, x_32); +lean_ctor_set(x_40, 7, x_33); +lean_ctor_set(x_40, 8, x_34); +x_41 = lean_st_ref_set(x_8, x_40); +x_42 = lean_box(0); +x_43 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_43, 0, x_42); +return x_43; } } } -else +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0___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) { +_start: { -uint8_t x_20; +lean_object* x_10; +x_10 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); -lean_dec_ref(x_1); -x_20 = !lean_is_exclusive(x_9); -if (x_20 == 0) +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36(size_t x_1, size_t x_2, lean_object* x_3) { +_start: { -return x_9; +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; } else { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_9, 0); -lean_inc(x_21); -lean_dec(x_9); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -return x_22; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; lean_object* x_11; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_ctor_get(x_5, 1); +lean_inc_ref(x_6); +lean_dec(x_5); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_3, x_2, x_7); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +x_11 = lean_array_uset(x_8, x_2, x_6); +x_2 = x_10; +x_3 = x_11; +goto _start; } } } -} -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___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_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_8; -x_8 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(x_1, x_2, x_3, x_4, x_5, x_6); +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); lean_dec(x_2); +x_6 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__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_12; uint8_t x_13; +x_12 = lean_st_ref_take(x_10); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_12, 4); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_14, 0); +lean_dec(x_16); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_2); +x_18 = l_Lean_PersistentArray_push___redArg(x_3, x_17); +lean_ctor_set(x_14, 0, x_18); +x_19 = lean_st_ref_set(x_10, x_12); +x_20 = lean_box(0); +x_21 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_21, 0, x_20); +return x_21; +} +else +{ +uint64_t 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; +x_22 = lean_ctor_get_uint64(x_14, sizeof(void*)*1); +lean_dec(x_14); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_2); +x_24 = l_Lean_PersistentArray_push___redArg(x_3, x_23); +x_25 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set_uint64(x_25, sizeof(void*)*1, x_22); +lean_ctor_set(x_12, 4, x_25); +x_26 = lean_st_ref_set(x_10, x_12); +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_28, 0, x_27); +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; uint64_t 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; lean_object* x_45; lean_object* x_46; +x_29 = lean_ctor_get(x_12, 4); +x_30 = lean_ctor_get(x_12, 0); +x_31 = lean_ctor_get(x_12, 1); +x_32 = lean_ctor_get(x_12, 2); +x_33 = lean_ctor_get(x_12, 3); +x_34 = lean_ctor_get(x_12, 5); +x_35 = lean_ctor_get(x_12, 6); +x_36 = lean_ctor_get(x_12, 7); +x_37 = lean_ctor_get(x_12, 8); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_29); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_12); +x_38 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + x_39 = x_29; +} else { + lean_dec_ref(x_29); + x_39 = lean_box(0); +} +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_1); +lean_ctor_set(x_40, 1, x_2); +x_41 = l_Lean_PersistentArray_push___redArg(x_3, x_40); +if (lean_is_scalar(x_39)) { + x_42 = lean_alloc_ctor(0, 1, 8); +} else { + x_42 = x_39; +} +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set_uint64(x_42, sizeof(void*)*1, x_38); +x_43 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_43, 0, x_30); +lean_ctor_set(x_43, 1, x_31); +lean_ctor_set(x_43, 2, x_32); +lean_ctor_set(x_43, 3, x_33); +lean_ctor_set(x_43, 4, x_42); +lean_ctor_set(x_43, 5, x_34); +lean_ctor_set(x_43, 6, x_35); +lean_ctor_set(x_43, 7, x_36); +lean_ctor_set(x_43, 8, x_37); +x_44 = lean_st_ref_set(x_10, x_43); +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_46, 0, x_45); +return x_46; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__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, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29(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: +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_9); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_9, 5); +x_14 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0)); +x_15 = l_Lean_replaceRef(x_3, x_13); +lean_dec(x_13); +lean_ctor_set(x_9, 5, x_15); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_14, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = lean_ctor_get(x_17, 0); +lean_inc_ref(x_18); +lean_dec(x_17); +x_19 = l_Lean_PersistentArray_toArray___redArg(x_18); +lean_dec_ref(x_18); +x_20 = lean_array_size(x_19); +x_21 = 0; +x_22 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36(x_20, x_21, x_19); +x_23 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_23, 0, x_2); +lean_ctor_set(x_23, 1, x_4); +lean_ctor_set(x_23, 2, x_22); +x_24 = lean_alloc_closure((void*)(l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_24, 0, x_23); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec_ref(x_25); +x_27 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__2___boxed), 11, 3); +lean_closure_set(x_27, 0, x_3); +lean_closure_set(x_27, 1, x_26); +lean_closure_set(x_27, 2, x_1); +x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_27, x_5, x_6, x_7, x_8, x_9, x_10); +return x_28; +} +else +{ +uint8_t x_29; +lean_dec_ref(x_9); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_1); +x_29 = !lean_is_exclusive(x_25); +if (x_29 == 0) +{ +return x_25; +} +else +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_25, 0); +lean_inc(x_30); +lean_dec(x_25); +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +return x_31; +} +} +} +else +{ +uint8_t x_32; +lean_dec_ref(x_9); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_32 = !lean_is_exclusive(x_16); +if (x_32 == 0) +{ +return x_16; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_16, 0); +lean_inc(x_33); +lean_dec(x_16); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +} +} +else +{ +lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_35 = lean_ctor_get(x_9, 0); +x_36 = lean_ctor_get(x_9, 1); +x_37 = lean_ctor_get(x_9, 2); +x_38 = lean_ctor_get(x_9, 3); +x_39 = lean_ctor_get(x_9, 4); +x_40 = lean_ctor_get(x_9, 5); +x_41 = lean_ctor_get(x_9, 6); +x_42 = lean_ctor_get(x_9, 7); +x_43 = lean_ctor_get(x_9, 8); +x_44 = lean_ctor_get(x_9, 9); +x_45 = lean_ctor_get(x_9, 10); +x_46 = lean_ctor_get(x_9, 11); +x_47 = lean_ctor_get_uint8(x_9, sizeof(void*)*14); +x_48 = lean_ctor_get(x_9, 12); +x_49 = lean_ctor_get_uint8(x_9, sizeof(void*)*14 + 1); +x_50 = lean_ctor_get(x_9, 13); +lean_inc(x_50); +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_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_9); +x_51 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___closed__0)); +x_52 = l_Lean_replaceRef(x_3, x_40); +lean_dec(x_40); +x_53 = lean_alloc_ctor(0, 14, 2); +lean_ctor_set(x_53, 0, x_35); +lean_ctor_set(x_53, 1, x_36); +lean_ctor_set(x_53, 2, x_37); +lean_ctor_set(x_53, 3, x_38); +lean_ctor_set(x_53, 4, x_39); +lean_ctor_set(x_53, 5, x_52); +lean_ctor_set(x_53, 6, x_41); +lean_ctor_set(x_53, 7, x_42); +lean_ctor_set(x_53, 8, x_43); +lean_ctor_set(x_53, 9, x_44); +lean_ctor_set(x_53, 10, x_45); +lean_ctor_set(x_53, 11, x_46); +lean_ctor_set(x_53, 12, x_48); +lean_ctor_set(x_53, 13, x_50); +lean_ctor_set_uint8(x_53, sizeof(void*)*14, x_47); +lean_ctor_set_uint8(x_53, sizeof(void*)*14 + 1, x_49); +lean_inc(x_10); +lean_inc_ref(x_53); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_51, x_5, x_6, x_7, x_8, x_53, x_10); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; size_t x_58; size_t x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +lean_dec_ref(x_54); +x_56 = lean_ctor_get(x_55, 0); +lean_inc_ref(x_56); +lean_dec(x_55); +x_57 = l_Lean_PersistentArray_toArray___redArg(x_56); +lean_dec_ref(x_56); +x_58 = lean_array_size(x_57); +x_59 = 0; +x_60 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29_spec__36(x_58, x_59, x_57); +x_61 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_61, 0, x_2); +lean_ctor_set(x_61, 1, x_4); +lean_ctor_set(x_61, 2, x_60); +x_62 = lean_alloc_closure((void*)(l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_62, 0, x_61); +lean_inc(x_10); +lean_inc_ref(x_53); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_63 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_62, x_5, x_6, x_7, x_8, x_53, x_10); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +lean_dec_ref(x_63); +x_65 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___lam__2___boxed), 11, 3); +lean_closure_set(x_65, 0, x_3); +lean_closure_set(x_65, 1, x_64); +lean_closure_set(x_65, 2, x_1); +x_66 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_65, x_5, x_6, x_7, x_8, x_53, x_10); +return x_66; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; +lean_dec_ref(x_53); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_1); +x_67 = lean_ctor_get(x_63, 0); +lean_inc(x_67); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + x_68 = x_63; +} else { + lean_dec_ref(x_63); + x_68 = lean_box(0); +} +if (lean_is_scalar(x_68)) { + x_69 = lean_alloc_ctor(1, 1, 0); +} else { + x_69 = x_68; +} +lean_ctor_set(x_69, 0, x_67); +return x_69; +} +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; +lean_dec_ref(x_53); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_70 = lean_ctor_get(x_54, 0); +lean_inc(x_70); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + x_71 = x_54; +} else { + lean_dec_ref(x_54); + x_71 = lean_box(0); +} +if (lean_is_scalar(x_71)) { + x_72 = lean_alloc_ctor(1, 1, 0); +} else { + x_72 = x_71; +} +lean_ctor_set(x_72, 0, x_70); +return x_72; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29___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_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = lean_ctor_get(x_1, 0); +x_6 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_5, x_3); +if (lean_obj_tag(x_6) == 0) +{ +lean_inc(x_4); +return x_4; +} +else +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +lean_dec_ref(x_6); +if (lean_obj_tag(x_7) == 3) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +lean_dec_ref(x_7); return x_8; } +else +{ +lean_dec(x_7); +lean_inc(x_4); +return x_4; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31(x_1, x_2); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static double _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__2() { +_start: +{ +lean_object* x_1; double x_2; +x_1 = lean_unsigned_to_nat(1000u); +x_2 = lean_float_of_nat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14) { +_start: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_53; double x_60; +x_16 = lean_ctor_get(x_8, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_8, 1); +lean_inc(x_17); +lean_dec_ref(x_8); +x_34 = lean_ctor_get(x_17, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_17, 1); +lean_inc(x_35); +lean_dec(x_17); +lean_inc_ref(x_6); +x_36 = lean_alloc_closure((void*)(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_36, 0, x_6); +x_37 = l_Lean_trace_profiler; +x_38 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_4, x_37); +if (x_38 == 0) +{ +x_53 = x_38; +goto block_59; +} +else +{ +lean_object* x_66; uint8_t x_67; +x_66 = l_Lean_trace_profiler_useHeartbeats; +x_67 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_4, x_66); +if (x_67 == 0) +{ +lean_object* x_68; lean_object* x_69; double x_70; double x_71; double x_72; +x_68 = l_Lean_trace_profiler_threshold; +x_69 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31(x_4, x_68); +x_70 = lean_float_of_nat(x_69); +x_71 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__2; +x_72 = lean_float_div(x_70, x_71); +x_60 = x_72; +goto block_65; +} +else +{ +lean_object* x_73; lean_object* x_74; double x_75; +x_73 = l_Lean_trace_profiler_threshold; +x_74 = l_Lean_Option_get___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__31(x_4, x_73); +x_75 = lean_float_of_nat(x_74); +x_60 = x_75; +goto block_65; +} +} +block_33: +{ +lean_object* x_28; +x_28 = l___private_Lean_Util_Trace_0__Lean_addTraceNode___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__29(x_6, x_20, x_19, x_18, x_21, x_22, x_23, x_24, x_25, x_26); +lean_dec(x_22); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; +lean_dec_ref(x_28); +x_29 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(x_16); +return x_29; +} +else +{ +uint8_t x_30; +lean_dec(x_16); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +return x_28; +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_28, 0); +lean_inc(x_31); +lean_dec(x_28); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +} +} +block_47: +{ +double x_42; lean_object* x_43; +x_42 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__0; +lean_inc_ref(x_3); +lean_inc(x_1); +x_43 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_43, 0, x_1); +lean_ctor_set(x_43, 1, x_3); +lean_ctor_set_float(x_43, sizeof(void*)*2, x_42); +lean_ctor_set_float(x_43, sizeof(void*)*2 + 8, x_42); +lean_ctor_set_uint8(x_43, sizeof(void*)*2 + 16, x_2); +if (x_38 == 0) +{ +lean_dec(x_35); +lean_dec(x_34); +lean_dec_ref(x_3); +lean_dec(x_1); +x_18 = x_40; +x_19 = x_39; +x_20 = x_43; +x_21 = x_9; +x_22 = x_10; +x_23 = x_11; +x_24 = x_12; +x_25 = x_13; +x_26 = x_14; +x_27 = lean_box(0); +goto block_33; +} +else +{ +lean_object* x_44; double x_45; double x_46; +lean_dec_ref(x_43); +x_44 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_44, 0, x_1); +lean_ctor_set(x_44, 1, x_3); +x_45 = lean_unbox_float(x_34); +lean_dec(x_34); +lean_ctor_set_float(x_44, sizeof(void*)*2, x_45); +x_46 = lean_unbox_float(x_35); +lean_dec(x_35); +lean_ctor_set_float(x_44, sizeof(void*)*2 + 8, x_46); +lean_ctor_set_uint8(x_44, sizeof(void*)*2 + 16, x_2); +x_18 = x_40; +x_19 = x_39; +x_20 = x_44; +x_21 = x_9; +x_22 = x_10; +x_23 = x_11; +x_24 = x_12; +x_25 = x_13; +x_26 = x_14; +x_27 = lean_box(0); +goto block_33; +} +} +block_52: +{ +lean_object* x_48; lean_object* x_49; +x_48 = lean_ctor_get(x_13, 5); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_16); +x_49 = lean_apply_8(x_7, x_16, x_9, x_10, x_11, x_12, x_13, x_14, lean_box(0)); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +lean_inc(x_48); +x_39 = x_48; +x_40 = x_50; +x_41 = lean_box(0); +goto block_47; +} +else +{ +lean_object* x_51; +lean_dec_ref(x_49); +x_51 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1; +lean_inc(x_48); +x_39 = x_48; +x_40 = x_51; +x_41 = lean_box(0); +goto block_47; +} +} +block_59: +{ +if (x_5 == 0) +{ +if (x_53 == 0) +{ +lean_object* x_54; +lean_dec(x_35); +lean_dec(x_34); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_3); +lean_dec(x_1); +x_54 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_10); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; +lean_dec_ref(x_54); +x_55 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(x_16); +return x_55; +} +else +{ +uint8_t x_56; +lean_dec(x_16); +x_56 = !lean_is_exclusive(x_54); +if (x_56 == 0) +{ +return x_54; +} +else +{ +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_54, 0); +lean_inc(x_57); +lean_dec(x_54); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_57); +return x_58; +} +} +} +else +{ +lean_dec_ref(x_36); +goto block_52; +} +} +else +{ +lean_dec_ref(x_36); +goto block_52; +} +} +block_65: +{ +double x_61; double x_62; double x_63; uint8_t x_64; +x_61 = lean_unbox_float(x_35); +x_62 = lean_unbox_float(x_34); +x_63 = lean_float_sub(x_61, x_62); +x_64 = lean_float_decLt(x_60, x_63); +x_53 = x_64; +goto block_59; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___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, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_2); +x_17 = lean_unbox(x_5); +x_18 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(x_1, x_16, x_3, x_4, x_17, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec_ref(x_4); +return x_18; +} } LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3(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) { _start: @@ -41359,6 +40803,1115 @@ lean_dec(x_2); return x_10; } } +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_13; +x_13 = l_Lean_Elab_Tactic_Do_ProofMode_addHypInfo(x_1, x_2, x_3, x_4, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6___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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_4); +x_14 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Core_mkFreshUserName(x_1, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_getFreshHypName(x_1, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t 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_13; +x_13 = l_Lean_Meta_mkLetFVars(x_1, x_2, x_3, x_3, x_4, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___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) { +_start: +{ +uint8_t x_13; uint8_t x_14; lean_object* x_15; +x_13 = lean_unbox(x_3); +x_14 = lean_unbox(x_4); +x_15 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_1); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_expr_instantiate1(x_1, x_6); +x_15 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_15, 0, x_2); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set(x_15, 2, x_4); +lean_ctor_set(x_15, 3, x_14); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +x_16 = lean_apply_8(x_5, x_15, x_7, x_8, x_9, x_10, x_11, x_12, lean_box(0)); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = l_Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28___lam__4___closed__0; +x_19 = lean_array_push(x_18, x_6); +x_20 = 1; +x_21 = 1; +x_22 = lean_box(x_20); +x_23 = lean_box(x_21); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___boxed), 12, 4); +lean_closure_set(x_24, 0, x_19); +lean_closure_set(x_24, 1, x_17); +lean_closure_set(x_24, 2, x_22); +lean_closure_set(x_24, 3, x_23); +x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_8); +return x_25; +} +else +{ +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__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); +lean_dec_ref(x_1); +return x_14; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(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) { +_start: +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_1); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_12 = lean_ctor_get(x_1, 0); +x_13 = lean_ctor_get(x_1, 1); +x_14 = lean_ctor_get(x_1, 2); +x_15 = lean_ctor_get(x_1, 3); +x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1)); +x_17 = lean_unsigned_to_nat(3u); +x_18 = l_Lean_Expr_isAppOfArity(x_15, x_16, x_17); +if (x_18 == 0) +{ +lean_free_object(x_1); +if (lean_obj_tag(x_15) == 8) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_35; uint8_t x_36; +x_19 = lean_ctor_get(x_15, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_15, 1); +lean_inc_ref(x_20); +x_21 = lean_ctor_get(x_15, 2); +lean_inc_ref(x_21); +x_22 = lean_ctor_get(x_15, 3); +lean_inc_ref(x_22); +lean_dec_ref(x_15); +x_23 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___boxed), 13, 5); +lean_closure_set(x_23, 0, x_22); +lean_closure_set(x_23, 1, x_12); +lean_closure_set(x_23, 2, x_13); +lean_closure_set(x_23, 3, x_14); +lean_closure_set(x_23, 4, x_3); +x_35 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); +lean_inc(x_2); +x_36 = l_Lean_Syntax_isOfKind(x_2, x_35); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +lean_dec(x_2); +x_37 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2___boxed), 9, 1); +lean_closure_set(x_37, 0, x_19); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_37, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +x_24 = x_39; +x_25 = x_4; +x_26 = x_5; +x_27 = x_6; +x_28 = x_7; +x_29 = x_8; +x_30 = x_9; +x_31 = lean_box(0); +goto block_34; +} +else +{ +uint8_t x_40; +lean_dec_ref(x_23); +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_40 = !lean_is_exclusive(x_38); +if (x_40 == 0) +{ +return x_38; +} +else +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_38, 0); +lean_inc(x_41); +lean_dec(x_38); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +return x_42; +} +} +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_43 = lean_unsigned_to_nat(0u); +x_44 = l_Lean_Syntax_getArg(x_2, x_43); +lean_dec(x_2); +x_45 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6)); +lean_inc(x_44); +x_46 = l_Lean_Syntax_isOfKind(x_44, x_45); +if (x_46 == 0) +{ +lean_object* x_47; lean_object* x_48; +lean_dec(x_44); +x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2___boxed), 9, 1); +lean_closure_set(x_47, 0, x_19); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_48 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_47, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_48) == 0) +{ +lean_object* x_49; +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec_ref(x_48); +x_24 = x_49; +x_25 = x_4; +x_26 = x_5; +x_27 = x_6; +x_28 = x_7; +x_29 = x_8; +x_30 = x_9; +x_31 = lean_box(0); +goto block_34; +} +else +{ +uint8_t x_50; +lean_dec_ref(x_23); +lean_dec_ref(x_21); +lean_dec_ref(x_20); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_50 = !lean_is_exclusive(x_48); +if (x_50 == 0) +{ +return x_48; +} +else +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_48, 0); +lean_inc(x_51); +lean_dec(x_48); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +} +} +else +{ +lean_object* x_53; +lean_dec(x_19); +x_53 = l_Lean_TSyntax_getId(x_44); +lean_dec(x_44); +x_24 = x_53; +x_25 = x_4; +x_26 = x_5; +x_27 = x_6; +x_28 = x_7; +x_29 = x_8; +x_30 = x_9; +x_31 = lean_box(0); +goto block_34; +} +} +block_34: +{ +uint8_t x_32; lean_object* x_33; +x_32 = 0; +x_33 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_24, x_20, x_21, x_23, x_18, x_32, x_25, x_26, x_27, x_28, x_29, x_30); +return x_33; +} +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_3); +lean_dec(x_2); +x_54 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3; +x_55 = l_Lean_MessageData_ofExpr(x_15); +x_56 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4___boxed), 9, 1); +lean_closure_set(x_57, 0, x_56); +x_58 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_57, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +return x_58; +} +} +else +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3___boxed), 9, 1); +lean_closure_set(x_59, 0, x_2); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_59, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +lean_dec_ref(x_60); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_61, 1); +lean_inc(x_63); +lean_dec(x_61); +x_64 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0)); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_65 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_64, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +lean_dec_ref(x_65); +x_67 = l_Lean_Expr_appFn_x21(x_15); +x_68 = l_Lean_Expr_appFn_x21(x_67); +x_69 = l_Lean_Expr_appArg_x21(x_68); +lean_dec_ref(x_68); +x_70 = l_Lean_Expr_appArg_x21(x_67); +lean_dec_ref(x_67); +x_71 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_71, 0, x_62); +lean_ctor_set(x_71, 1, x_66); +lean_ctor_set(x_71, 2, x_70); +x_72 = lean_box(x_18); +lean_inc_ref(x_71); +lean_inc_ref(x_69); +x_73 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6___boxed), 12, 4); +lean_closure_set(x_73, 0, x_63); +lean_closure_set(x_73, 1, x_69); +lean_closure_set(x_73, 2, x_71); +lean_closure_set(x_73, 3, x_72); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; lean_object* x_76; uint8_t x_77; +lean_dec_ref(x_74); +x_75 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_71); +lean_inc_ref(x_75); +lean_inc_ref(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +x_76 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_12, x_13, x_14, x_75); +x_77 = !lean_is_exclusive(x_76); +if (x_77 == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_76, 0); +x_79 = lean_ctor_get(x_76, 1); +x_80 = l_Lean_Expr_appArg_x21(x_15); +lean_dec_ref(x_15); +lean_inc_ref(x_80); +lean_inc(x_78); +lean_inc(x_12); +lean_ctor_set(x_1, 3, x_80); +lean_ctor_set(x_1, 2, x_78); +x_81 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); +if (lean_obj_tag(x_81) == 0) +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_81); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_83 = lean_ctor_get(x_81, 0); +x_84 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5)); +x_85 = lean_box(0); +lean_ctor_set_tag(x_76, 1); +lean_ctor_set(x_76, 1, x_85); +lean_ctor_set(x_76, 0, x_12); +x_86 = l_Lean_mkConst(x_84, x_76); +x_87 = l_Lean_mkApp7(x_86, x_69, x_78, x_14, x_75, x_80, x_79, x_83); +lean_ctor_set(x_81, 0, x_87); +return x_81; +} +else +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_88 = lean_ctor_get(x_81, 0); +lean_inc(x_88); +lean_dec(x_81); +x_89 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5)); +x_90 = lean_box(0); +lean_ctor_set_tag(x_76, 1); +lean_ctor_set(x_76, 1, x_90); +lean_ctor_set(x_76, 0, x_12); +x_91 = l_Lean_mkConst(x_89, x_76); +x_92 = l_Lean_mkApp7(x_91, x_69, x_78, x_14, x_75, x_80, x_79, x_88); +x_93 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_93, 0, x_92); +return x_93; +} +} +else +{ +lean_dec_ref(x_80); +lean_free_object(x_76); +lean_dec(x_79); +lean_dec(x_78); +lean_dec_ref(x_75); +lean_dec_ref(x_69); +lean_dec_ref(x_14); +lean_dec(x_12); +return x_81; +} +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_94 = lean_ctor_get(x_76, 0); +x_95 = lean_ctor_get(x_76, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_76); +x_96 = l_Lean_Expr_appArg_x21(x_15); +lean_dec_ref(x_15); +lean_inc_ref(x_96); +lean_inc(x_94); +lean_inc(x_12); +lean_ctor_set(x_1, 3, x_96); +lean_ctor_set(x_1, 2, x_94); +x_97 = lean_apply_8(x_3, x_1, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); +if (lean_obj_tag(x_97) == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_98 = lean_ctor_get(x_97, 0); +lean_inc(x_98); +if (lean_is_exclusive(x_97)) { + lean_ctor_release(x_97, 0); + x_99 = x_97; +} else { + lean_dec_ref(x_97); + x_99 = lean_box(0); +} +x_100 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5)); +x_101 = lean_box(0); +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_12); +lean_ctor_set(x_102, 1, x_101); +x_103 = l_Lean_mkConst(x_100, x_102); +x_104 = l_Lean_mkApp7(x_103, x_69, x_94, x_14, x_75, x_96, x_95, x_98); +if (lean_is_scalar(x_99)) { + x_105 = lean_alloc_ctor(0, 1, 0); +} else { + x_105 = x_99; +} +lean_ctor_set(x_105, 0, x_104); +return x_105; +} +else +{ +lean_dec_ref(x_96); +lean_dec(x_95); +lean_dec(x_94); +lean_dec_ref(x_75); +lean_dec_ref(x_69); +lean_dec_ref(x_14); +lean_dec(x_12); +return x_97; +} +} +} +else +{ +uint8_t x_106; +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_106 = !lean_is_exclusive(x_74); +if (x_106 == 0) +{ +return x_74; +} +else +{ +lean_object* x_107; lean_object* x_108; +x_107 = lean_ctor_get(x_74, 0); +lean_inc(x_107); +lean_dec(x_74); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +return x_108; +} +} +} +else +{ +uint8_t x_109; +lean_dec(x_63); +lean_dec(x_62); +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_109 = !lean_is_exclusive(x_65); +if (x_109 == 0) +{ +return x_65; +} +else +{ +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_65, 0); +lean_inc(x_110); +lean_dec(x_65); +x_111 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_111, 0, x_110); +return x_111; +} +} +} +else +{ +uint8_t x_112; +lean_free_object(x_1); +lean_dec_ref(x_15); +lean_dec_ref(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_112 = !lean_is_exclusive(x_60); +if (x_112 == 0) +{ +return x_60; +} +else +{ +lean_object* x_113; lean_object* x_114; +x_113 = lean_ctor_get(x_60, 0); +lean_inc(x_113); +lean_dec(x_60); +x_114 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_114, 0, x_113); +return x_114; +} +} +} +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_115 = lean_ctor_get(x_1, 0); +x_116 = lean_ctor_get(x_1, 1); +x_117 = lean_ctor_get(x_1, 2); +x_118 = lean_ctor_get(x_1, 3); +lean_inc(x_118); +lean_inc(x_117); +lean_inc(x_116); +lean_inc(x_115); +lean_dec(x_1); +x_119 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1)); +x_120 = lean_unsigned_to_nat(3u); +x_121 = l_Lean_Expr_isAppOfArity(x_118, x_119, x_120); +if (x_121 == 0) +{ +if (lean_obj_tag(x_118) == 8) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_138; uint8_t x_139; +x_122 = lean_ctor_get(x_118, 0); +lean_inc(x_122); +x_123 = lean_ctor_get(x_118, 1); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_118, 2); +lean_inc_ref(x_124); +x_125 = lean_ctor_get(x_118, 3); +lean_inc_ref(x_125); +lean_dec_ref(x_118); +x_126 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__1___boxed), 13, 5); +lean_closure_set(x_126, 0, x_125); +lean_closure_set(x_126, 1, x_115); +lean_closure_set(x_126, 2, x_116); +lean_closure_set(x_126, 3, x_117); +lean_closure_set(x_126, 4, x_3); +x_138 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); +lean_inc(x_2); +x_139 = l_Lean_Syntax_isOfKind(x_2, x_138); +if (x_139 == 0) +{ +lean_object* x_140; lean_object* x_141; +lean_dec(x_2); +x_140 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2___boxed), 9, 1); +lean_closure_set(x_140, 0, x_122); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_141 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_140, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +lean_dec_ref(x_141); +x_127 = x_142; +x_128 = x_4; +x_129 = x_5; +x_130 = x_6; +x_131 = x_7; +x_132 = x_8; +x_133 = x_9; +x_134 = lean_box(0); +goto block_137; +} +else +{ +lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec_ref(x_126); +lean_dec_ref(x_124); +lean_dec_ref(x_123); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_143 = lean_ctor_get(x_141, 0); +lean_inc(x_143); +if (lean_is_exclusive(x_141)) { + lean_ctor_release(x_141, 0); + x_144 = x_141; +} else { + lean_dec_ref(x_141); + x_144 = lean_box(0); +} +if (lean_is_scalar(x_144)) { + x_145 = lean_alloc_ctor(1, 1, 0); +} else { + x_145 = x_144; +} +lean_ctor_set(x_145, 0, x_143); +return x_145; +} +} +else +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; +x_146 = lean_unsigned_to_nat(0u); +x_147 = l_Lean_Syntax_getArg(x_2, x_146); +lean_dec(x_2); +x_148 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6)); +lean_inc(x_147); +x_149 = l_Lean_Syntax_isOfKind(x_147, x_148); +if (x_149 == 0) +{ +lean_object* x_150; lean_object* x_151; +lean_dec(x_147); +x_150 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__2___boxed), 9, 1); +lean_closure_set(x_150, 0, x_122); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_151 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_150, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +lean_dec_ref(x_151); +x_127 = x_152; +x_128 = x_4; +x_129 = x_5; +x_130 = x_6; +x_131 = x_7; +x_132 = x_8; +x_133 = x_9; +x_134 = lean_box(0); +goto block_137; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; +lean_dec_ref(x_126); +lean_dec_ref(x_124); +lean_dec_ref(x_123); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_153 = lean_ctor_get(x_151, 0); +lean_inc(x_153); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + x_154 = x_151; +} else { + lean_dec_ref(x_151); + x_154 = lean_box(0); +} +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(1, 1, 0); +} else { + x_155 = x_154; +} +lean_ctor_set(x_155, 0, x_153); +return x_155; +} +} +else +{ +lean_object* x_156; +lean_dec(x_122); +x_156 = l_Lean_TSyntax_getId(x_147); +lean_dec(x_147); +x_127 = x_156; +x_128 = x_4; +x_129 = x_5; +x_130 = x_6; +x_131 = x_7; +x_132 = x_8; +x_133 = x_9; +x_134 = lean_box(0); +goto block_137; +} +} +block_137: +{ +uint8_t x_135; lean_object* x_136; +x_135 = 0; +x_136 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_127, x_123, x_124, x_126, x_121, x_135, x_128, x_129, x_130, x_131, x_132, x_133); +return x_136; +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +lean_dec_ref(x_117); +lean_dec_ref(x_116); +lean_dec(x_115); +lean_dec_ref(x_3); +lean_dec(x_2); +x_157 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3; +x_158 = l_Lean_MessageData_ofExpr(x_118); +x_159 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_159, 0, x_157); +lean_ctor_set(x_159, 1, x_158); +x_160 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__4___boxed), 9, 1); +lean_closure_set(x_160, 0, x_159); +x_161 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_160, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +return x_161; +} +} +else +{ +lean_object* x_162; lean_object* x_163; +x_162 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__3___boxed), 9, 1); +lean_closure_set(x_162, 0, x_2); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_163 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_162, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +lean_dec_ref(x_163); +x_165 = lean_ctor_get(x_164, 0); +lean_inc(x_165); +x_166 = lean_ctor_get(x_164, 1); +lean_inc(x_166); +lean_dec(x_164); +x_167 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21___closed__0)); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_168 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_167, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_168) == 0) +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +lean_dec_ref(x_168); +x_170 = l_Lean_Expr_appFn_x21(x_118); +x_171 = l_Lean_Expr_appFn_x21(x_170); +x_172 = l_Lean_Expr_appArg_x21(x_171); +lean_dec_ref(x_171); +x_173 = l_Lean_Expr_appArg_x21(x_170); +lean_dec_ref(x_170); +x_174 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_174, 0, x_165); +lean_ctor_set(x_174, 1, x_169); +lean_ctor_set(x_174, 2, x_173); +x_175 = lean_box(x_121); +lean_inc_ref(x_174); +lean_inc_ref(x_172); +x_176 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__6___boxed), 12, 4); +lean_closure_set(x_176, 0, x_166); +lean_closure_set(x_176, 1, x_172); +lean_closure_set(x_176, 2, x_174); +lean_closure_set(x_176, 3, x_175); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_177 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_176, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_177) == 0) +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +lean_dec_ref(x_177); +x_178 = l_Lean_Elab_Tactic_Do_ProofMode_Hyp_toExpr(x_174); +lean_inc_ref(x_178); +lean_inc_ref(x_117); +lean_inc_ref(x_116); +lean_inc(x_115); +x_179 = l_Lean_Elab_Tactic_Do_ProofMode_SPred_mkAnd(x_115, x_116, x_117, x_178); +x_180 = lean_ctor_get(x_179, 0); +lean_inc(x_180); +x_181 = lean_ctor_get(x_179, 1); +lean_inc(x_181); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + lean_ctor_release(x_179, 1); + x_182 = x_179; +} else { + lean_dec_ref(x_179); + x_182 = lean_box(0); +} +x_183 = l_Lean_Expr_appArg_x21(x_118); +lean_dec_ref(x_118); +lean_inc_ref(x_183); +lean_inc(x_180); +lean_inc(x_115); +x_184 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_184, 0, x_115); +lean_ctor_set(x_184, 1, x_116); +lean_ctor_set(x_184, 2, x_180); +lean_ctor_set(x_184, 3, x_183); +x_185 = lean_apply_8(x_3, x_184, x_4, x_5, x_6, x_7, x_8, x_9, lean_box(0)); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +if (lean_is_exclusive(x_185)) { + lean_ctor_release(x_185, 0); + x_187 = x_185; +} else { + lean_dec_ref(x_185); + x_187 = lean_box(0); +} +x_188 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__5)); +x_189 = lean_box(0); +if (lean_is_scalar(x_182)) { + x_190 = lean_alloc_ctor(1, 2, 0); +} else { + x_190 = x_182; + lean_ctor_set_tag(x_190, 1); +} +lean_ctor_set(x_190, 0, x_115); +lean_ctor_set(x_190, 1, x_189); +x_191 = l_Lean_mkConst(x_188, x_190); +x_192 = l_Lean_mkApp7(x_191, x_172, x_180, x_117, x_178, x_183, x_181, x_186); +if (lean_is_scalar(x_187)) { + x_193 = lean_alloc_ctor(0, 1, 0); +} else { + x_193 = x_187; +} +lean_ctor_set(x_193, 0, x_192); +return x_193; +} +else +{ +lean_dec_ref(x_183); +lean_dec(x_182); +lean_dec(x_181); +lean_dec(x_180); +lean_dec_ref(x_178); +lean_dec_ref(x_172); +lean_dec_ref(x_117); +lean_dec(x_115); +return x_185; +} +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; +lean_dec_ref(x_174); +lean_dec_ref(x_172); +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec_ref(x_116); +lean_dec(x_115); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_194 = lean_ctor_get(x_177, 0); +lean_inc(x_194); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + x_195 = x_177; +} else { + lean_dec_ref(x_177); + x_195 = lean_box(0); +} +if (lean_is_scalar(x_195)) { + x_196 = lean_alloc_ctor(1, 1, 0); +} else { + x_196 = x_195; +} +lean_ctor_set(x_196, 0, x_194); +return x_196; +} +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; +lean_dec(x_166); +lean_dec(x_165); +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec_ref(x_116); +lean_dec(x_115); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_197 = lean_ctor_get(x_168, 0); +lean_inc(x_197); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + x_198 = x_168; +} else { + lean_dec_ref(x_168); + x_198 = lean_box(0); +} +if (lean_is_scalar(x_198)) { + x_199 = lean_alloc_ctor(1, 1, 0); +} else { + x_199 = x_198; +} +lean_ctor_set(x_199, 0, x_197); +return x_199; +} +} +else +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_dec_ref(x_118); +lean_dec_ref(x_117); +lean_dec_ref(x_116); +lean_dec(x_115); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_200 = lean_ctor_get(x_163, 0); +lean_inc(x_200); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + x_201 = x_163; +} else { + lean_dec_ref(x_163); + x_201 = lean_box(0); +} +if (lean_is_scalar(x_201)) { + x_202 = lean_alloc_ctor(1, 1, 0); +} else { + x_202 = x_201; +} +lean_ctor_set(x_202, 0, x_200); +return x_202; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___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_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0(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) { _start: { @@ -41378,12 +41931,12 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__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) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1() { @@ -41395,1221 +41948,1215 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(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) { _start: { -lean_object* x_12; lean_object* x_13; -x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed), 9, 1); -lean_closure_set(x_12, 0, x_4); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_13 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_12, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_13) == 0) +lean_object* x_11; lean_object* x_12; lean_object* x_31; +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -lean_dec_ref(x_13); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc_ref(x_5); -x_15 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_15) == 0) +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc_ref(x_4); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_2, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_33) == 0) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = lean_ctor_get(x_14, 0); -lean_inc_ref(x_17); -x_18 = lean_ctor_get(x_14, 1); -lean_inc(x_18); -lean_dec(x_14); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_2, x_17, x_16, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_19) == 0) +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec_ref(x_33); +x_35 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_35); +x_36 = lean_ctor_get(x_32, 1); +lean_inc(x_36); +lean_dec(x_32); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +x_37 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_35, x_34, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_37) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -if (lean_obj_tag(x_18) == 1) +if (lean_obj_tag(x_36) == 1) { -lean_object* x_46; lean_object* x_47; -x_46 = lean_ctor_get(x_18, 0); -lean_inc(x_46); -lean_dec_ref(x_18); -x_47 = l_Lean_Expr_app___override(x_46, x_20); -x_21 = x_47; -x_22 = x_5; -x_23 = x_6; -x_24 = x_7; -x_25 = x_8; -x_26 = x_9; -x_27 = x_10; -goto block_45; -} -else -{ -lean_dec(x_18); -x_21 = x_20; -x_22 = x_5; -x_23 = x_6; -x_24 = x_7; -x_25 = x_8; -x_26 = x_9; -x_27 = x_10; -goto block_45; -} -block_45: -{ -uint8_t x_28; uint8_t x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_28 = 0; -x_29 = 1; -x_30 = 1; -x_31 = lean_box(x_28); -x_32 = lean_box(x_29); -x_33 = lean_box(x_30); -x_34 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2___boxed), 13, 5); -lean_closure_set(x_34, 0, x_3); -lean_closure_set(x_34, 1, x_21); -lean_closure_set(x_34, 2, x_31); -lean_closure_set(x_34, 3, x_32); -lean_closure_set(x_34, 4, x_33); -x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_22, x_23, x_24, x_25, x_26, x_27); -lean_dec(x_23); -if (lean_obj_tag(x_35) == 0) -{ -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_35, 0, x_38); -return x_35; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_35, 0); +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +lean_dec_ref(x_37); +x_39 = lean_ctor_get(x_36, 0); lean_inc(x_39); -lean_dec(x_35); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -return x_41; +lean_dec_ref(x_36); +x_40 = l_Lean_Expr_app___override(x_39, x_38); +x_11 = x_40; +x_12 = lean_box(0); +goto block_30; +} +else +{ +lean_object* x_41; +lean_dec(x_36); +x_41 = lean_ctor_get(x_37, 0); +lean_inc(x_41); +lean_dec_ref(x_37); +x_11 = x_41; +x_12 = lean_box(0); +goto block_30; } } else { uint8_t x_42; -x_42 = !lean_is_exclusive(x_35); +lean_dec(x_36); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_42 = !lean_is_exclusive(x_37); if (x_42 == 0) { -return x_35; +return x_37; } else { lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_35, 0); +x_43 = lean_ctor_get(x_37, 0); lean_inc(x_43); -lean_dec(x_35); +lean_dec(x_37); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_43); return x_44; } } } -} else { -uint8_t x_48; -lean_dec(x_18); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_3); -x_48 = !lean_is_exclusive(x_19); -if (x_48 == 0) -{ -return x_19; -} -else -{ -lean_object* x_49; lean_object* x_50; -x_49 = lean_ctor_get(x_19, 0); -lean_inc(x_49); -lean_dec(x_19); -x_50 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_50, 0, x_49); -return x_50; -} -} -} -else -{ -uint8_t x_51; -lean_dec(x_14); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_51 = !lean_is_exclusive(x_15); -if (x_51 == 0) -{ -return x_15; -} -else -{ -lean_object* x_52; lean_object* x_53; -x_52 = lean_ctor_get(x_15, 0); -lean_inc(x_52); -lean_dec(x_15); -x_53 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_53, 0, x_52); -return x_53; -} -} -} -else -{ -lean_object* x_54; lean_object* x_55; uint8_t x_56; uint8_t x_61; -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_54 = lean_ctor_get(x_13, 0); -lean_inc(x_54); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - x_55 = x_13; -} else { - lean_dec_ref(x_13); - x_55 = lean_box(0); -} -x_61 = l_Lean_Exception_isInterrupt(x_54); -if (x_61 == 0) -{ -uint8_t x_62; -lean_inc(x_54); -x_62 = l_Lean_Exception_isRuntime(x_54); -x_56 = x_62; -goto block_60; -} -else -{ -x_56 = x_61; -goto block_60; -} -block_60: -{ -if (x_56 == 0) -{ -lean_object* x_57; lean_object* x_58; -lean_dec(x_54); -x_57 = lean_box(0); -if (lean_is_scalar(x_55)) { - x_58 = lean_alloc_ctor(0, 1, 0); -} else { - x_58 = x_55; - lean_ctor_set_tag(x_58, 0); -} -lean_ctor_set(x_58, 0, x_57); -return x_58; -} -else -{ -lean_object* x_59; -if (lean_is_scalar(x_55)) { - x_59 = lean_alloc_ctor(1, 1, 0); -} else { - x_59 = x_55; -} -lean_ctor_set(x_59, 0, x_54); -return x_59; -} -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(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) { -_start: -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_inc(x_2); -x_10 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___boxed), 9, 1); -lean_closure_set(x_10, 0, x_2); -x_11 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___boxed), 11, 2); -lean_closure_set(x_11, 0, x_10); -lean_closure_set(x_11, 1, x_1); -lean_inc(x_2); -x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___boxed), 9, 1); -lean_closure_set(x_12, 0, x_2); -x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___boxed), 9, 2); -lean_closure_set(x_13, 0, x_12); -lean_closure_set(x_13, 1, x_11); -x_14 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__1___redArg(x_2, x_13, x_3, x_4, x_5, x_6, x_7, x_8); -return x_14; -} -} -static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__0)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__2)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__4)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__6)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg(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) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_11; +uint8_t x_45; +lean_dec(x_32); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_11 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_11, 0, x_3); -return x_11; -} -else -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_2); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_2, 0); -x_14 = lean_ctor_get(x_2, 1); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_15 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_13, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -lean_dec_ref(x_15); -x_17 = lean_box(0); -x_18 = lean_unbox(x_16); -lean_dec(x_16); -if (x_18 == 0) -{ -lean_object* x_19; -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -lean_inc(x_13); -lean_inc_ref(x_1); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_1, x_13, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); -if (lean_obj_tag(x_20) == 1) -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (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; lean_object* x_33; -x_22 = lean_ctor_get(x_20, 0); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_33 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_13, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; uint8_t x_35; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -lean_dec_ref(x_33); -x_35 = lean_unbox(x_34); -lean_dec(x_34); -if (x_35 == 0) -{ -lean_free_object(x_20); -lean_free_object(x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -x_23 = x_4; -x_24 = x_5; -x_25 = x_6; -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = lean_box(0); -goto block_32; -} -else -{ -lean_object* x_36; lean_object* x_37; -lean_dec(x_14); -lean_dec_ref(x_1); -lean_inc(x_13); -x_36 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_36, 0, x_13); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_37 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_36, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_37) == 0) -{ -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; lean_object* x_45; lean_object* x_46; 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; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -lean_dec_ref(x_37); -x_39 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1; -x_40 = l_Lean_MessageData_ofName(x_38); -lean_ctor_set_tag(x_2, 7); -lean_ctor_set(x_2, 1, x_40); -lean_ctor_set(x_2, 0, x_39); -x_41 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3; -x_42 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_42, 0, x_2); -lean_ctor_set(x_42, 1, x_41); -lean_inc(x_13); -lean_ctor_set(x_20, 0, x_13); -x_43 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_20); -x_44 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5; -x_45 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_mkMVar(x_13); -x_47 = l_Lean_MessageData_ofExpr(x_46); -x_48 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_48, 0, x_45); -lean_ctor_set(x_48, 1, x_47); -x_49 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7; -x_50 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -x_51 = l_Lean_MessageData_ofExpr(x_22); -x_52 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_52, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_53; -} -else -{ -uint8_t x_54; -lean_free_object(x_20); -lean_dec(x_22); -lean_free_object(x_2); -lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_54 = !lean_is_exclusive(x_37); -if (x_54 == 0) -{ -return x_37; -} -else -{ -lean_object* x_55; lean_object* x_56; -x_55 = lean_ctor_get(x_37, 0); -lean_inc(x_55); -lean_dec(x_37); -x_56 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_56, 0, x_55); -return x_56; -} -} -} -} -else -{ -uint8_t x_57; -lean_free_object(x_20); -lean_dec(x_22); -lean_free_object(x_2); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_57 = !lean_is_exclusive(x_33); -if (x_57 == 0) +lean_dec_ref(x_3); +x_45 = !lean_is_exclusive(x_33); +if (x_45 == 0) { return x_33; } else { -lean_object* x_58; lean_object* x_59; -x_58 = lean_ctor_get(x_33, 0); -lean_inc(x_58); +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_33, 0); +lean_inc(x_46); lean_dec(x_33); -x_59 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_59, 0, x_58); -return x_59; +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; } } -block_32: -{ -lean_object* x_30; -x_30 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_13, x_22, x_23, x_24, x_25, x_26, x_27, x_28); -lean_dec(x_24); -if (lean_obj_tag(x_30) == 0) -{ -lean_dec_ref(x_30); -x_2 = x_14; -x_3 = x_17; -goto _start; } else { -lean_dec(x_14); +lean_object* x_48; lean_object* x_49; uint8_t x_50; uint8_t x_55; lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_30; +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_48 = lean_ctor_get(x_31, 0); +lean_inc(x_48); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + x_49 = x_31; +} else { + lean_dec_ref(x_31); + x_49 = lean_box(0); +} +x_55 = l_Lean_Exception_isInterrupt(x_48); +if (x_55 == 0) +{ +uint8_t x_56; +lean_inc(x_48); +x_56 = l_Lean_Exception_isRuntime(x_48); +x_50 = x_56; +goto block_54; +} +else +{ +x_50 = x_55; +goto block_54; +} +block_54: +{ +if (x_50 == 0) +{ +lean_object* x_51; lean_object* x_52; +lean_dec(x_48); +x_51 = lean_box(0); +if (lean_is_scalar(x_49)) { + x_52 = lean_alloc_ctor(0, 1, 0); +} else { + x_52 = x_49; + lean_ctor_set_tag(x_52, 0); +} +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +else +{ +lean_object* x_53; +if (lean_is_scalar(x_49)) { + x_53 = lean_alloc_ctor(1, 1, 0); +} else { + x_53 = x_49; +} +lean_ctor_set(x_53, 0, x_48); +return x_53; +} +} +} +block_30: +{ +uint8_t x_13; uint8_t x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_13 = 0; +x_14 = 1; +x_15 = 1; +x_16 = lean_box(x_13); +x_17 = lean_box(x_14); +x_18 = lean_box(x_15); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__3___boxed), 13, 5); +lean_closure_set(x_19, 0, x_3); +lean_closure_set(x_19, 1, x_11); +lean_closure_set(x_19, 2, x_16); +lean_closure_set(x_19, 3, x_17); +lean_closure_set(x_19, 4, x_18); +x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +if (lean_obj_tag(x_20) == 0) +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_20, 0); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_20, 0, x_23); +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 0); +lean_inc(x_24); +lean_dec(x_20); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_24); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +else +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_20); +if (x_27 == 0) +{ +return x_20; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_20, 0); +lean_inc(x_28); +lean_dec(x_20); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__2___boxed), 9, 1); +lean_closure_set(x_11, 0, x_3); +lean_inc_ref(x_2); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__4___boxed), 10, 3); +lean_closure_set(x_12, 0, x_11); +lean_closure_set(x_12, 1, x_1); +lean_closure_set(x_12, 2, x_2); +x_13 = l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_inc(x_1); +x_9 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__0___boxed), 9, 1); +lean_closure_set(x_9, 0, x_1); +lean_inc(x_1); +x_10 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__1___boxed), 9, 1); +lean_closure_set(x_10, 0, x_1); +x_11 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__5___boxed), 10, 1); +lean_closure_set(x_11, 0, x_10); +x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___lam__6___boxed), 9, 2); +lean_closure_set(x_12, 0, x_9); +lean_closure_set(x_12, 1, x_11); +x_13 = l_Lean_MVarId_withContext___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__2___redArg(x_1, x_12, x_2, x_3, x_4, x_5, x_6, x_7); +return x_13; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__4)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__6)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg(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) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_10; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_10 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_10, 0, x_2); +return x_10; +} +else +{ +uint8_t x_11; +x_11 = !lean_is_exclusive(x_1); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_1, 0); +x_13 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_14 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_12, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec_ref(x_14); +x_16 = lean_box(0); +x_17 = lean_unbox(x_15); +lean_dec(x_15); +if (x_17 == 0) +{ +lean_object* x_18; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_12); +x_18 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_12, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); +if (lean_obj_tag(x_19) == 1) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; 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_32; +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_32 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_12, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +x_34 = lean_unbox(x_33); +lean_dec(x_33); +if (x_34 == 0) +{ +lean_free_object(x_19); +lean_free_object(x_1); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_22 = x_3; +x_23 = x_4; +x_24 = x_5; +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = lean_box(0); +goto block_31; +} +else +{ +lean_object* x_35; lean_object* x_36; +lean_dec(x_13); +lean_inc(x_12); +x_35 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_35, 0, x_12); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_36) == 0) +{ +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; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +x_38 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1; +x_39 = l_Lean_MessageData_ofName(x_37); +lean_ctor_set_tag(x_1, 7); +lean_ctor_set(x_1, 1, x_39); +lean_ctor_set(x_1, 0, x_38); +x_40 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_1); +lean_ctor_set(x_41, 1, x_40); +lean_inc(x_12); +lean_ctor_set(x_19, 0, x_12); +x_42 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_19); +x_43 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5; +x_44 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +x_45 = l_Lean_mkMVar(x_12); +x_46 = l_Lean_MessageData_ofExpr(x_45); +x_47 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_47, 0, x_44); +lean_ctor_set(x_47, 1, x_46); +x_48 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7; +x_49 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +x_50 = l_Lean_MessageData_ofExpr(x_21); +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +x_52 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_51, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +return x_52; +} +else +{ +uint8_t x_53; +lean_free_object(x_19); +lean_dec(x_21); +lean_free_object(x_1); +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_53 = !lean_is_exclusive(x_36); +if (x_53 == 0) +{ +return x_36; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_36, 0); +lean_inc(x_54); +lean_dec(x_36); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_54); +return x_55; +} } } } else { -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_71; -x_60 = lean_ctor_get(x_20, 0); -lean_inc(x_60); -lean_dec(x_20); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_71 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_13, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_71) == 0) +uint8_t x_56; +lean_free_object(x_19); +lean_dec(x_21); +lean_free_object(x_1); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_56 = !lean_is_exclusive(x_32); +if (x_56 == 0) { -lean_object* x_72; uint8_t x_73; -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -lean_dec_ref(x_71); -x_73 = lean_unbox(x_72); -lean_dec(x_72); -if (x_73 == 0) +return x_32; +} +else { -lean_free_object(x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_32, 0); +lean_inc(x_57); +lean_dec(x_32); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_57); +return x_58; +} +} +block_31: +{ +lean_object* x_29; +x_29 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_12, x_21, x_22, x_23, x_24, x_25, x_26, x_27); +lean_dec(x_23); +if (lean_obj_tag(x_29) == 0) +{ +lean_dec_ref(x_29); +x_1 = x_13; +x_2 = x_16; +goto _start; +} +else +{ +lean_dec(x_13); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_29; +} +} +} +else +{ +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_70; +x_59 = lean_ctor_get(x_19, 0); +lean_inc(x_59); +lean_dec(x_19); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_70 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_12, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; uint8_t x_72; +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +lean_dec_ref(x_70); +x_72 = lean_unbox(x_71); +lean_dec(x_71); +if (x_72 == 0) +{ +lean_free_object(x_1); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_60 = x_3; x_61 = x_4; x_62 = x_5; x_63 = x_6; x_64 = x_7; x_65 = x_8; -x_66 = x_9; -x_67 = lean_box(0); -goto block_70; +x_66 = lean_box(0); +goto block_69; } else { -lean_object* x_74; lean_object* x_75; -lean_dec(x_14); -lean_dec_ref(x_1); -lean_inc(x_13); -x_74 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_74, 0, x_13); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_75 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_74, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_75) == 0) -{ -lean_object* x_76; lean_object* 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; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -lean_dec_ref(x_75); -x_77 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1; -x_78 = l_Lean_MessageData_ofName(x_76); -lean_ctor_set_tag(x_2, 7); -lean_ctor_set(x_2, 1, x_78); -lean_ctor_set(x_2, 0, x_77); -x_79 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3; -x_80 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_80, 0, x_2); -lean_ctor_set(x_80, 1, x_79); -lean_inc(x_13); -x_81 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_81, 0, x_13); -x_82 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_82, 0, x_80); -lean_ctor_set(x_82, 1, x_81); -x_83 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5; -x_84 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_84, 0, x_82); -lean_ctor_set(x_84, 1, x_83); -x_85 = l_Lean_mkMVar(x_13); -x_86 = l_Lean_MessageData_ofExpr(x_85); -x_87 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_86); -x_88 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7; -x_89 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -x_90 = l_Lean_MessageData_ofExpr(x_60); -x_91 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -x_92 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_91, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_92; -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; -lean_dec(x_60); -lean_free_object(x_2); +lean_object* x_73; lean_object* x_74; lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_93 = lean_ctor_get(x_75, 0); -lean_inc(x_93); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - x_94 = x_75; -} else { - lean_dec_ref(x_75); - x_94 = lean_box(0); +lean_inc(x_12); +x_73 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_73, 0, x_12); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_74 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_73, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; lean_object* x_76; lean_object* 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; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +lean_dec_ref(x_74); +x_76 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1; +x_77 = l_Lean_MessageData_ofName(x_75); +lean_ctor_set_tag(x_1, 7); +lean_ctor_set(x_1, 1, x_77); +lean_ctor_set(x_1, 0, x_76); +x_78 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3; +x_79 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_79, 0, x_1); +lean_ctor_set(x_79, 1, x_78); +lean_inc(x_12); +x_80 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_80, 0, x_12); +x_81 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +x_82 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5; +x_83 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +x_84 = l_Lean_mkMVar(x_12); +x_85 = l_Lean_MessageData_ofExpr(x_84); +x_86 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_85); +x_87 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7; +x_88 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +x_89 = l_Lean_MessageData_ofExpr(x_59); +x_90 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +x_91 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_90, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +return x_91; } -if (lean_is_scalar(x_94)) { - x_95 = lean_alloc_ctor(1, 1, 0); +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_59); +lean_free_object(x_1); +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_92 = lean_ctor_get(x_74, 0); +lean_inc(x_92); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + x_93 = x_74; } else { - x_95 = x_94; + lean_dec_ref(x_74); + x_93 = lean_box(0); } -lean_ctor_set(x_95, 0, x_93); -return x_95; +if (lean_is_scalar(x_93)) { + x_94 = lean_alloc_ctor(1, 1, 0); +} else { + x_94 = x_93; +} +lean_ctor_set(x_94, 0, x_92); +return x_94; } } } else { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -lean_dec(x_60); -lean_free_object(x_2); -lean_dec(x_14); +lean_object* x_95; lean_object* x_96; lean_object* x_97; +lean_dec(x_59); +lean_free_object(x_1); lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_96 = lean_ctor_get(x_71, 0); -lean_inc(x_96); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - x_97 = x_71; +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_95 = lean_ctor_get(x_70, 0); +lean_inc(x_95); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + x_96 = x_70; } else { - lean_dec_ref(x_71); - x_97 = lean_box(0); + lean_dec_ref(x_70); + x_96 = lean_box(0); } -if (lean_is_scalar(x_97)) { - x_98 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(1, 1, 0); } else { - x_98 = x_97; + x_97 = x_96; } -lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_97, 0, x_95); +return x_97; +} +block_69: +{ +lean_object* x_67; +x_67 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_12, x_59, x_60, x_61, x_62, x_63, x_64, x_65); +lean_dec(x_61); +if (lean_obj_tag(x_67) == 0) +{ +lean_dec_ref(x_67); +x_1 = x_13; +x_2 = x_16; +goto _start; +} +else +{ +lean_dec(x_13); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_67; +} +} +} +} +else +{ +lean_object* x_98; +lean_dec(x_19); +lean_free_object(x_1); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_98 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_12, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_98) == 0) +{ +lean_dec_ref(x_98); +x_1 = x_13; +x_2 = x_16; +goto _start; +} +else +{ +lean_dec(x_13); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); return x_98; } -block_70: -{ -lean_object* x_68; -x_68 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_13, x_60, x_61, x_62, x_63, x_64, x_65, x_66); -lean_dec(x_62); -if (lean_obj_tag(x_68) == 0) -{ -lean_dec_ref(x_68); -x_2 = x_14; -x_3 = x_17; -goto _start; -} -else -{ -lean_dec(x_14); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_68; -} -} } } else { -lean_object* x_99; -lean_dec(x_20); -lean_free_object(x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_4); -x_99 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_13, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_99) == 0) -{ -lean_dec_ref(x_99); -x_2 = x_14; -x_3 = x_17; -goto _start; -} -else -{ -lean_dec(x_14); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_99; -} -} -} -else -{ -uint8_t x_101; -lean_free_object(x_2); -lean_dec(x_14); +uint8_t x_100; +lean_free_object(x_1); lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_101 = !lean_is_exclusive(x_19); -if (x_101 == 0) +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_100 = !lean_is_exclusive(x_18); +if (x_100 == 0) { -return x_19; +return x_18; } else { -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_19, 0); -lean_inc(x_102); -lean_dec(x_19); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_18, 0); +lean_inc(x_101); +lean_dec(x_18); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +return x_102; } } } else { -lean_free_object(x_2); -lean_dec(x_13); -x_2 = x_14; -x_3 = x_17; +lean_free_object(x_1); +lean_dec(x_12); +x_1 = x_13; +x_2 = x_16; goto _start; } } else { -uint8_t x_105; -lean_free_object(x_2); -lean_dec(x_14); +uint8_t x_104; +lean_free_object(x_1); lean_dec(x_13); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_105 = !lean_is_exclusive(x_15); -if (x_105 == 0) +lean_dec(x_12); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_104 = !lean_is_exclusive(x_14); +if (x_104 == 0) { -return x_15; +return x_14; } else { -lean_object* x_106; lean_object* x_107; -x_106 = lean_ctor_get(x_15, 0); -lean_inc(x_106); -lean_dec(x_15); -x_107 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_107, 0, x_106); -return x_107; +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_14, 0); +lean_inc(x_105); +lean_dec(x_14); +x_106 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; } } } else { -lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_108 = lean_ctor_get(x_2, 0); -x_109 = lean_ctor_get(x_2, 1); -lean_inc(x_109); +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_1, 0); +x_108 = lean_ctor_get(x_1, 1); lean_inc(x_108); -lean_dec(x_2); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_110 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_108, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_110) == 0) +lean_inc(x_107); +lean_dec(x_1); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_109 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_107, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_109) == 0) { -lean_object* x_111; lean_object* x_112; uint8_t x_113; -x_111 = lean_ctor_get(x_110, 0); -lean_inc(x_111); -lean_dec_ref(x_110); -x_112 = lean_box(0); -x_113 = lean_unbox(x_111); -lean_dec(x_111); -if (x_113 == 0) +lean_object* x_110; lean_object* x_111; uint8_t x_112; +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +lean_dec_ref(x_109); +x_111 = lean_box(0); +x_112 = lean_unbox(x_110); +lean_dec(x_110); +if (x_112 == 0) +{ +lean_object* x_113; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_107); +x_113 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_107, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_113) == 0) { lean_object* x_114; -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); -lean_inc(x_108); -lean_inc_ref(x_1); -x_114 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_1, x_108, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_114) == 0) +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +lean_dec_ref(x_113); +if (lean_obj_tag(x_114) == 1) { -lean_object* x_115; +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_127; x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec_ref(x_114); -if (lean_obj_tag(x_115) == 1) -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_128; -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -if (lean_is_exclusive(x_115)) { - lean_ctor_release(x_115, 0); - x_117 = x_115; +if (lean_is_exclusive(x_114)) { + lean_ctor_release(x_114, 0); + x_116 = x_114; } else { - lean_dec_ref(x_115); - x_117 = lean_box(0); + lean_dec_ref(x_114); + x_116 = lean_box(0); } -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_128 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6(x_108, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_128) == 0) +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_127 = l_Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_107, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_127) == 0) { -lean_object* x_129; uint8_t x_130; -x_129 = lean_ctor_get(x_128, 0); -lean_inc(x_129); -lean_dec_ref(x_128); -x_130 = lean_unbox(x_129); -lean_dec(x_129); -if (x_130 == 0) +lean_object* x_128; uint8_t x_129; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +lean_dec_ref(x_127); +x_129 = lean_unbox(x_128); +lean_dec(x_128); +if (x_129 == 0) { -lean_dec(x_117); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc(x_5); -lean_inc_ref(x_4); +lean_dec(x_116); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_117 = x_3; x_118 = x_4; x_119 = x_5; x_120 = x_6; x_121 = x_7; x_122 = x_8; -x_123 = x_9; -x_124 = lean_box(0); -goto block_127; +x_123 = lean_box(0); +goto block_126; } else { -lean_object* x_131; lean_object* x_132; -lean_dec(x_109); -lean_dec_ref(x_1); -lean_inc(x_108); -x_131 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___lam__0___boxed), 9, 1); -lean_closure_set(x_131, 0, x_108); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_132 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_131, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_132) == 0) -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -lean_dec_ref(x_132); -x_134 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1; -x_135 = l_Lean_MessageData_ofName(x_133); -x_136 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -x_137 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3; -x_138 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_137); -lean_inc(x_108); -if (lean_is_scalar(x_117)) { - x_139 = lean_alloc_ctor(1, 1, 0); -} else { - x_139 = x_117; -} -lean_ctor_set(x_139, 0, x_108); -x_140 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -x_141 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5; -x_142 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_142, 0, x_140); -lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_mkMVar(x_108); -x_144 = l_Lean_MessageData_ofExpr(x_143); -x_145 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_145, 0, x_142); -lean_ctor_set(x_145, 1, x_144); -x_146 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7; -x_147 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_147, 0, x_145); -lean_ctor_set(x_147, 1, x_146); -x_148 = l_Lean_MessageData_ofExpr(x_116); -x_149 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_149, 0, x_147); -lean_ctor_set(x_149, 1, x_148); -x_150 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_149, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_5); -return x_150; -} -else -{ -lean_object* x_151; lean_object* x_152; lean_object* x_153; -lean_dec(x_117); -lean_dec(x_116); +lean_object* x_130; lean_object* x_131; lean_dec(x_108); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_151 = lean_ctor_get(x_132, 0); -lean_inc(x_151); -if (lean_is_exclusive(x_132)) { - lean_ctor_release(x_132, 0); - x_152 = x_132; +lean_inc(x_107); +x_130 = lean_alloc_closure((void*)(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___lam__0___boxed), 9, 1); +lean_closure_set(x_130, 0, x_107); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_131 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_130, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +lean_dec_ref(x_131); +x_133 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1; +x_134 = l_Lean_MessageData_ofName(x_132); +x_135 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_135, 0, x_133); +lean_ctor_set(x_135, 1, x_134); +x_136 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3; +x_137 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +lean_inc(x_107); +if (lean_is_scalar(x_116)) { + x_138 = lean_alloc_ctor(1, 1, 0); } else { - lean_dec_ref(x_132); - x_152 = lean_box(0); + x_138 = x_116; } -if (lean_is_scalar(x_152)) { - x_153 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_138, 0, x_107); +x_139 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5; +x_141 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +x_142 = l_Lean_mkMVar(x_107); +x_143 = l_Lean_MessageData_ofExpr(x_142); +x_144 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_144, 0, x_141); +lean_ctor_set(x_144, 1, x_143); +x_145 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7; +x_146 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +x_147 = l_Lean_MessageData_ofExpr(x_115); +x_148 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_148, 0, x_146); +lean_ctor_set(x_148, 1, x_147); +x_149 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_148, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_4); +return x_149; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_107); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_150 = lean_ctor_get(x_131, 0); +lean_inc(x_150); +if (lean_is_exclusive(x_131)) { + lean_ctor_release(x_131, 0); + x_151 = x_131; } else { - x_153 = x_152; + lean_dec_ref(x_131); + x_151 = lean_box(0); } -lean_ctor_set(x_153, 0, x_151); -return x_153; +if (lean_is_scalar(x_151)) { + x_152 = lean_alloc_ctor(1, 1, 0); +} else { + x_152 = x_151; +} +lean_ctor_set(x_152, 0, x_150); +return x_152; } } } else { -lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec(x_117); +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_dec(x_116); -lean_dec(x_109); +lean_dec(x_115); lean_dec(x_108); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_154 = lean_ctor_get(x_128, 0); -lean_inc(x_154); -if (lean_is_exclusive(x_128)) { - lean_ctor_release(x_128, 0); - x_155 = x_128; +lean_dec(x_107); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_153 = lean_ctor_get(x_127, 0); +lean_inc(x_153); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + x_154 = x_127; } else { - lean_dec_ref(x_128); - x_155 = lean_box(0); + lean_dec_ref(x_127); + x_154 = lean_box(0); } -if (lean_is_scalar(x_155)) { - x_156 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_154)) { + x_155 = lean_alloc_ctor(1, 1, 0); } else { - x_156 = x_155; + x_155 = x_154; } -lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_155, 0, x_153); +return x_155; +} +block_126: +{ +lean_object* x_124; +x_124 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_107, x_115, x_117, x_118, x_119, x_120, x_121, x_122); +lean_dec(x_118); +if (lean_obj_tag(x_124) == 0) +{ +lean_dec_ref(x_124); +x_1 = x_108; +x_2 = x_111; +goto _start; +} +else +{ +lean_dec(x_108); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_124; +} +} +} +else +{ +lean_object* x_156; +lean_dec(x_114); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_3); +x_156 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_107, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_156) == 0) +{ +lean_dec_ref(x_156); +x_1 = x_108; +x_2 = x_111; +goto _start; +} +else +{ +lean_dec(x_108); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); return x_156; } -block_127: -{ -lean_object* x_125; -x_125 = l_Lean_MVarId_assign___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__12(x_108, x_116, x_118, x_119, x_120, x_121, x_122, x_123); -lean_dec(x_119); -if (lean_obj_tag(x_125) == 0) -{ -lean_dec_ref(x_125); -x_2 = x_109; -x_3 = x_112; -goto _start; -} -else -{ -lean_dec(x_109); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_125; -} } } else { -lean_object* x_157; -lean_dec(x_115); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_4); -x_157 = l_Lean_Elab_Tactic_Do_addSubGoalAsVC(x_108, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_157) == 0) -{ -lean_dec_ref(x_157); -x_2 = x_109; -x_3 = x_112; -goto _start; -} -else -{ -lean_dec(x_109); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -return x_157; -} -} -} -else -{ -lean_object* x_159; lean_object* x_160; lean_object* x_161; -lean_dec(x_109); +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_dec(x_108); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_159 = lean_ctor_get(x_114, 0); -lean_inc(x_159); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - x_160 = x_114; +lean_dec(x_107); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_158 = lean_ctor_get(x_113, 0); +lean_inc(x_158); +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + x_159 = x_113; } else { - lean_dec_ref(x_114); - x_160 = lean_box(0); + lean_dec_ref(x_113); + x_159 = lean_box(0); } -if (lean_is_scalar(x_160)) { - x_161 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_159)) { + x_160 = lean_alloc_ctor(1, 1, 0); } else { - x_161 = x_160; + x_160 = x_159; } -lean_ctor_set(x_161, 0, x_159); -return x_161; +lean_ctor_set(x_160, 0, x_158); +return x_160; } } else { -lean_dec(x_108); -x_2 = x_109; -x_3 = x_112; +lean_dec(x_107); +x_1 = x_108; +x_2 = x_111; goto _start; } } else { -lean_object* x_163; lean_object* x_164; lean_object* x_165; -lean_dec(x_109); +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_dec(x_108); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_1); -x_163 = lean_ctor_get(x_110, 0); -lean_inc(x_163); -if (lean_is_exclusive(x_110)) { - lean_ctor_release(x_110, 0); - x_164 = x_110; +lean_dec(x_107); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_162 = lean_ctor_get(x_109, 0); +lean_inc(x_162); +if (lean_is_exclusive(x_109)) { + lean_ctor_release(x_109, 0); + x_163 = x_109; } else { - lean_dec_ref(x_110); - x_164 = lean_box(0); + lean_dec_ref(x_109); + x_163 = lean_box(0); } -if (lean_is_scalar(x_164)) { - x_165 = lean_alloc_ctor(1, 1, 0); +if (lean_is_scalar(x_163)) { + x_164 = lean_alloc_ctor(1, 1, 0); } else { - x_165 = x_164; + x_164 = x_163; } -lean_ctor_set(x_165, 0, x_163); -return x_165; +lean_ctor_set(x_164, 0, x_162); +return x_164; } } } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(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) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = lean_box(0); -x_11 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg(x_1, x_2, x_10, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_11) == 0) +lean_object* x_9; lean_object* x_10; +x_9 = lean_box(0); +x_10 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg(x_1, x_9, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_10) == 0) { -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) +uint8_t x_11; +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_10, 0); +lean_dec(x_12); +lean_ctor_set(x_10, 0, x_9); +return x_10; +} +else { lean_object* x_13; -x_13 = lean_ctor_get(x_11, 0); -lean_dec(x_13); -lean_ctor_set(x_11, 0, x_10); -return x_11; -} -else -{ -lean_object* x_14; -lean_dec(x_11); -x_14 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_14, 0, x_10); -return x_14; +lean_dec(x_10); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_9); +return x_13; } } else { -return x_11; +return x_10; } } } @@ -42631,194 +43178,464 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, uint8_t x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_19; lean_object* x_20; +lean_object* x_17; lean_object* x_18; lean_inc_ref(x_1); -x_19 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_simp___boxed), 9, 1); -lean_closure_set(x_19, 0, x_1); -lean_inc(x_17); -lean_inc_ref(x_16); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_simp___boxed), 9, 1); +lean_closure_set(x_17, 0, x_1); lean_inc(x_15); lean_inc_ref(x_14); +lean_inc(x_13); lean_inc_ref(x_12); -x_20 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_19, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_20) == 0) +lean_inc_ref(x_10); +x_18 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_17, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_21; lean_object* x_35; 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; uint8_t x_78; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -lean_dec_ref(x_20); -x_35 = lean_ctor_get(x_21, 0); -x_78 = lean_expr_eqv(x_35, x_1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_63; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); +x_20 = lean_ctor_get(x_19, 0); +x_63 = lean_expr_eqv(x_20, x_1); lean_dec_ref(x_1); -if (x_78 == 0) +if (x_63 == 0) { -if (x_4 == 0) +lean_object* x_64; +x_64 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_11); +if (lean_obj_tag(x_64) == 0) { -lean_dec(x_21); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -goto block_34; -} -else -{ -lean_object* x_79; -x_79 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_13); -if (lean_obj_tag(x_79) == 0) -{ -lean_object* x_80; -lean_dec_ref(x_79); -lean_inc(x_17); -lean_inc_ref(x_16); +lean_object* x_65; +lean_dec_ref(x_64); lean_inc(x_15); lean_inc_ref(x_14); +lean_inc(x_13); lean_inc_ref(x_12); -lean_inc(x_5); -x_80 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_5, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_80) == 0) +lean_inc_ref(x_10); +lean_inc(x_2); +x_65 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_2, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_65) == 0) { -lean_object* x_81; uint8_t x_82; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -lean_dec_ref(x_80); -x_82 = lean_unbox(x_81); -lean_dec(x_81); -if (x_82 == 0) +lean_object* x_66; uint8_t x_67; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +lean_dec_ref(x_65); +x_67 = lean_unbox(x_66); +lean_dec(x_66); +if (x_67 == 0) { -lean_dec(x_5); -x_36 = x_12; -x_37 = x_13; -x_38 = x_14; -x_39 = x_15; -x_40 = x_16; -x_41 = x_17; -x_42 = lean_box(0); -goto block_77; +lean_dec(x_2); +x_21 = x_10; +x_22 = x_11; +x_23 = x_12; +x_24 = x_13; +x_25 = x_14; +x_26 = x_15; +x_27 = lean_box(0); +goto block_62; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1; -lean_inc_ref(x_35); -x_84 = l_Lean_MessageData_ofExpr(x_35); -x_85 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -lean_inc(x_17); -lean_inc_ref(x_16); +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_68 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1; +lean_inc_ref(x_20); +x_69 = l_Lean_MessageData_ofExpr(x_20); +x_70 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); lean_inc(x_15); lean_inc_ref(x_14); +lean_inc(x_13); lean_inc_ref(x_12); -x_86 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_5, x_85, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_86) == 0) +lean_inc_ref(x_10); +x_71 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_2, x_70, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_71) == 0) { -lean_dec_ref(x_86); -x_36 = x_12; -x_37 = x_13; -x_38 = x_14; -x_39 = x_15; -x_40 = x_16; -x_41 = x_17; -x_42 = lean_box(0); -goto block_77; +lean_dec_ref(x_71); +x_21 = x_10; +x_22 = x_11; +x_23 = x_12; +x_24 = x_13; +x_25 = x_14; +x_26 = x_15; +x_27 = lean_box(0); +goto block_62; } else { -uint8_t x_87; -lean_dec(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); +uint8_t x_72; +lean_dec(x_19); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_8); -lean_dec_ref(x_7); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec_ref(x_6); -lean_dec(x_3); -lean_dec_ref(x_2); -x_87 = !lean_is_exclusive(x_86); -if (x_87 == 0) +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_72 = !lean_is_exclusive(x_71); +if (x_72 == 0) { -return x_86; +return x_71; } else { -lean_object* x_88; lean_object* x_89; -x_88 = lean_ctor_get(x_86, 0); -lean_inc(x_88); -lean_dec(x_86); -x_89 = lean_alloc_ctor(1, 1, 0); +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_71, 0); +lean_inc(x_73); +lean_dec(x_71); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_73); +return x_74; +} +} +} +} +else +{ +uint8_t x_75; +lean_dec(x_19); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_75 = !lean_is_exclusive(x_65); +if (x_75 == 0) +{ +return x_65; +} +else +{ +lean_object* x_76; lean_object* x_77; +x_76 = lean_ctor_get(x_65, 0); +lean_inc(x_76); +lean_dec(x_65); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +return x_77; +} +} +} +else +{ +uint8_t x_78; +lean_dec(x_19); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_78 = !lean_is_exclusive(x_64); +if (x_78 == 0) +{ +return x_64; +} +else +{ +lean_object* x_79; lean_object* x_80; +x_79 = lean_ctor_get(x_64, 0); +lean_inc(x_79); +lean_dec(x_64); +x_80 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_80, 0, x_79); +return x_80; +} +} +} +else +{ +lean_object* x_81; +lean_dec(x_19); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_2); +x_81 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_3, x_4, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_13); +lean_dec(x_11); +if (lean_obj_tag(x_81) == 0) +{ +uint8_t x_82; +x_82 = !lean_is_exclusive(x_81); +if (x_82 == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_81, 0); +x_84 = lean_box(0); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_83); +lean_ctor_set(x_85, 1, x_84); +lean_ctor_set(x_81, 0, x_85); +return x_81; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_81, 0); +lean_inc(x_86); +lean_dec(x_81); +x_87 = lean_box(0); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_89, 0, x_88); return x_89; } } -} -} else { uint8_t x_90; -lean_dec(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -x_90 = !lean_is_exclusive(x_80); +x_90 = !lean_is_exclusive(x_81); if (x_90 == 0) { -return x_80; +return x_81; } else { lean_object* x_91; lean_object* x_92; -x_91 = lean_ctor_get(x_80, 0); +x_91 = lean_ctor_get(x_81, 0); lean_inc(x_91); -lean_dec(x_80); +lean_dec(x_81); x_92 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_92, 0, x_91); return x_92; } } } +block_62: +{ +lean_object* x_28; lean_object* x_29; +lean_inc_ref(x_20); +lean_inc_ref(x_3); +x_28 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_20); +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +x_29 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_28, x_4, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +lean_dec_ref(x_29); +x_31 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8)); +x_32 = 0; +x_33 = l_Lean_Expr_app___override(x_5, x_6); +x_34 = 0; +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +x_35 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__33(x_3, x_7, x_8, x_31, x_32, x_33, x_34, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_35) == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +lean_dec_ref(x_35); +x_37 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed), 10, 2); +lean_closure_set(x_37, 0, x_36); +lean_closure_set(x_37, 1, x_19); +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc_ref(x_21); +x_38 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_37, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec_ref(x_38); +x_40 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); +lean_closure_set(x_40, 0, x_39); +lean_closure_set(x_40, 1, x_30); +x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_21, x_22, x_23, x_24, x_25, x_26); +lean_dec(x_22); +if (lean_obj_tag(x_41) == 0) +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_box(0); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_41, 0, x_45); +return x_41; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = lean_ctor_get(x_41, 0); +lean_inc(x_46); +lean_dec(x_41); +x_47 = lean_box(0); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_49, 0, x_48); +return x_49; +} +} +else +{ +uint8_t x_50; +x_50 = !lean_is_exclusive(x_41); +if (x_50 == 0) +{ +return x_41; +} +else +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_41, 0); +lean_inc(x_51); +lean_dec(x_41); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; +} +} +} +else +{ +uint8_t x_53; +lean_dec(x_30); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +x_53 = !lean_is_exclusive(x_38); +if (x_53 == 0) +{ +return x_38; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_38, 0); +lean_inc(x_54); +lean_dec(x_38); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_54); +return x_55; +} +} +} +else +{ +uint8_t x_56; +lean_dec(x_30); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_19); +x_56 = !lean_is_exclusive(x_35); +if (x_56 == 0) +{ +return x_35; +} +else +{ +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_35, 0); +lean_inc(x_57); +lean_dec(x_35); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_57); +return x_58; +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_19); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_59 = !lean_is_exclusive(x_29); +if (x_59 == 0) +{ +return x_29; +} +else +{ +lean_object* x_60; lean_object* x_61; +x_60 = lean_ctor_get(x_29, 0); +lean_inc(x_60); +lean_dec(x_29); +x_61 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_61, 0, x_60); +return x_61; +} +} +} +} else { uint8_t x_93; -lean_dec(x_21); -lean_dec(x_17); -lean_dec_ref(x_16); lean_dec(x_15); lean_dec_ref(x_14); lean_dec(x_13); lean_dec_ref(x_12); -lean_dec_ref(x_8); -lean_dec_ref(x_7); +lean_dec(x_11); +lean_dec_ref(x_10); lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -x_93 = !lean_is_exclusive(x_79); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_93 = !lean_is_exclusive(x_18); if (x_93 == 0) { -return x_79; +return x_18; } else { lean_object* x_94; lean_object* x_95; -x_94 = lean_ctor_get(x_79, 0); +x_94 = lean_ctor_get(x_18, 0); lean_inc(x_94); -lean_dec(x_79); +lean_dec(x_18); x_95 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_95, 0, x_94); return x_95; @@ -42826,297 +43643,6 @@ return x_95; } } } -else -{ -lean_dec(x_21); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -goto block_34; -} -block_34: -{ -lean_object* x_22; -x_22 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_15); -lean_dec(x_13); -if (lean_obj_tag(x_22) == 0) -{ -uint8_t x_23; -x_23 = !lean_is_exclusive(x_22); -if (x_23 == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_22, 0); -x_25 = lean_box(0); -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_24); -lean_ctor_set(x_26, 1, x_25); -lean_ctor_set(x_22, 0, x_26); -return x_22; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_ctor_get(x_22, 0); -lean_inc(x_27); -lean_dec(x_22); -x_28 = lean_box(0); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -return x_30; -} -} -else -{ -uint8_t x_31; -x_31 = !lean_is_exclusive(x_22); -if (x_31 == 0) -{ -return x_22; -} -else -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_22, 0); -lean_inc(x_32); -lean_dec(x_22); -x_33 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_33, 0, x_32); -return x_33; -} -} -} -block_77: -{ -lean_object* x_43; lean_object* x_44; -lean_inc_ref(x_35); -lean_inc_ref(x_2); -x_43 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_35); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc(x_39); -lean_inc_ref(x_38); -lean_inc(x_37); -lean_inc_ref(x_36); -x_44 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_6, x_43, x_3, x_36, x_37, x_38, x_39, x_40, x_41); -if (lean_obj_tag(x_44) == 0) -{ -lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec_ref(x_44); -x_46 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8)); -x_47 = 0; -x_48 = l_Lean_Expr_app___override(x_7, x_8); -x_49 = 0; -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc(x_39); -lean_inc_ref(x_38); -lean_inc(x_37); -lean_inc_ref(x_36); -x_50 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__31(x_2, x_9, x_10, x_46, x_47, x_48, x_49, x_36, x_37, x_38, x_39, x_40, x_41); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_50, 0); -lean_inc(x_51); -lean_dec_ref(x_50); -x_52 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed), 10, 2); -lean_closure_set(x_52, 0, x_51); -lean_closure_set(x_52, 1, x_21); -lean_inc(x_41); -lean_inc_ref(x_40); -lean_inc(x_39); -lean_inc_ref(x_38); -lean_inc_ref(x_36); -x_53 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_36, x_37, x_38, x_39, x_40, x_41); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec_ref(x_53); -x_55 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); -lean_closure_set(x_55, 0, x_54); -lean_closure_set(x_55, 1, x_45); -x_56 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_55, x_36, x_37, x_38, x_39, x_40, x_41); -lean_dec(x_37); -if (lean_obj_tag(x_56) == 0) -{ -uint8_t x_57; -x_57 = !lean_is_exclusive(x_56); -if (x_57 == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_56, 0); -x_59 = lean_box(0); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -lean_ctor_set(x_56, 0, x_60); -return x_56; -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_61 = lean_ctor_get(x_56, 0); -lean_inc(x_61); -lean_dec(x_56); -x_62 = lean_box(0); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -x_64 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; -} -} -else -{ -uint8_t x_65; -x_65 = !lean_is_exclusive(x_56); -if (x_65 == 0) -{ -return x_56; -} -else -{ -lean_object* x_66; lean_object* x_67; -x_66 = lean_ctor_get(x_56, 0); -lean_inc(x_66); -lean_dec(x_56); -x_67 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; -} -} -} -else -{ -uint8_t x_68; -lean_dec(x_45); -lean_dec(x_41); -lean_dec_ref(x_40); -lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); -x_68 = !lean_is_exclusive(x_53); -if (x_68 == 0) -{ -return x_53; -} -else -{ -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_53, 0); -lean_inc(x_69); -lean_dec(x_53); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -return x_70; -} -} -} -else -{ -uint8_t x_71; -lean_dec(x_45); -lean_dec(x_41); -lean_dec_ref(x_40); -lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); -lean_dec(x_21); -x_71 = !lean_is_exclusive(x_50); -if (x_71 == 0) -{ -return x_50; -} -else -{ -lean_object* x_72; lean_object* x_73; -x_72 = lean_ctor_get(x_50, 0); -lean_inc(x_72); -lean_dec(x_50); -x_73 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_73, 0, x_72); -return x_73; -} -} -} -else -{ -uint8_t x_74; -lean_dec(x_41); -lean_dec_ref(x_40); -lean_dec(x_39); -lean_dec_ref(x_38); -lean_dec(x_37); -lean_dec_ref(x_36); -lean_dec(x_21); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_2); -x_74 = !lean_is_exclusive(x_44); -if (x_74 == 0) -{ -return x_44; -} -else -{ -lean_object* x_75; lean_object* x_76; -x_75 = lean_ctor_get(x_44, 0); -lean_inc(x_75); -lean_dec(x_44); -x_76 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_76, 0, x_75); -return x_76; -} -} -} -} -else -{ -uint8_t x_96; -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_96 = !lean_is_exclusive(x_20); -if (x_96 == 0) -{ -return x_20; -} -else -{ -lean_object* x_97; lean_object* x_98; -x_97 = lean_ctor_get(x_20, 0); -lean_inc(x_97); -lean_dec(x_20); -x_98 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_98, 0, x_97); -return x_98; -} -} -} -} static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__4() { _start: { @@ -43144,376 +43670,298 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10() { +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__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, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__11)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__13)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__15)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__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, uint8_t x_8, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = l_Lean_mkAppN(x_1, x_2); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = l_Lean_mkAppN(x_1, x_2); lean_inc_ref(x_3); -x_18 = lean_apply_1(x_3, x_17); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc(x_7); -lean_inc_ref(x_6); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_18, x_5, x_6, x_7, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_19) == 0) +x_17 = lean_apply_1(x_3, x_16); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_6); +lean_inc_ref(x_5); +x_18 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_17, x_4, x_5, x_6, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -lean_dec_ref(x_19); +lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec_ref(x_18); lean_inc_ref(x_2); -x_21 = lean_array_push(x_2, x_11); -x_22 = 1; +x_20 = lean_array_push(x_2, x_10); +x_21 = 1; +x_22 = lean_box(x_7); x_23 = lean_box(x_8); -x_24 = lean_box(x_9); -x_25 = lean_box(x_22); -lean_inc_ref(x_21); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___lam__0___boxed), 13, 5); -lean_closure_set(x_26, 0, x_21); -lean_closure_set(x_26, 1, x_20); -lean_closure_set(x_26, 2, x_23); -lean_closure_set(x_26, 3, x_24); -lean_closure_set(x_26, 4, x_25); -lean_inc(x_15); -lean_inc_ref(x_14); -lean_inc(x_13); -lean_inc_ref(x_12); -lean_inc_ref(x_6); -x_27 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_26, x_6, x_7, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_27) == 0) +x_24 = lean_box(x_21); +lean_inc_ref(x_20); +x_25 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___lam__0___boxed), 13, 5); +lean_closure_set(x_25, 0, x_20); +lean_closure_set(x_25, 1, x_19); +lean_closure_set(x_25, 2, x_22); +lean_closure_set(x_25, 3, x_23); +lean_closure_set(x_25, 4, x_24); +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc_ref(x_5); +x_26 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_25, x_5, x_6, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_28; 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; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -lean_dec_ref(x_27); -x_29 = l_Lean_Expr_beta(x_10, x_2); -x_30 = lean_apply_1(x_3, x_29); -x_31 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_30); +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; lean_object* x_34; lean_object* x_35; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +lean_dec_ref(x_26); +x_28 = l_Lean_Expr_beta(x_9, x_2); +x_29 = lean_apply_1(x_3, x_28); +x_30 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_29); +x_31 = lean_box(x_7); x_32 = lean_box(x_8); -x_33 = lean_box(x_9); -x_34 = lean_box(x_22); -x_35 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__2___boxed), 13, 5); -lean_closure_set(x_35, 0, x_21); -lean_closure_set(x_35, 1, x_31); -lean_closure_set(x_35, 2, x_32); -lean_closure_set(x_35, 3, x_33); -lean_closure_set(x_35, 4, x_34); -x_36 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_35, x_6, x_7, x_12, x_13, x_14, x_15); -lean_dec(x_7); -if (lean_obj_tag(x_36) == 0) -{ -uint8_t x_37; -x_37 = !lean_is_exclusive(x_36); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_36, 0); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_28); -lean_ctor_set(x_39, 1, x_38); -lean_ctor_set(x_36, 0, x_39); -return x_36; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_36, 0); -lean_inc(x_40); -lean_dec(x_36); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_28); -lean_ctor_set(x_41, 1, x_40); -x_42 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; -} -} -else -{ -uint8_t x_43; -lean_dec(x_28); -x_43 = !lean_is_exclusive(x_36); -if (x_43 == 0) -{ -return x_36; -} -else -{ -lean_object* x_44; lean_object* x_45; -x_44 = lean_ctor_get(x_36, 0); -lean_inc(x_44); -lean_dec(x_36); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -return x_45; -} -} -} -else -{ -uint8_t x_46; -lean_dec_ref(x_21); -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_46 = !lean_is_exclusive(x_27); -if (x_46 == 0) -{ -return x_27; -} -else -{ -lean_object* x_47; lean_object* x_48; -x_47 = lean_ctor_get(x_27, 0); -lean_inc(x_47); -lean_dec(x_27); -x_48 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_48, 0, x_47); -return x_48; -} -} -} -else -{ -uint8_t x_49; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_49 = !lean_is_exclusive(x_19); -if (x_49 == 0) -{ -return x_19; -} -else -{ -lean_object* x_50; lean_object* x_51; -x_50 = lean_ctor_get(x_19, 0); -lean_inc(x_50); -lean_dec(x_19); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -uint8_t x_17; uint8_t x_18; lean_object* x_19; -x_17 = lean_unbox(x_8); -x_18 = lean_unbox(x_9); -x_19 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_17, x_18, x_10, x_11, x_12, x_13, x_14, x_15); -return x_19; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40(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, uint8_t x_14, lean_object* x_15, lean_object* x_16, uint8_t x_17, lean_object* x_18, uint8_t x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25) { -_start: -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_27 = lean_unsigned_to_nat(2u); -x_28 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1)); -x_29 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2)); -x_30 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__0___boxed), 13, 12); -lean_closure_set(x_30, 0, x_3); -lean_closure_set(x_30, 1, x_4); -lean_closure_set(x_30, 2, x_5); -lean_closure_set(x_30, 3, x_6); -lean_closure_set(x_30, 4, x_7); -lean_closure_set(x_30, 5, x_8); -lean_closure_set(x_30, 6, x_27); -lean_closure_set(x_30, 7, x_28); -lean_closure_set(x_30, 8, x_29); -lean_closure_set(x_30, 9, x_9); -lean_closure_set(x_30, 10, x_10); -lean_closure_set(x_30, 11, x_11); -x_31 = 0; -x_32 = lean_box(x_31); -x_33 = lean_box(x_14); -x_34 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___lam__1___boxed), 16, 10); -lean_closure_set(x_34, 0, x_1); -lean_closure_set(x_34, 1, x_2); -lean_closure_set(x_34, 2, x_30); -lean_closure_set(x_34, 3, x_12); -lean_closure_set(x_34, 4, x_13); -lean_closure_set(x_34, 5, x_20); -lean_closure_set(x_34, 6, x_21); -lean_closure_set(x_34, 7, x_32); -lean_closure_set(x_34, 8, x_33); -lean_closure_set(x_34, 9, x_15); -x_35 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_16, x_17, x_18, x_34, x_19, x_22, x_23, x_24, x_25); +x_33 = lean_box(x_21); +x_34 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__2___boxed), 13, 5); +lean_closure_set(x_34, 0, x_20); +lean_closure_set(x_34, 1, x_30); +lean_closure_set(x_34, 2, x_31); +lean_closure_set(x_34, 3, x_32); +lean_closure_set(x_34, 4, x_33); +x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_5, x_6, x_11, x_12, x_13, x_14); +lean_dec(x_6); if (lean_obj_tag(x_35) == 0) { -return x_35; -} -else -{ uint8_t x_36; x_36 = !lean_is_exclusive(x_35); if (x_36 == 0) { +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_35, 0); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_27); +lean_ctor_set(x_38, 1, x_37); +lean_ctor_set(x_35, 0, x_38); return x_35; } else { -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_35, 0); -lean_inc(x_37); +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_35, 0); +lean_inc(x_39); lean_dec(x_35); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -return x_38; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, uint8_t x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27) { -_start: -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_inc_ref(x_20); -x_29 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed), 14, 3); -lean_closure_set(x_29, 0, x_1); -lean_closure_set(x_29, 1, x_2); -lean_closure_set(x_29, 2, x_20); -x_30 = l_Lean_mkSort(x_3); -lean_inc(x_27); -lean_inc_ref(x_26); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -x_31 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(x_4, x_30, x_29, x_5, x_22, x_23, x_24, x_25, x_26, x_27); -if (lean_obj_tag(x_31) == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -lean_dec_ref(x_31); -x_33 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___lam__7___closed__2)); -lean_inc(x_27); -lean_inc_ref(x_26); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc_ref(x_22); -x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_22, x_23, x_24, x_25, x_26, x_27); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; uint8_t x_36; uint8_t x_37; lean_object* x_38; -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -lean_dec_ref(x_34); -x_36 = 0; -x_37 = 0; -x_38 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40(x_6, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_35, x_36, x_32, x_37, x_22, x_23, x_24, x_25, x_26, x_27); -return x_38; -} -else -{ -uint8_t x_39; -lean_dec(x_32); -lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec_ref(x_20); -lean_dec_ref(x_19); -lean_dec(x_17); -lean_dec_ref(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -x_39 = !lean_is_exclusive(x_34); -if (x_39 == 0) -{ -return x_34; -} -else -{ -lean_object* x_40; lean_object* x_41; -x_40 = lean_ctor_get(x_34, 0); -lean_inc(x_40); -lean_dec(x_34); -x_41 = lean_alloc_ctor(1, 1, 0); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_27); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_41, 0, x_40); return x_41; } } -} else { uint8_t x_42; lean_dec(x_27); -lean_dec_ref(x_26); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); +x_42 = !lean_is_exclusive(x_35); +if (x_42 == 0) +{ +return x_35; +} +else +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_35, 0); +lean_inc(x_43); +lean_dec(x_35); +x_44 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_44, 0, x_43); +return x_44; +} +} +} +else +{ +uint8_t x_45; lean_dec_ref(x_20); +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_45 = !lean_is_exclusive(x_26); +if (x_45 == 0) +{ +return x_26; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_26, 0); +lean_inc(x_46); +lean_dec(x_26); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +} +else +{ +uint8_t x_48; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_48 = !lean_is_exclusive(x_18); +if (x_48 == 0) +{ +return x_18; +} +else +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_18, 0); +lean_inc(x_49); +lean_dec(x_18); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +return x_50; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__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, lean_object* x_14, lean_object* x_15) { +_start: +{ +uint8_t x_16; uint8_t x_17; lean_object* x_18; +x_16 = lean_unbox(x_7); +x_17 = lean_unbox(x_8); +x_18 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__1(x_1, x_2, x_3, x_4, x_5, x_6, x_16, x_17, x_9, x_10, x_11, x_12, x_13, x_14); +return x_18; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42(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, uint8_t x_13, lean_object* x_14, lean_object* x_15, uint8_t x_16, lean_object* x_17, uint8_t x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24) { +_start: +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_26 = lean_unsigned_to_nat(2u); +x_27 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mRevertForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__15___closed__1)); +x_28 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__2)); +x_29 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__0___boxed), 13, 12); +lean_closure_set(x_29, 0, x_3); +lean_closure_set(x_29, 1, x_4); +lean_closure_set(x_29, 2, x_5); +lean_closure_set(x_29, 3, x_6); +lean_closure_set(x_29, 4, x_7); +lean_closure_set(x_29, 5, x_8); +lean_closure_set(x_29, 6, x_26); +lean_closure_set(x_29, 7, x_27); +lean_closure_set(x_29, 8, x_28); +lean_closure_set(x_29, 9, x_9); +lean_closure_set(x_29, 10, x_10); +lean_closure_set(x_29, 11, x_11); +x_30 = 0; +x_31 = lean_box(x_30); +x_32 = lean_box(x_13); +x_33 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___lam__1___boxed), 15, 9); +lean_closure_set(x_33, 0, x_1); +lean_closure_set(x_33, 1, x_2); +lean_closure_set(x_33, 2, x_29); +lean_closure_set(x_33, 3, x_12); +lean_closure_set(x_33, 4, x_19); +lean_closure_set(x_33, 5, x_20); +lean_closure_set(x_33, 6, x_31); +lean_closure_set(x_33, 7, x_32); +lean_closure_set(x_33, 8, x_14); +x_34 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp(lean_box(0), x_15, x_16, x_17, x_33, x_18, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_34) == 0) +{ +return x_34; +} +else +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +return x_34; +} +else +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_34, 0); +lean_inc(x_36); +lean_dec(x_34); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +return x_37; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16, uint8_t x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26) { +_start: +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_inc_ref(x_19); +x_28 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__4___boxed), 14, 3); +lean_closure_set(x_28, 0, x_1); +lean_closure_set(x_28, 1, x_2); +lean_closure_set(x_28, 2, x_19); +x_29 = l_Lean_mkSort(x_3); +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +x_30 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(x_4, x_29, x_28, x_5, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +lean_dec_ref(x_30); +x_32 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___lam__7___closed__0)); +lean_inc(x_26); +lean_inc_ref(x_25); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc_ref(x_21); +x_33 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_32, x_21, x_22, x_23, x_24, x_25, x_26); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; uint8_t x_35; uint8_t x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec_ref(x_33); +x_35 = 0; +x_36 = 0; +x_37 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42(x_6, x_19, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_34, x_35, x_31, x_36, x_21, x_22, x_23, x_24, x_25, x_26); +return x_37; +} +else +{ +uint8_t x_38; +lean_dec(x_31); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); lean_dec_ref(x_19); -lean_dec(x_17); -lean_dec_ref(x_16); +lean_dec_ref(x_18); +lean_dec(x_16); lean_dec_ref(x_15); lean_dec(x_14); lean_dec(x_13); @@ -43524,20 +43972,59 @@ lean_dec_ref(x_9); lean_dec_ref(x_8); lean_dec_ref(x_7); lean_dec_ref(x_6); -x_42 = !lean_is_exclusive(x_31); -if (x_42 == 0) +x_38 = !lean_is_exclusive(x_33); +if (x_38 == 0) { -return x_31; +return x_33; } else { -lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_31, 0); -lean_inc(x_43); -lean_dec(x_31); -x_44 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_44, 0, x_43); -return x_44; +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_33, 0); +lean_inc(x_39); +lean_dec(x_33); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +return x_40; +} +} +} +else +{ +uint8_t x_41; +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_16); +lean_dec_ref(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_41 = !lean_is_exclusive(x_30); +if (x_41 == 0) +{ +return x_30; +} +else +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_ctor_get(x_30, 0); +lean_inc(x_42); +lean_dec(x_30); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +return x_43; } } } @@ -43570,23 +44057,22 @@ lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; lean_object* x_26 = _args[25]; lean_object* x_27 = _args[26]; -lean_object* x_28 = _args[27]; _start: { -uint8_t x_29; uint8_t x_30; lean_object* x_31; -x_29 = lean_unbox(x_5); -x_30 = lean_unbox(x_18); -x_31 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(x_1, x_2, x_3, x_4, x_29, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_30, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27); -lean_dec_ref(x_21); -return x_31; +uint8_t x_28; uint8_t x_29; lean_object* x_30; +x_28 = lean_unbox(x_5); +x_29 = lean_unbox(x_17); +x_30 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6(x_1, x_2, x_3, x_4, x_28, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_29, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26); +lean_dec_ref(x_20); +return x_30; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___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) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1() { @@ -43634,519 +44120,494 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_40; -x_40 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_12); -if (lean_obj_tag(x_40) == 0) +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_39; +x_39 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_11); +if (lean_obj_tag(x_39) == 0) { -lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -lean_dec_ref(x_40); -x_41 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_41, 0, x_1); -x_42 = 0; -x_43 = lean_box(0); -x_44 = lean_box(x_42); -x_45 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1___boxed), 11, 3); -lean_closure_set(x_45, 0, x_41); -lean_closure_set(x_45, 1, x_44); -lean_closure_set(x_45, 2, x_43); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc_ref(x_11); -x_46 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_45, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_46) == 0) +lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_dec_ref(x_39); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_1); +x_41 = 0; +x_42 = lean_box(0); +x_43 = lean_box(x_41); +x_44 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__1___boxed), 11, 3); +lean_closure_set(x_44, 0, x_40); +lean_closure_set(x_44, 1, x_43); +lean_closure_set(x_44, 2, x_42); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_45 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_44, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_45) == 0) { -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -lean_dec_ref(x_46); -lean_inc(x_47); +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +lean_dec_ref(x_45); +lean_inc(x_46); lean_inc_ref(x_2); -x_48 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_47); -x_49 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_48); -lean_inc_ref(x_8); -lean_inc_ref(x_49); -x_50 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3___boxed), 10, 2); -lean_closure_set(x_50, 0, x_49); -lean_closure_set(x_50, 1, x_8); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc_ref(x_11); -x_51 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_50, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_51) == 0) +x_47 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_46); +x_48 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_47); +lean_inc_ref(x_7); +lean_inc_ref(x_48); +x_49 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__3___boxed), 10, 2); +lean_closure_set(x_49, 0, x_48); +lean_closure_set(x_49, 1, x_7); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_50 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_49, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_50) == 0) { -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; uint8_t x_82; -x_52 = lean_ctor_get(x_51, 0); -lean_inc(x_52); -lean_dec_ref(x_51); -x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5___boxed), 9, 1); -lean_closure_set(x_53, 0, x_47); -x_82 = lean_unbox(x_52); -lean_dec(x_52); -if (x_82 == 0) -{ -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; -x_83 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__5; -x_84 = l_Lean_MessageData_ofExpr(x_8); -x_85 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_85, 0, x_83); -lean_ctor_set(x_85, 1, x_84); -x_86 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__7; -x_87 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -x_88 = l_Lean_MessageData_ofExpr(x_49); -x_89 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -x_90 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__9; -x_91 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_91, 0, x_89); -lean_ctor_set(x_91, 1, x_90); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc_ref(x_11); -x_92 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_91, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_92) == 0) -{ -lean_dec_ref(x_92); -x_54 = x_11; -x_55 = x_12; -x_56 = x_13; -x_57 = x_14; -x_58 = x_15; -x_59 = x_16; -x_60 = lean_box(0); -goto block_81; -} -else -{ -uint8_t x_93; -lean_dec_ref(x_53); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_93 = !lean_is_exclusive(x_92); -if (x_93 == 0) -{ -return x_92; -} -else -{ -lean_object* x_94; lean_object* x_95; -x_94 = lean_ctor_get(x_92, 0); -lean_inc(x_94); -lean_dec(x_92); -x_95 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_95, 0, x_94); -return x_95; -} -} -} -else -{ -lean_dec_ref(x_49); -lean_dec_ref(x_8); -x_54 = x_11; -x_55 = x_12; -x_56 = x_13; -x_57 = x_14; -x_58 = x_15; -x_59 = x_16; -x_60 = lean_box(0); -goto block_81; -} -block_81: -{ -lean_object* x_61; -lean_inc(x_59); -lean_inc_ref(x_58); -lean_inc(x_57); -lean_inc_ref(x_56); -lean_inc_ref(x_54); -x_61 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_53, x_54, x_55, x_56, x_57, x_58, x_59); -if (lean_obj_tag(x_61) == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -lean_dec_ref(x_61); -lean_inc(x_62); -lean_inc(x_9); -x_63 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4___boxed), 10, 2); -lean_closure_set(x_63, 0, x_9); -lean_closure_set(x_63, 1, x_62); -lean_inc(x_59); -lean_inc_ref(x_58); -lean_inc(x_57); -lean_inc_ref(x_56); -lean_inc_ref(x_54); -x_64 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_63, x_54, x_55, x_56, x_57, x_58, x_59); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -lean_dec_ref(x_64); -x_66 = lean_ctor_get(x_65, 0); -lean_inc_ref(x_66); -x_67 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed), 10, 2); -lean_closure_set(x_67, 0, x_6); -lean_closure_set(x_67, 1, x_65); -x_68 = lean_expr_eqv(x_66, x_62); -if (x_68 == 0) -{ -lean_dec(x_62); -x_18 = x_67; -x_19 = x_66; -x_20 = x_54; -x_21 = x_55; -x_22 = x_56; -x_23 = x_57; -x_24 = x_58; -x_25 = x_59; -x_26 = lean_box(0); -goto block_39; -} -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; -x_69 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1; -x_70 = l_Lean_indentExpr(x_62); -x_71 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -x_72 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__3; -x_73 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -lean_inc(x_59); -lean_inc_ref(x_58); -lean_inc(x_57); -lean_inc_ref(x_56); -lean_inc_ref(x_54); -x_74 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_73, x_54, x_55, x_56, x_57, x_58, x_59); -if (lean_obj_tag(x_74) == 0) -{ -lean_dec_ref(x_74); -x_18 = x_67; -x_19 = x_66; -x_20 = x_54; -x_21 = x_55; -x_22 = x_56; -x_23 = x_57; -x_24 = x_58; -x_25 = x_59; -x_26 = lean_box(0); -goto block_39; -} -else -{ -uint8_t x_75; -lean_dec_ref(x_67); -lean_dec_ref(x_66); -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_75 = !lean_is_exclusive(x_74); -if (x_75 == 0) -{ -return x_74; -} -else -{ -lean_object* x_76; lean_object* x_77; -x_76 = lean_ctor_get(x_74, 0); -lean_inc(x_76); -lean_dec(x_74); -x_77 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_77, 0, x_76); -return x_77; -} -} -} -} -else -{ -uint8_t x_78; -lean_dec(x_62); -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_78 = !lean_is_exclusive(x_64); -if (x_78 == 0) -{ -return x_64; -} -else -{ -lean_object* x_79; lean_object* x_80; -x_79 = lean_ctor_get(x_64, 0); -lean_inc(x_79); -lean_dec(x_64); -x_80 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_80, 0, x_79); -return x_80; -} -} -} -else -{ -lean_dec(x_59); -lean_dec_ref(x_58); -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec(x_55); -lean_dec_ref(x_54); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_61; -} -} -} -else -{ -uint8_t x_96; -lean_dec_ref(x_49); -lean_dec(x_47); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -x_96 = !lean_is_exclusive(x_51); -if (x_96 == 0) -{ -return x_51; -} -else -{ -lean_object* x_97; lean_object* x_98; -x_97 = lean_ctor_get(x_51, 0); -lean_inc(x_97); +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; uint8_t x_81; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +lean_dec_ref(x_50); +x_52 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__5___boxed), 9, 1); +lean_closure_set(x_52, 0, x_46); +x_81 = lean_unbox(x_51); lean_dec(x_51); -x_98 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_98, 0, x_97); -return x_98; -} -} +if (x_81 == 0) +{ +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; +x_82 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__5; +x_83 = l_Lean_MessageData_ofExpr(x_7); +x_84 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +x_85 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__7; +x_86 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +x_87 = l_Lean_MessageData_ofExpr(x_48); +x_88 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +x_89 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__9; +x_90 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_91 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_90, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_91) == 0) +{ +lean_dec_ref(x_91); +x_53 = x_10; +x_54 = x_11; +x_55 = x_12; +x_56 = x_13; +x_57 = x_14; +x_58 = x_15; +x_59 = lean_box(0); +goto block_80; } else { -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); +uint8_t x_92; +lean_dec_ref(x_52); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); -return x_46; +x_92 = !lean_is_exclusive(x_91); +if (x_92 == 0) +{ +return x_91; +} +else +{ +lean_object* x_93; lean_object* x_94; +x_93 = lean_ctor_get(x_91, 0); +lean_inc(x_93); +lean_dec(x_91); +x_94 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_94, 0, x_93); +return x_94; +} } } else { -uint8_t x_99; -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); +lean_dec_ref(x_48); +lean_dec_ref(x_7); +x_53 = x_10; +x_54 = x_11; +x_55 = x_12; +x_56 = x_13; +x_57 = x_14; +x_58 = x_15; +x_59 = lean_box(0); +goto block_80; +} +block_80: +{ +lean_object* x_60; +lean_inc(x_58); +lean_inc_ref(x_57); +lean_inc(x_56); +lean_inc_ref(x_55); +lean_inc_ref(x_53); +x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_52, x_53, x_54, x_55, x_56, x_57, x_58); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +lean_dec_ref(x_60); +lean_inc(x_61); +lean_inc(x_8); +x_62 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__4___boxed), 10, 2); +lean_closure_set(x_62, 0, x_8); +lean_closure_set(x_62, 1, x_61); +lean_inc(x_58); +lean_inc_ref(x_57); +lean_inc(x_56); +lean_inc_ref(x_55); +lean_inc_ref(x_53); +x_63 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_62, x_53, x_54, x_55, x_56, x_57, x_58); +if (lean_obj_tag(x_63) == 0) +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +lean_dec_ref(x_63); +x_65 = lean_ctor_get(x_64, 0); +lean_inc_ref(x_65); +x_66 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__8___boxed), 10, 2); +lean_closure_set(x_66, 0, x_5); +lean_closure_set(x_66, 1, x_64); +x_67 = lean_expr_eqv(x_65, x_61); +if (x_67 == 0) +{ +lean_dec(x_61); +x_17 = x_66; +x_18 = x_65; +x_19 = x_53; +x_20 = x_54; +x_21 = x_55; +x_22 = x_56; +x_23 = x_57; +x_24 = x_58; +x_25 = lean_box(0); +goto block_38; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_68 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1; +x_69 = l_Lean_indentExpr(x_61); +x_70 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +x_71 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__3; +x_72 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +lean_inc(x_58); +lean_inc_ref(x_57); +lean_inc(x_56); +lean_inc_ref(x_55); +lean_inc_ref(x_53); +x_73 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_72, x_53, x_54, x_55, x_56, x_57, x_58); +if (lean_obj_tag(x_73) == 0) +{ +lean_dec_ref(x_73); +x_17 = x_66; +x_18 = x_65; +x_19 = x_53; +x_20 = x_54; +x_21 = x_55; +x_22 = x_56; +x_23 = x_57; +x_24 = x_58; +x_25 = lean_box(0); +goto block_38; +} +else +{ +uint8_t x_74; +lean_dec_ref(x_66); +lean_dec_ref(x_65); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_74 = !lean_is_exclusive(x_73); +if (x_74 == 0) +{ +return x_73; +} +else +{ +lean_object* x_75; lean_object* x_76; +x_75 = lean_ctor_get(x_73, 0); +lean_inc(x_75); +lean_dec(x_73); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +return x_76; +} +} +} +} +else +{ +uint8_t x_77; +lean_dec(x_61); +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_77 = !lean_is_exclusive(x_63); +if (x_77 == 0) +{ +return x_63; +} +else +{ +lean_object* x_78; lean_object* x_79; +x_78 = lean_ctor_get(x_63, 0); +lean_inc(x_78); +lean_dec(x_63); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +return x_79; +} +} +} +else +{ +lean_dec(x_58); +lean_dec_ref(x_57); +lean_dec(x_56); +lean_dec_ref(x_55); +lean_dec(x_54); +lean_dec_ref(x_53); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_60; +} +} +} +else +{ +uint8_t x_95; +lean_dec_ref(x_48); +lean_dec(x_46); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_95 = !lean_is_exclusive(x_50); +if (x_95 == 0) +{ +return x_50; +} +else +{ +lean_object* x_96; lean_object* x_97; +x_96 = lean_ctor_get(x_50, 0); +lean_inc(x_96); +lean_dec(x_50); +x_97 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_97, 0, x_96); +return x_97; +} +} +} +else +{ +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_45; +} +} +else +{ +uint8_t x_98; +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_99 = !lean_is_exclusive(x_40); -if (x_99 == 0) +x_98 = !lean_is_exclusive(x_39); +if (x_98 == 0) { -return x_40; +return x_39; } else { -lean_object* x_100; lean_object* x_101; -x_100 = lean_ctor_get(x_40, 0); -lean_inc(x_100); -lean_dec(x_40); -x_101 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_101, 0, x_100); -return x_101; +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_39, 0); +lean_inc(x_99); +lean_dec(x_39); +x_100 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_100, 0, x_99); +return x_100; } } -block_39: +block_38: { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_19); -x_28 = l_Lean_Name_append(x_3, x_7); -x_29 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___boxed), 10, 3); -lean_closure_set(x_29, 0, x_4); -lean_closure_set(x_29, 1, x_27); -lean_closure_set(x_29, 2, x_28); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc(x_21); -lean_inc_ref(x_20); -x_30 = lean_apply_10(x_5, x_9, x_10, x_29, x_20, x_21, x_22, x_23, x_24, x_25, lean_box(0)); -if (lean_obj_tag(x_30) == 0) +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_18); +x_27 = l_Lean_Name_append(x_3, x_6); +x_28 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___boxed), 9, 2); +lean_closure_set(x_28, 0, x_26); +lean_closure_set(x_28, 1, x_27); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +lean_inc(x_20); +lean_inc_ref(x_19); +x_29 = lean_apply_10(x_4, x_8, x_9, x_28, x_19, x_20, x_21, x_22, x_23, x_24, lean_box(0)); +if (lean_obj_tag(x_29) == 0) { -lean_object* x_31; lean_object* x_32; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -lean_dec_ref(x_30); -lean_inc(x_25); -lean_inc_ref(x_24); -lean_inc(x_23); -lean_inc_ref(x_22); -lean_inc_ref(x_20); -x_32 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_18, x_20, x_21, x_22, x_23, x_24, x_25); -if (lean_obj_tag(x_32) == 0) +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +lean_dec_ref(x_29); +lean_inc(x_24); +lean_inc_ref(x_23); +lean_inc(x_22); +lean_inc_ref(x_21); +lean_inc_ref(x_19); +x_31 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_17, x_19, x_20, x_21, x_22, x_23, x_24); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -lean_dec_ref(x_32); -x_34 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); -lean_closure_set(x_34, 0, x_33); -lean_closure_set(x_34, 1, x_31); -x_35 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_34, x_20, x_21, x_22, x_23, x_24, x_25); -lean_dec(x_21); -return x_35; +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec_ref(x_31); +x_33 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); +lean_closure_set(x_33, 0, x_32); +lean_closure_set(x_33, 1, x_30); +x_34 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_33, x_19, x_20, x_21, x_22, x_23, x_24); +lean_dec(x_20); +return x_34; } else { -uint8_t x_36; +uint8_t x_35; +lean_dec(x_30); +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); +x_35 = !lean_is_exclusive(x_31); +if (x_35 == 0) +{ +return x_31; +} +else +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_31, 0); +lean_inc(x_36); lean_dec(x_31); -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -x_36 = !lean_is_exclusive(x_32); -if (x_36 == 0) -{ -return x_32; -} -else -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_32, 0); -lean_inc(x_37); -lean_dec(x_32); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -return x_38; +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +return x_37; } } } else { -lean_dec(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); -lean_dec_ref(x_22); -lean_dec(x_21); -lean_dec_ref(x_20); -lean_dec_ref(x_18); -return x_30; +lean_dec(x_24); +lean_dec_ref(x_23); +lean_dec(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); +lean_dec_ref(x_19); +lean_dec_ref(x_17); +return x_29; } } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_18; -x_18 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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, x_14, x_15, x_16); -return x_18; +lean_object* x_17; +x_17 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7(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, x_14, x_15); +return x_17; } } static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1() { @@ -44158,799 +44619,784 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(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_13; 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; 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; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_13 = lean_ctor_get(x_2, 3); -x_26 = l_Lean_instInhabitedExpr; -x_27 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; -x_28 = l_Lean_Expr_getAppNumArgs(x_13); -lean_inc(x_28); -x_29 = lean_mk_array(x_28, x_27); -x_30 = lean_unsigned_to_nat(1u); -x_31 = lean_nat_sub(x_28, x_30); -lean_dec(x_28); -lean_inc_ref(x_13); -x_32 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_13, x_29, x_31); -x_33 = lean_unsigned_to_nat(2u); -x_34 = lean_array_get(x_26, x_32, x_33); -lean_dec_ref(x_32); -x_35 = l_Lean_Expr_cleanupAnnotations(x_34); -x_36 = l_Lean_Expr_isApp(x_35); -if (x_36 == 0) +lean_object* x_12; lean_object* x_13; 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_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; lean_object* x_34; uint8_t x_35; +x_12 = lean_ctor_get(x_1, 3); +x_25 = l_Lean_instInhabitedExpr; +x_26 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_27 = l_Lean_Expr_getAppNumArgs(x_12); +lean_inc(x_27); +x_28 = lean_mk_array(x_27, x_26); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_sub(x_27, x_29); +lean_dec(x_27); +lean_inc_ref(x_12); +x_31 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_12, x_28, x_30); +x_32 = lean_unsigned_to_nat(2u); +x_33 = lean_array_get(x_25, x_31, x_32); +lean_dec_ref(x_31); +x_34 = l_Lean_Expr_cleanupAnnotations(x_33); +x_35 = l_Lean_Expr_isApp(x_34); +if (x_35 == 0) { -lean_dec_ref(x_35); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_34); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_37 = lean_ctor_get(x_35, 1); -lean_inc_ref(x_37); -x_38 = l_Lean_Expr_appFnCleanup___redArg(x_35); -x_39 = l_Lean_Expr_isApp(x_38); -if (x_39 == 0) +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_34, 1); +lean_inc_ref(x_36); +x_37 = l_Lean_Expr_appFnCleanup___redArg(x_34); +x_38 = l_Lean_Expr_isApp(x_37); +if (x_38 == 0) { -lean_dec_ref(x_38); lean_dec_ref(x_37); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_36); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_ctor_get(x_38, 1); -lean_inc_ref(x_40); -x_41 = l_Lean_Expr_appFnCleanup___redArg(x_38); -x_42 = l_Lean_Expr_isApp(x_41); -if (x_42 == 0) +lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_39 = lean_ctor_get(x_37, 1); +lean_inc_ref(x_39); +x_40 = l_Lean_Expr_appFnCleanup___redArg(x_37); +x_41 = l_Lean_Expr_isApp(x_40); +if (x_41 == 0) { -lean_dec_ref(x_41); lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_43; uint8_t x_44; -x_43 = l_Lean_Expr_appFnCleanup___redArg(x_41); -x_44 = l_Lean_Expr_isApp(x_43); -if (x_44 == 0) +lean_object* x_42; uint8_t x_43; +x_42 = l_Lean_Expr_appFnCleanup___redArg(x_40); +x_43 = l_Lean_Expr_isApp(x_42); +if (x_43 == 0) { -lean_dec_ref(x_43); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_42); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_45; uint8_t x_46; -x_45 = l_Lean_Expr_appFnCleanup___redArg(x_43); -x_46 = l_Lean_Expr_isApp(x_45); -if (x_46 == 0) +lean_object* x_44; uint8_t x_45; +x_44 = l_Lean_Expr_appFnCleanup___redArg(x_42); +x_45 = l_Lean_Expr_isApp(x_44); +if (x_45 == 0) { -lean_dec_ref(x_45); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_44); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t 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; -x_47 = lean_ctor_get(x_45, 1); -lean_inc_ref(x_47); -x_48 = l_Lean_Expr_appFnCleanup___redArg(x_45); -x_49 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); -x_50 = l_Lean_Expr_isConstOf(x_48, x_49); -lean_dec_ref(x_48); -if (x_50 == 0) -{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t 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; +x_46 = lean_ctor_get(x_44, 1); +lean_inc_ref(x_46); +x_47 = l_Lean_Expr_appFnCleanup___redArg(x_44); +x_48 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); +x_49 = l_Lean_Expr_isConstOf(x_47, x_48); lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_inc_ref(x_13); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +if (x_49 == 0) +{ +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_inc_ref(x_12); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); +x_13 = x_5; x_14 = x_6; x_15 = x_7; x_16 = x_8; x_17 = x_9; x_18 = x_10; -x_19 = x_11; -x_20 = lean_box(0); -goto block_25; +x_19 = lean_box(0); +goto block_24; } else { -lean_object* x_72; lean_object* x_73; -lean_inc_ref(x_37); -lean_inc_ref(x_3); -x_72 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed), 10, 2); -lean_closure_set(x_72, 0, x_3); -lean_closure_set(x_72, 1, x_37); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_73 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_72, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_73) == 0) +lean_object* x_71; lean_object* x_72; +lean_inc_ref(x_36); +lean_inc_ref(x_2); +x_71 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_SplitInfo_simpDiscrs_x3f___boxed), 10, 2); +lean_closure_set(x_71, 0, x_2); +lean_closure_set(x_71, 1, x_36); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_72 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_71, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_72) == 0) { -lean_object* x_74; +lean_object* x_73; +x_73 = lean_ctor_get(x_72, 0); +lean_inc(x_73); +lean_dec_ref(x_72); +if (lean_obj_tag(x_73) == 1) +{ +lean_object* x_74; lean_object* x_75; +lean_dec_ref(x_36); +lean_dec_ref(x_4); +lean_dec_ref(x_2); x_74 = lean_ctor_get(x_73, 0); lean_inc(x_74); lean_dec_ref(x_73); -if (lean_obj_tag(x_74) == 1) +x_75 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_6); +if (lean_obj_tag(x_75) == 0) { -lean_object* x_75; lean_object* x_76; -lean_dec_ref(x_37); +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec_ref(x_75); +x_76 = lean_ctor_get(x_74, 0); +lean_inc_ref(x_76); +lean_inc_ref(x_1); +x_77 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_1, x_76); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_78 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_77, x_3, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_78) == 0) +{ +lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +lean_dec_ref(x_78); +x_80 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8)); +x_81 = 0; +x_82 = l_Lean_Expr_app___override(x_46, x_39); +x_83 = 0; +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_84 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44(x_1, x_49, x_80, x_81, x_82, x_83, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_84) == 0) +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +lean_dec_ref(x_84); +x_86 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___boxed), 10, 2); +lean_closure_set(x_86, 0, x_85); +lean_closure_set(x_86, 1, x_74); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_87 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_86, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +lean_dec_ref(x_87); +x_89 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); +lean_closure_set(x_89, 0, x_88); +lean_closure_set(x_89, 1, x_79); +x_90 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_89, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +return x_90; +} +else +{ +uint8_t x_91; +lean_dec(x_79); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); lean_dec_ref(x_5); -lean_dec_ref(x_3); -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -lean_dec_ref(x_74); -x_76 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_7); -if (lean_obj_tag(x_76) == 0) +x_91 = !lean_is_exclusive(x_87); +if (x_91 == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -lean_dec_ref(x_76); -x_77 = lean_ctor_get(x_75, 0); -lean_inc_ref(x_77); -lean_inc_ref(x_2); -x_78 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_77); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_79 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_78, x_4, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_79) == 0) -{ -lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; uint8_t x_84; lean_object* x_85; -x_80 = lean_ctor_get(x_79, 0); -lean_inc(x_80); -lean_dec_ref(x_79); -x_81 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8)); -x_82 = 0; -x_83 = l_Lean_Expr_app___override(x_47, x_40); -x_84 = 0; -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -x_85 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42(x_2, x_50, x_81, x_82, x_83, x_84, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_85, 0); -lean_inc(x_86); -lean_dec_ref(x_85); -x_87 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__0___boxed), 10, 2); -lean_closure_set(x_87, 0, x_86); -lean_closure_set(x_87, 1, x_75); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_88 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_87, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_88, 0); -lean_inc(x_89); -lean_dec_ref(x_88); -x_90 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__10___boxed), 10, 2); -lean_closure_set(x_90, 0, x_89); -lean_closure_set(x_90, 1, x_80); -x_91 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_90, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_7); -return x_91; +return x_87; } else { -uint8_t x_92; -lean_dec(x_80); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -x_92 = !lean_is_exclusive(x_88); -if (x_92 == 0) -{ -return x_88; -} -else -{ -lean_object* x_93; lean_object* x_94; -x_93 = lean_ctor_get(x_88, 0); -lean_inc(x_93); -lean_dec(x_88); -x_94 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_94, 0, x_93); -return x_94; +lean_object* x_92; lean_object* x_93; +x_92 = lean_ctor_get(x_87, 0); +lean_inc(x_92); +lean_dec(x_87); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_92); +return x_93; } } } else { -lean_dec(x_80); -lean_dec(x_75); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -return x_85; -} -} -else -{ -lean_dec(x_75); -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_2); -return x_79; -} -} -else -{ -uint8_t x_95; -lean_dec(x_75); -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_95 = !lean_is_exclusive(x_76); -if (x_95 == 0) -{ -return x_76; -} -else -{ -lean_object* x_96; lean_object* x_97; -x_96 = lean_ctor_get(x_76, 0); -lean_inc(x_96); -lean_dec(x_76); -x_97 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_97, 0, x_96); -return x_97; -} -} -} -else -{ -lean_object* x_98; lean_object* x_99; +lean_dec(x_79); lean_dec(x_74); -lean_inc_ref(x_37); -x_98 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed), 9, 1); -lean_closure_set(x_98, 0, x_37); -lean_inc(x_11); -lean_inc_ref(x_10); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc_ref(x_6); -x_99 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_98, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_99) == 0) +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +return x_84; +} +} +else { -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -lean_dec_ref(x_99); -switch (lean_obj_tag(x_100)) { +lean_dec(x_74); +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_1); +return x_78; +} +} +else +{ +uint8_t x_94; +lean_dec(x_74); +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_1); +x_94 = !lean_is_exclusive(x_75); +if (x_94 == 0) +{ +return x_75; +} +else +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_75, 0); +lean_inc(x_95); +lean_dec(x_75); +x_96 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_96, 0, x_95); +return x_96; +} +} +} +else +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_73); +lean_inc_ref(x_36); +x_97 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__2___boxed), 9, 1); +lean_closure_set(x_97, 0, x_36); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_98 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_97, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +lean_dec_ref(x_98); +switch (lean_obj_tag(x_99)) { case 0: { -lean_object* x_123; lean_object* x_124; -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_dec_ref(x_5); -lean_dec_ref(x_3); -x_123 = lean_ctor_get(x_100, 0); -lean_inc_ref(x_123); -lean_dec_ref(x_100); -x_124 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_7); -if (lean_obj_tag(x_124) == 0) -{ -lean_object* x_125; lean_object* x_126; -lean_dec_ref(x_124); -x_125 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_123); -x_126 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_125, x_4, x_6, x_7, x_8, x_9, x_10, x_11); -return x_126; -} -else -{ -uint8_t x_127; -lean_dec_ref(x_123); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_4); +lean_object* x_122; lean_object* x_123; +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_dec_ref(x_4); lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_127 = !lean_is_exclusive(x_124); -if (x_127 == 0) +x_122 = lean_ctor_get(x_99, 0); +lean_inc_ref(x_122); +lean_dec_ref(x_99); +x_123 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_6); +if (lean_obj_tag(x_123) == 0) { -return x_124; +lean_object* x_124; lean_object* x_125; +lean_dec_ref(x_123); +x_124 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_1, x_122); +x_125 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_124, x_3, x_5, x_6, x_7, x_8, x_9, x_10); +return x_125; } else { -lean_object* x_128; lean_object* x_129; -x_128 = lean_ctor_get(x_124, 0); -lean_inc(x_128); -lean_dec(x_124); -x_129 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_129, 0, x_128); -return x_129; +uint8_t x_126; +lean_dec_ref(x_122); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_1); +x_126 = !lean_is_exclusive(x_123); +if (x_126 == 0) +{ +return x_123; +} +else +{ +lean_object* x_127; lean_object* x_128; +x_127 = lean_ctor_get(x_123, 0); +lean_inc(x_127); +lean_dec(x_123); +x_128 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_128, 0, x_127); +return x_128; } } } case 1: { -lean_dec_ref(x_100); -x_101 = x_37; +lean_dec_ref(x_99); +x_100 = x_36; +x_101 = x_5; x_102 = x_6; x_103 = x_7; x_104 = x_8; x_105 = x_9; x_106 = x_10; -x_107 = x_11; -goto block_122; +goto block_121; } default: { -lean_dec(x_100); -x_101 = x_37; +lean_dec(x_99); +x_100 = x_36; +x_101 = x_5; x_102 = x_6; x_103 = x_7; x_104 = x_8; x_105 = x_9; x_106 = x_10; -x_107 = x_11; -goto block_122; +goto block_121; } } -block_122: +block_121: { -lean_object* x_108; lean_object* x_109; -x_108 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); -lean_inc(x_107); -lean_inc_ref(x_106); -lean_inc(x_105); -lean_inc_ref(x_104); -lean_inc_ref(x_102); -x_109 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_108, x_102, x_103, x_104, x_105, x_106, x_107); -if (lean_obj_tag(x_109) == 0) +lean_object* x_107; lean_object* x_108; +x_107 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); +lean_inc(x_106); +lean_inc_ref(x_105); +lean_inc(x_104); +lean_inc_ref(x_103); +lean_inc_ref(x_101); +x_108 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_107, x_101, x_102, x_103, x_104, x_105, x_106); +if (lean_obj_tag(x_108) == 0) { -lean_object* x_110; uint8_t x_111; -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -lean_dec_ref(x_109); -x_111 = lean_unbox(x_110); -lean_dec(x_110); -if (x_111 == 0) -{ -lean_dec_ref(x_101); -x_51 = x_102; -x_52 = x_103; -x_53 = x_104; -x_54 = x_105; -x_55 = x_106; -x_56 = x_107; -x_57 = lean_box(0); -goto block_71; -} -else -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_112 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1; -x_113 = l_Lean_MessageData_ofExpr(x_101); -x_114 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_114, 0, x_112); -lean_ctor_set(x_114, 1, x_113); -lean_inc(x_107); -lean_inc_ref(x_106); -lean_inc(x_105); -lean_inc_ref(x_104); -lean_inc_ref(x_102); -x_115 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_108, x_114, x_102, x_103, x_104, x_105, x_106, x_107); -if (lean_obj_tag(x_115) == 0) -{ -lean_dec_ref(x_115); -x_51 = x_102; -x_52 = x_103; -x_53 = x_104; -x_54 = x_105; -x_55 = x_106; -x_56 = x_107; -x_57 = lean_box(0); -goto block_71; -} -else -{ -uint8_t x_116; -lean_dec(x_107); -lean_dec_ref(x_106); -lean_dec(x_105); -lean_dec_ref(x_104); -lean_dec(x_103); -lean_dec_ref(x_102); -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) -{ -return x_115; -} -else -{ -lean_object* x_117; lean_object* x_118; -x_117 = lean_ctor_get(x_115, 0); -lean_inc(x_117); -lean_dec(x_115); -x_118 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_118, 0, x_117); -return x_118; -} -} -} -} -else -{ -uint8_t x_119; -lean_dec(x_107); -lean_dec_ref(x_106); -lean_dec(x_105); -lean_dec_ref(x_104); -lean_dec(x_103); -lean_dec_ref(x_102); -lean_dec_ref(x_101); -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_119 = !lean_is_exclusive(x_109); -if (x_119 == 0) -{ -return x_109; -} -else -{ -lean_object* x_120; lean_object* x_121; -x_120 = lean_ctor_get(x_109, 0); -lean_inc(x_120); +lean_object* x_109; uint8_t x_110; +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +lean_dec_ref(x_108); +x_110 = lean_unbox(x_109); lean_dec(x_109); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_120); -return x_121; -} -} -} +if (x_110 == 0) +{ +lean_dec_ref(x_100); +x_50 = x_101; +x_51 = x_102; +x_52 = x_103; +x_53 = x_104; +x_54 = x_105; +x_55 = x_106; +x_56 = lean_box(0); +goto block_70; } else { -uint8_t x_130; -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___closed__1; +x_112 = l_Lean_MessageData_ofExpr(x_100); +x_113 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +lean_inc(x_106); +lean_inc_ref(x_105); +lean_inc(x_104); +lean_inc_ref(x_103); +lean_inc_ref(x_101); +x_114 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_107, x_113, x_101, x_102, x_103, x_104, x_105, x_106); +if (lean_obj_tag(x_114) == 0) +{ +lean_dec_ref(x_114); +x_50 = x_101; +x_51 = x_102; +x_52 = x_103; +x_53 = x_104; +x_54 = x_105; +x_55 = x_106; +x_56 = lean_box(0); +goto block_70; +} +else +{ +uint8_t x_115; +lean_dec(x_106); +lean_dec_ref(x_105); +lean_dec(x_104); +lean_dec_ref(x_103); +lean_dec(x_102); +lean_dec_ref(x_101); +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_130 = !lean_is_exclusive(x_99); -if (x_130 == 0) +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -return x_99; +return x_114; } else { -lean_object* x_131; lean_object* x_132; -x_131 = lean_ctor_get(x_99, 0); -lean_inc(x_131); -lean_dec(x_99); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_131); -return x_132; +lean_object* x_116; lean_object* x_117; +x_116 = lean_ctor_get(x_114, 0); +lean_inc(x_116); +lean_dec(x_114); +x_117 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_117, 0, x_116); +return x_117; } } } } else { -uint8_t x_133; -lean_dec_ref(x_47); -lean_dec_ref(x_40); -lean_dec_ref(x_37); -lean_dec(x_11); -lean_dec_ref(x_10); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +uint8_t x_118; +lean_dec(x_106); +lean_dec_ref(x_105); +lean_dec(x_104); +lean_dec_ref(x_103); +lean_dec(x_102); +lean_dec_ref(x_101); +lean_dec_ref(x_100); +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_133 = !lean_is_exclusive(x_73); -if (x_133 == 0) +x_118 = !lean_is_exclusive(x_108); +if (x_118 == 0) { -return x_73; +return x_108; } else { -lean_object* x_134; lean_object* x_135; -x_134 = lean_ctor_get(x_73, 0); -lean_inc(x_134); -lean_dec(x_73); -x_135 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_135, 0, x_134); -return x_135; +lean_object* x_119; lean_object* x_120; +x_119 = lean_ctor_get(x_108, 0); +lean_inc(x_119); +lean_dec(x_108); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_119); +return x_120; } } } -block_71: -{ -lean_object* x_58; -x_58 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_52); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; uint8_t x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; -lean_dec_ref(x_58); -x_59 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__8)); -x_60 = 0; -x_61 = l_Lean_Expr_app___override(x_47, x_40); -x_62 = 0; -lean_inc(x_56); -lean_inc_ref(x_55); -lean_inc(x_54); -lean_inc_ref(x_53); -lean_inc(x_52); -lean_inc_ref(x_51); -lean_inc_ref(x_61); -lean_inc_ref(x_2); -x_63 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__42(x_2, x_50, x_59, x_60, x_61, x_62, x_51, x_52, x_53, x_54, x_55, x_56); -if (lean_obj_tag(x_63) == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -lean_dec_ref(x_63); -lean_inc_ref(x_2); -x_65 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___boxed), 17, 6); -lean_closure_set(x_65, 0, x_61); -lean_closure_set(x_65, 1, x_2); -lean_closure_set(x_65, 2, x_4); -lean_closure_set(x_65, 3, x_1); -lean_closure_set(x_65, 4, x_5); -lean_closure_set(x_65, 5, x_64); -x_66 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_2); -x_67 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(x_3, x_66, x_65, x_50, x_51, x_52, x_53, x_54, x_55, x_56); -return x_67; } else { -lean_dec_ref(x_61); -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_54); -lean_dec_ref(x_53); -lean_dec(x_52); -lean_dec_ref(x_51); +uint8_t x_129; +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -return x_63; +x_129 = !lean_is_exclusive(x_98); +if (x_129 == 0) +{ +return x_98; +} +else +{ +lean_object* x_130; lean_object* x_131; +x_130 = lean_ctor_get(x_98, 0); +lean_inc(x_130); +lean_dec(x_98); +x_131 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_131, 0, x_130); +return x_131; +} +} } } else { -uint8_t x_68; -lean_dec(x_56); -lean_dec_ref(x_55); -lean_dec(x_54); -lean_dec_ref(x_53); -lean_dec(x_52); -lean_dec_ref(x_51); -lean_dec_ref(x_47); -lean_dec_ref(x_40); +uint8_t x_132; +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_36); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); +lean_dec_ref(x_4); +lean_dec(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_68 = !lean_is_exclusive(x_58); -if (x_68 == 0) +x_132 = !lean_is_exclusive(x_72); +if (x_132 == 0) { -return x_58; +return x_72; } else { -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_58, 0); -lean_inc(x_69); -lean_dec(x_58); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -return x_70; +lean_object* x_133; lean_object* x_134; +x_133 = lean_ctor_get(x_72, 0); +lean_inc(x_133); +lean_dec(x_72); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_133); +return x_134; } } } -} -} -} -} -} -block_25: +block_70: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; -x_22 = l_Lean_MessageData_ofExpr(x_13); -x_23 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_23, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_15); -return x_24; +lean_object* x_57; +x_57 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_51); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; uint8_t x_59; lean_object* x_60; uint8_t x_61; lean_object* x_62; +lean_dec_ref(x_57); +x_58 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__8)); +x_59 = 0; +x_60 = l_Lean_Expr_app___override(x_46, x_39); +x_61 = 0; +lean_inc(x_55); +lean_inc_ref(x_54); +lean_inc(x_53); +lean_inc_ref(x_52); +lean_inc(x_51); +lean_inc_ref(x_50); +lean_inc_ref(x_60); +lean_inc_ref(x_1); +x_62 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit_spec__44(x_1, x_49, x_58, x_59, x_60, x_61, x_50, x_51, x_52, x_53, x_54, x_55); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +lean_dec_ref(x_62); +lean_inc_ref(x_1); +x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___boxed), 16, 5); +lean_closure_set(x_64, 0, x_60); +lean_closure_set(x_64, 1, x_1); +lean_closure_set(x_64, 2, x_3); +lean_closure_set(x_64, 3, x_4); +lean_closure_set(x_64, 4, x_63); +x_65 = l_Lean_Elab_Tactic_Do_ProofMode_MGoal_toExpr(x_1); +x_66 = l_Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(x_2, x_65, x_64, x_49, x_50, x_51, x_52, x_53, x_54, x_55); +return x_66; +} +else +{ +lean_dec_ref(x_60); +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_51); +lean_dec_ref(x_50); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_62; +} +} +else +{ +uint8_t x_67; +lean_dec(x_55); +lean_dec_ref(x_54); +lean_dec(x_53); +lean_dec_ref(x_52); +lean_dec(x_51); +lean_dec_ref(x_50); +lean_dec_ref(x_46); +lean_dec_ref(x_39); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_67 = !lean_is_exclusive(x_57); +if (x_67 == 0) +{ +return x_57; +} +else +{ +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_57, 0); +lean_inc(x_68); +lean_dec(x_57); +x_69 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_69, 0, x_68); +return x_69; } } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +} +} +} +} +} +block_24: +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +x_21 = l_Lean_MessageData_ofExpr(x_12); +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_22, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_14); +return x_23; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(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, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_20; lean_object* x_21; +lean_object* x_19; lean_object* x_20; +lean_inc_ref(x_11); +x_19 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8___boxed), 16, 6); +lean_closure_set(x_19, 0, x_1); +lean_closure_set(x_19, 1, x_2); +lean_closure_set(x_19, 2, x_3); +lean_closure_set(x_19, 3, x_4); +lean_closure_set(x_19, 4, x_11); +lean_closure_set(x_19, 5, x_5); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); lean_inc_ref(x_12); -x_20 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__8___boxed), 16, 6); -lean_closure_set(x_20, 0, x_1); -lean_closure_set(x_20, 1, x_2); -lean_closure_set(x_20, 2, x_3); -lean_closure_set(x_20, 3, x_4); -lean_closure_set(x_20, 4, x_12); -lean_closure_set(x_20, 5, x_5); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -x_21 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_6, x_7, x_8, x_9, x_20, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_21) == 0) +x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_6, x_7, x_8, x_19, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t 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, 0); -lean_inc(x_22); -lean_dec_ref(x_21); -x_23 = lean_mk_empty_array_with_capacity(x_10); -x_24 = lean_array_push(x_23, x_12); -x_25 = 1; -x_26 = lean_box(x_11); -x_27 = lean_box(x_25); -x_28 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed), 12, 4); -lean_closure_set(x_28, 0, x_24); -lean_closure_set(x_28, 1, x_22); -lean_closure_set(x_28, 2, x_26); -lean_closure_set(x_28, 3, x_27); -x_29 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_28, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_14); -return x_29; +lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +lean_dec_ref(x_20); +x_22 = lean_mk_empty_array_with_capacity(x_9); +x_23 = lean_array_push(x_22, x_11); +x_24 = 1; +x_25 = lean_box(x_10); +x_26 = lean_box(x_24); +x_27 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__7___boxed), 12, 4); +lean_closure_set(x_27, 0, x_23); +lean_closure_set(x_27, 1, x_21); +lean_closure_set(x_27, 2, x_25); +lean_closure_set(x_27, 3, x_26); +x_28 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_27, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_13); +return x_28; } else { -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); lean_dec_ref(x_12); -return x_21; +lean_dec_ref(x_11); +return x_20; } } } @@ -44973,14 +45419,13 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; lean_object* x_21; -x_20 = lean_unbox(x_11); -x_21 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_20, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_10); -return x_21; +uint8_t x_19; lean_object* x_20; +x_19 = lean_unbox(x_10); +x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_9); +return x_20; } } static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5() { @@ -45019,3662 +45464,3597 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(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_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; lean_object* x_24; -x_24 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_8); -if (lean_obj_tag(x_24) == 0) +lean_object* x_13; 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_23; +x_23 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_7); +if (lean_obj_tag(x_23) == 0) { -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_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; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -lean_dec_ref(x_24); -x_25 = lean_ctor_get(x_4, 3); -x_38 = l_Lean_instInhabitedExpr; -x_39 = lean_box(0); -x_40 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; -x_41 = l_Lean_Expr_getAppNumArgs(x_25); -lean_inc(x_41); -x_42 = lean_mk_array(x_41, x_40); -x_43 = lean_unsigned_to_nat(1u); -x_44 = lean_nat_sub(x_41, x_43); -lean_dec(x_41); -lean_inc_ref(x_25); -x_45 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_25, x_42, x_44); -x_46 = lean_unsigned_to_nat(2u); -x_47 = lean_array_get(x_38, x_45, x_46); -x_48 = l_Lean_Expr_cleanupAnnotations(x_47); -x_49 = l_Lean_Expr_isApp(x_48); -if (x_49 == 0) -{ -lean_dec_ref(x_48); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_50 = lean_ctor_get(x_48, 1); -lean_inc_ref(x_50); -x_51 = l_Lean_Expr_appFnCleanup___redArg(x_48); -x_52 = l_Lean_Expr_isApp(x_51); -if (x_52 == 0) -{ -lean_dec_ref(x_51); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_53; lean_object* x_54; uint8_t x_55; -x_53 = lean_ctor_get(x_51, 1); -lean_inc_ref(x_53); -x_54 = l_Lean_Expr_appFnCleanup___redArg(x_51); -x_55 = l_Lean_Expr_isApp(x_54); -if (x_55 == 0) -{ -lean_dec_ref(x_54); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_56; lean_object* x_57; uint8_t x_58; -x_56 = lean_ctor_get(x_54, 1); -lean_inc_ref(x_56); -x_57 = l_Lean_Expr_appFnCleanup___redArg(x_54); -x_58 = l_Lean_Expr_isApp(x_57); -if (x_58 == 0) -{ -lean_dec_ref(x_57); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_59 = lean_ctor_get(x_57, 1); -lean_inc_ref(x_59); -x_60 = l_Lean_Expr_appFnCleanup___redArg(x_57); -x_61 = l_Lean_Expr_isApp(x_60); -if (x_61 == 0) -{ -lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; -x_62 = lean_ctor_get(x_60, 1); -lean_inc_ref(x_62); -x_63 = l_Lean_Expr_appFnCleanup___redArg(x_60); -x_64 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); -x_65 = l_Lean_Expr_isConstOf(x_63, x_64); -if (x_65 == 0) -{ -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_inc_ref(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_26 = x_7; -x_27 = x_8; -x_28 = x_9; -x_29 = x_10; -x_30 = x_11; -x_31 = x_12; -x_32 = lean_box(0); -goto block_37; -} -else -{ -lean_object* x_66; lean_object* x_67; -x_66 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc_ref(x_7); -x_67 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_66, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_67) == 0) -{ -lean_object* x_68; 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; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_242; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -lean_dec_ref(x_67); -x_69 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0)); -lean_inc_ref(x_2); -x_70 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1___boxed), 9, 1); -lean_closure_set(x_70, 0, x_2); -x_71 = lean_box(x_65); -lean_inc_ref(x_5); -x_72 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2___boxed), 11, 2); -lean_closure_set(x_72, 0, x_5); -lean_closure_set(x_72, 1, x_71); -x_242 = lean_unbox(x_68); -lean_dec(x_68); -if (x_242 == 0) -{ -x_73 = x_7; -x_74 = x_8; -x_75 = x_9; -x_76 = x_10; -x_77 = x_11; -x_78 = x_12; -x_79 = lean_box(0); -goto block_241; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; -x_243 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9; -lean_inc_ref(x_2); -x_244 = l_Lean_MessageData_ofExpr(x_2); -x_245 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_245, 0, x_243); -lean_ctor_set(x_245, 1, x_244); -x_246 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11; -x_247 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_247, 0, x_245); -lean_ctor_set(x_247, 1, x_246); -x_248 = l_Lean_Expr_getAppFn(x_50); -x_249 = l_Lean_MessageData_ofExpr(x_248); -x_250 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_250, 0, x_247); -lean_ctor_set(x_250, 1, x_249); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc_ref(x_7); -x_251 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_66, x_250, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_251) == 0) -{ -lean_dec_ref(x_251); -x_73 = x_7; -x_74 = x_8; -x_75 = x_9; -x_76 = x_10; -x_77 = x_11; -x_78 = x_12; -x_79 = lean_box(0); -goto block_241; -} -else -{ -uint8_t x_252; -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_252 = !lean_is_exclusive(x_251); -if (x_252 == 0) -{ -return x_251; -} -else -{ -lean_object* x_253; lean_object* x_254; -x_253 = lean_ctor_get(x_251, 0); -lean_inc(x_253); -lean_dec(x_251); -x_254 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_254, 0, x_253); -return x_254; -} -} -} -block_241: -{ -lean_object* x_80; -lean_inc_ref(x_5); -x_80 = l_Lean_Elab_Tactic_Do_SplitInfo_resTy(x_5); -if (lean_obj_tag(x_80) == 1) -{ -uint8_t x_81; -lean_dec_ref(x_50); -x_81 = !lean_is_exclusive(x_80); -if (x_81 == 0) -{ -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_80, 0); -x_83 = l_Lean_Expr_constLevels_x21(x_63); -if (lean_obj_tag(x_83) == 1) -{ -lean_object* x_84; -x_84 = lean_ctor_get(x_83, 1); -lean_inc(x_84); -if (lean_obj_tag(x_84) == 1) -{ -uint8_t x_85; -x_85 = !lean_is_exclusive(x_84); -if (x_85 == 0) -{ -lean_object* x_86; lean_object* x_87; -x_86 = lean_ctor_get(x_84, 1); -x_87 = lean_ctor_get(x_84, 0); -lean_dec(x_87); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_88; lean_object* x_89; -x_88 = lean_ctor_get(x_83, 0); -lean_inc(x_88); -lean_dec_ref(x_83); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_89 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_70, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_89) == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -lean_dec_ref(x_89); -lean_inc(x_90); -x_91 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); -lean_closure_set(x_91, 0, x_90); -lean_closure_set(x_91, 1, x_82); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_92 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_91, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_92) == 0) -{ -lean_object* x_93; uint8_t x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_92, 0); -lean_inc(x_93); -lean_dec_ref(x_92); -lean_inc(x_93); -lean_ctor_set(x_80, 0, x_93); -x_94 = 0; -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -lean_inc_ref(x_80); -lean_inc(x_90); -x_95 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_90, x_80, x_72, x_94, x_94, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_95) == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -lean_dec_ref(x_95); -x_97 = lean_array_get_size(x_96); -x_98 = lean_unsigned_to_nat(0u); -x_99 = lean_mk_empty_array_with_capacity(x_97); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -lean_inc(x_6); -x_100 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(x_6, x_96, x_97, x_98, x_99, x_73, x_74, x_75, x_76, x_77, x_78); -lean_dec(x_96); -if (lean_obj_tag(x_100) == 0) -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -lean_dec_ref(x_100); -x_102 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); -lean_inc(x_88); -lean_ctor_set(x_84, 0, x_88); -lean_inc_ref(x_84); -x_103 = l_Lean_mkConst(x_102, x_84); -lean_inc_ref(x_59); -x_104 = l_Lean_Expr_app___override(x_103, x_59); -x_105 = lean_box(x_94); -x_106 = lean_box(x_65); -lean_inc(x_6); -lean_inc_ref(x_1); -lean_inc_ref(x_2); -lean_inc_ref(x_5); -lean_inc(x_101); -x_107 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 28, 19); -lean_closure_set(x_107, 0, x_38); -lean_closure_set(x_107, 1, x_101); -lean_closure_set(x_107, 2, x_39); -lean_closure_set(x_107, 3, x_5); -lean_closure_set(x_107, 4, x_105); -lean_closure_set(x_107, 5, x_2); -lean_closure_set(x_107, 6, x_63); -lean_closure_set(x_107, 7, x_62); -lean_closure_set(x_107, 8, x_59); -lean_closure_set(x_107, 9, x_56); -lean_closure_set(x_107, 10, x_53); -lean_closure_set(x_107, 11, x_45); -lean_closure_set(x_107, 12, x_84); -lean_closure_set(x_107, 13, x_88); -lean_closure_set(x_107, 14, x_104); -lean_closure_set(x_107, 15, x_1); -lean_closure_set(x_107, 16, x_6); -lean_closure_set(x_107, 17, x_106); -lean_closure_set(x_107, 18, x_3); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -x_108 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_90, x_80, x_107, x_94, x_94, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -lean_dec_ref(x_108); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); -x_112 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_113 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_112, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_113) == 0) -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); -lean_dec_ref(x_113); -x_115 = lean_box(x_65); -x_116 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 19, 11); -lean_closure_set(x_116, 0, x_69); -lean_closure_set(x_116, 1, x_38); -lean_closure_set(x_116, 2, x_101); -lean_closure_set(x_116, 3, x_93); -lean_closure_set(x_116, 4, x_2); -lean_closure_set(x_116, 5, x_1); -lean_closure_set(x_116, 6, x_4); -lean_closure_set(x_116, 7, x_5); -lean_closure_set(x_116, 8, x_6); -lean_closure_set(x_116, 9, x_43); -lean_closure_set(x_116, 10, x_115); -x_117 = 1; -x_118 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_114, x_111, x_110, x_116, x_94, x_117, x_73, x_74, x_75, x_76, x_77, x_78); -return x_118; -} -else -{ -uint8_t x_119; -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_101); -lean_dec(x_93); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_119 = !lean_is_exclusive(x_113); -if (x_119 == 0) -{ -return x_113; -} -else -{ -lean_object* x_120; lean_object* x_121; -x_120 = lean_ctor_get(x_113, 0); -lean_inc(x_120); -lean_dec(x_113); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_120); -return x_121; -} -} -} -else -{ -uint8_t x_122; -lean_dec(x_101); -lean_dec(x_93); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_122 = !lean_is_exclusive(x_108); -if (x_122 == 0) -{ -return x_108; -} -else -{ -lean_object* x_123; lean_object* x_124; -x_123 = lean_ctor_get(x_108, 0); -lean_inc(x_123); -lean_dec(x_108); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -return x_124; -} -} -} -else -{ -uint8_t x_125; -lean_dec_ref(x_80); -lean_dec(x_93); -lean_dec(x_90); -lean_dec(x_88); -lean_free_object(x_84); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_125 = !lean_is_exclusive(x_100); -if (x_125 == 0) -{ -return x_100; -} -else -{ -lean_object* x_126; lean_object* x_127; -x_126 = lean_ctor_get(x_100, 0); -lean_inc(x_126); -lean_dec(x_100); -x_127 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_127, 0, x_126); -return x_127; -} -} -} -else -{ -uint8_t x_128; -lean_dec_ref(x_80); -lean_dec(x_93); -lean_dec(x_90); -lean_dec(x_88); -lean_free_object(x_84); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_128 = !lean_is_exclusive(x_95); -if (x_128 == 0) -{ -return x_95; -} -else -{ -lean_object* x_129; lean_object* x_130; -x_129 = lean_ctor_get(x_95, 0); -lean_inc(x_129); -lean_dec(x_95); -x_130 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_130, 0, x_129); -return x_130; -} -} -} -else -{ -uint8_t x_131; -lean_dec(x_90); -lean_dec(x_88); -lean_free_object(x_84); -lean_free_object(x_80); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_131 = !lean_is_exclusive(x_92); -if (x_131 == 0) -{ -return x_92; -} -else -{ -lean_object* x_132; lean_object* x_133; -x_132 = lean_ctor_get(x_92, 0); -lean_inc(x_132); -lean_dec(x_92); -x_133 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_133, 0, x_132); -return x_133; -} -} -} -else -{ -lean_dec(x_88); -lean_free_object(x_84); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_89; -} -} -else -{ -lean_free_object(x_84); -lean_dec(x_86); -lean_dec_ref(x_83); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -else -{ -lean_object* x_134; -x_134 = lean_ctor_get(x_84, 1); -lean_inc(x_134); -lean_dec(x_84); -if (lean_obj_tag(x_134) == 0) -{ -lean_object* x_135; lean_object* x_136; -x_135 = lean_ctor_get(x_83, 0); -lean_inc(x_135); -lean_dec_ref(x_83); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_136 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_70, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_136) == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_136, 0); -lean_inc(x_137); -lean_dec_ref(x_136); -lean_inc(x_137); -x_138 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); -lean_closure_set(x_138, 0, x_137); -lean_closure_set(x_138, 1, x_82); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_139 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_138, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_139) == 0) -{ -lean_object* x_140; uint8_t x_141; lean_object* x_142; -x_140 = lean_ctor_get(x_139, 0); -lean_inc(x_140); -lean_dec_ref(x_139); -lean_inc(x_140); -lean_ctor_set(x_80, 0, x_140); -x_141 = 0; -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -lean_inc_ref(x_80); -lean_inc(x_137); -x_142 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_137, x_80, x_72, x_141, x_141, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_142) == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_143 = lean_ctor_get(x_142, 0); -lean_inc(x_143); -lean_dec_ref(x_142); -x_144 = lean_array_get_size(x_143); -x_145 = lean_unsigned_to_nat(0u); -x_146 = lean_mk_empty_array_with_capacity(x_144); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -lean_inc(x_6); -x_147 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(x_6, x_143, x_144, x_145, x_146, x_73, x_74, x_75, x_76, x_77, x_78); -lean_dec(x_143); -if (lean_obj_tag(x_147) == 0) -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_148 = lean_ctor_get(x_147, 0); -lean_inc(x_148); -lean_dec_ref(x_147); -x_149 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); -lean_inc(x_135); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_135); -lean_ctor_set(x_150, 1, x_134); -lean_inc_ref(x_150); -x_151 = l_Lean_mkConst(x_149, x_150); -lean_inc_ref(x_59); -x_152 = l_Lean_Expr_app___override(x_151, x_59); -x_153 = lean_box(x_141); -x_154 = lean_box(x_65); -lean_inc(x_6); -lean_inc_ref(x_1); -lean_inc_ref(x_2); -lean_inc_ref(x_5); -lean_inc(x_148); -x_155 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 28, 19); -lean_closure_set(x_155, 0, x_38); -lean_closure_set(x_155, 1, x_148); -lean_closure_set(x_155, 2, x_39); -lean_closure_set(x_155, 3, x_5); -lean_closure_set(x_155, 4, x_153); -lean_closure_set(x_155, 5, x_2); -lean_closure_set(x_155, 6, x_63); -lean_closure_set(x_155, 7, x_62); -lean_closure_set(x_155, 8, x_59); -lean_closure_set(x_155, 9, x_56); -lean_closure_set(x_155, 10, x_53); -lean_closure_set(x_155, 11, x_45); -lean_closure_set(x_155, 12, x_150); -lean_closure_set(x_155, 13, x_135); -lean_closure_set(x_155, 14, x_152); -lean_closure_set(x_155, 15, x_1); -lean_closure_set(x_155, 16, x_6); -lean_closure_set(x_155, 17, x_154); -lean_closure_set(x_155, 18, x_3); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -x_156 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_137, x_80, x_155, x_141, x_141, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_156) == 0) -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; -x_157 = lean_ctor_get(x_156, 0); -lean_inc(x_157); -lean_dec_ref(x_156); -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); -lean_inc(x_159); -lean_dec(x_157); -x_160 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_161 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_160, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_161) == 0) -{ -lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; -x_162 = lean_ctor_get(x_161, 0); -lean_inc(x_162); -lean_dec_ref(x_161); -x_163 = lean_box(x_65); -x_164 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 19, 11); -lean_closure_set(x_164, 0, x_69); -lean_closure_set(x_164, 1, x_38); -lean_closure_set(x_164, 2, x_148); -lean_closure_set(x_164, 3, x_140); -lean_closure_set(x_164, 4, x_2); -lean_closure_set(x_164, 5, x_1); -lean_closure_set(x_164, 6, x_4); -lean_closure_set(x_164, 7, x_5); -lean_closure_set(x_164, 8, x_6); -lean_closure_set(x_164, 9, x_43); -lean_closure_set(x_164, 10, x_163); -x_165 = 1; -x_166 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_162, x_159, x_158, x_164, x_141, x_165, x_73, x_74, x_75, x_76, x_77, x_78); -return x_166; -} -else -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; -lean_dec(x_159); -lean_dec(x_158); -lean_dec(x_148); -lean_dec(x_140); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_167 = lean_ctor_get(x_161, 0); -lean_inc(x_167); -if (lean_is_exclusive(x_161)) { - lean_ctor_release(x_161, 0); - x_168 = x_161; -} else { - lean_dec_ref(x_161); - x_168 = lean_box(0); -} -if (lean_is_scalar(x_168)) { - x_169 = lean_alloc_ctor(1, 1, 0); -} else { - x_169 = x_168; -} -lean_ctor_set(x_169, 0, x_167); -return x_169; -} -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_148); -lean_dec(x_140); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_170 = lean_ctor_get(x_156, 0); -lean_inc(x_170); -if (lean_is_exclusive(x_156)) { - lean_ctor_release(x_156, 0); - x_171 = x_156; -} else { - lean_dec_ref(x_156); - x_171 = lean_box(0); -} -if (lean_is_scalar(x_171)) { - x_172 = lean_alloc_ctor(1, 1, 0); -} else { - x_172 = x_171; -} -lean_ctor_set(x_172, 0, x_170); -return x_172; -} -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -lean_dec_ref(x_80); -lean_dec(x_140); -lean_dec(x_137); -lean_dec(x_135); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_173 = lean_ctor_get(x_147, 0); -lean_inc(x_173); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - x_174 = x_147; -} else { - lean_dec_ref(x_147); - x_174 = lean_box(0); -} -if (lean_is_scalar(x_174)) { - x_175 = lean_alloc_ctor(1, 1, 0); -} else { - x_175 = x_174; -} -lean_ctor_set(x_175, 0, x_173); -return x_175; -} -} -else -{ -lean_object* x_176; lean_object* x_177; lean_object* x_178; -lean_dec_ref(x_80); -lean_dec(x_140); -lean_dec(x_137); -lean_dec(x_135); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_176 = lean_ctor_get(x_142, 0); -lean_inc(x_176); -if (lean_is_exclusive(x_142)) { - lean_ctor_release(x_142, 0); - x_177 = x_142; -} else { - lean_dec_ref(x_142); - x_177 = lean_box(0); -} -if (lean_is_scalar(x_177)) { - x_178 = lean_alloc_ctor(1, 1, 0); -} else { - x_178 = x_177; -} -lean_ctor_set(x_178, 0, x_176); -return x_178; -} -} -else -{ -lean_object* x_179; lean_object* x_180; lean_object* x_181; -lean_dec(x_137); -lean_dec(x_135); -lean_free_object(x_80); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_179 = lean_ctor_get(x_139, 0); -lean_inc(x_179); -if (lean_is_exclusive(x_139)) { - lean_ctor_release(x_139, 0); - x_180 = x_139; -} else { - lean_dec_ref(x_139); - x_180 = lean_box(0); -} -if (lean_is_scalar(x_180)) { - x_181 = lean_alloc_ctor(1, 1, 0); -} else { - x_181 = x_180; -} -lean_ctor_set(x_181, 0, x_179); -return x_181; -} -} -else -{ -lean_dec(x_135); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_136; -} -} -else -{ -lean_dec(x_134); -lean_dec_ref(x_83); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -} -else -{ -lean_dec(x_84); -lean_dec_ref(x_83); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -else -{ -lean_dec(x_83); -lean_free_object(x_80); -lean_dec(x_82); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -else -{ -lean_object* x_182; lean_object* x_183; -x_182 = lean_ctor_get(x_80, 0); -lean_inc(x_182); -lean_dec(x_80); -x_183 = l_Lean_Expr_constLevels_x21(x_63); -if (lean_obj_tag(x_183) == 1) -{ -lean_object* x_184; -x_184 = lean_ctor_get(x_183, 1); -lean_inc(x_184); -if (lean_obj_tag(x_184) == 1) -{ -lean_object* x_185; lean_object* x_186; -x_185 = lean_ctor_get(x_184, 1); -lean_inc(x_185); -if (lean_is_exclusive(x_184)) { - lean_ctor_release(x_184, 0); - lean_ctor_release(x_184, 1); - x_186 = x_184; -} else { - lean_dec_ref(x_184); - x_186 = lean_box(0); -} -if (lean_obj_tag(x_185) == 0) -{ -lean_object* x_187; lean_object* x_188; -x_187 = lean_ctor_get(x_183, 0); -lean_inc(x_187); -lean_dec_ref(x_183); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_188 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_70, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_188) == 0) -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_189 = lean_ctor_get(x_188, 0); -lean_inc(x_189); -lean_dec_ref(x_188); -lean_inc(x_189); -x_190 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); -lean_closure_set(x_190, 0, x_189); -lean_closure_set(x_190, 1, x_182); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_191 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_190, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_191) == 0) -{ -lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -lean_dec_ref(x_191); -lean_inc(x_192); -x_193 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_193, 0, x_192); -x_194 = 0; -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -lean_inc_ref(x_193); -lean_inc(x_189); -x_195 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_189, x_193, x_72, x_194, x_194, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_195) == 0) -{ -lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; -x_196 = lean_ctor_get(x_195, 0); -lean_inc(x_196); -lean_dec_ref(x_195); -x_197 = lean_array_get_size(x_196); -x_198 = lean_unsigned_to_nat(0u); -x_199 = lean_mk_empty_array_with_capacity(x_197); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -lean_inc(x_6); -x_200 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(x_6, x_196, x_197, x_198, x_199, x_73, x_74, x_75, x_76, x_77, x_78); -lean_dec(x_196); -if (lean_obj_tag(x_200) == 0) -{ -lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -lean_dec_ref(x_200); -x_202 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); -lean_inc(x_187); -if (lean_is_scalar(x_186)) { - x_203 = lean_alloc_ctor(1, 2, 0); -} else { - x_203 = x_186; -} -lean_ctor_set(x_203, 0, x_187); -lean_ctor_set(x_203, 1, x_185); -lean_inc_ref(x_203); -x_204 = l_Lean_mkConst(x_202, x_203); -lean_inc_ref(x_59); -x_205 = l_Lean_Expr_app___override(x_204, x_59); -x_206 = lean_box(x_194); -x_207 = lean_box(x_65); -lean_inc(x_6); -lean_inc_ref(x_1); -lean_inc_ref(x_2); -lean_inc_ref(x_5); -lean_inc(x_201); -x_208 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 28, 19); -lean_closure_set(x_208, 0, x_38); -lean_closure_set(x_208, 1, x_201); -lean_closure_set(x_208, 2, x_39); -lean_closure_set(x_208, 3, x_5); -lean_closure_set(x_208, 4, x_206); -lean_closure_set(x_208, 5, x_2); -lean_closure_set(x_208, 6, x_63); -lean_closure_set(x_208, 7, x_62); -lean_closure_set(x_208, 8, x_59); -lean_closure_set(x_208, 9, x_56); -lean_closure_set(x_208, 10, x_53); -lean_closure_set(x_208, 11, x_45); -lean_closure_set(x_208, 12, x_203); -lean_closure_set(x_208, 13, x_187); -lean_closure_set(x_208, 14, x_205); -lean_closure_set(x_208, 15, x_1); -lean_closure_set(x_208, 16, x_6); -lean_closure_set(x_208, 17, x_207); -lean_closure_set(x_208, 18, x_3); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc(x_74); -lean_inc_ref(x_73); -x_209 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_189, x_193, x_208, x_194, x_194, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_210 = lean_ctor_get(x_209, 0); -lean_inc(x_210); -lean_dec_ref(x_209); -x_211 = lean_ctor_get(x_210, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_210, 1); -lean_inc(x_212); -lean_dec(x_210); -x_213 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); -lean_inc(x_78); -lean_inc_ref(x_77); -lean_inc(x_76); -lean_inc_ref(x_75); -lean_inc_ref(x_73); -x_214 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_213, x_73, x_74, x_75, x_76, x_77, x_78); -if (lean_obj_tag(x_214) == 0) -{ -lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; lean_object* x_219; -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -lean_dec_ref(x_214); -x_216 = lean_box(x_65); -x_217 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 19, 11); -lean_closure_set(x_217, 0, x_69); -lean_closure_set(x_217, 1, x_38); -lean_closure_set(x_217, 2, x_201); -lean_closure_set(x_217, 3, x_192); -lean_closure_set(x_217, 4, x_2); -lean_closure_set(x_217, 5, x_1); -lean_closure_set(x_217, 6, x_4); -lean_closure_set(x_217, 7, x_5); -lean_closure_set(x_217, 8, x_6); -lean_closure_set(x_217, 9, x_43); -lean_closure_set(x_217, 10, x_216); -x_218 = 1; -x_219 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_215, x_212, x_211, x_217, x_194, x_218, x_73, x_74, x_75, x_76, x_77, x_78); -return x_219; -} -else -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; -lean_dec(x_212); -lean_dec(x_211); -lean_dec(x_201); -lean_dec(x_192); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_220 = lean_ctor_get(x_214, 0); -lean_inc(x_220); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_221 = x_214; -} else { - lean_dec_ref(x_214); - x_221 = lean_box(0); -} -if (lean_is_scalar(x_221)) { - x_222 = lean_alloc_ctor(1, 1, 0); -} else { - x_222 = x_221; -} -lean_ctor_set(x_222, 0, x_220); -return x_222; -} -} -else -{ -lean_object* x_223; lean_object* x_224; lean_object* x_225; -lean_dec(x_201); -lean_dec(x_192); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_223 = lean_ctor_get(x_209, 0); -lean_inc(x_223); -if (lean_is_exclusive(x_209)) { - lean_ctor_release(x_209, 0); - x_224 = x_209; -} else { - lean_dec_ref(x_209); - x_224 = lean_box(0); -} -if (lean_is_scalar(x_224)) { - x_225 = lean_alloc_ctor(1, 1, 0); -} else { - x_225 = x_224; -} -lean_ctor_set(x_225, 0, x_223); -return x_225; -} -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -lean_dec_ref(x_193); -lean_dec(x_192); -lean_dec(x_189); -lean_dec(x_187); -lean_dec(x_186); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_226 = lean_ctor_get(x_200, 0); -lean_inc(x_226); -if (lean_is_exclusive(x_200)) { - lean_ctor_release(x_200, 0); - x_227 = x_200; -} else { - lean_dec_ref(x_200); - x_227 = lean_box(0); -} -if (lean_is_scalar(x_227)) { - x_228 = lean_alloc_ctor(1, 1, 0); -} else { - x_228 = x_227; -} -lean_ctor_set(x_228, 0, x_226); -return x_228; -} -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -lean_dec_ref(x_193); -lean_dec(x_192); -lean_dec(x_189); -lean_dec(x_187); -lean_dec(x_186); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_229 = lean_ctor_get(x_195, 0); -lean_inc(x_229); -if (lean_is_exclusive(x_195)) { - lean_ctor_release(x_195, 0); - x_230 = x_195; -} else { - lean_dec_ref(x_195); - x_230 = lean_box(0); -} -if (lean_is_scalar(x_230)) { - x_231 = lean_alloc_ctor(1, 1, 0); -} else { - x_231 = x_230; -} -lean_ctor_set(x_231, 0, x_229); -return x_231; -} -} -else -{ -lean_object* x_232; lean_object* x_233; lean_object* x_234; -lean_dec(x_189); -lean_dec(x_187); -lean_dec(x_186); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_232 = lean_ctor_get(x_191, 0); -lean_inc(x_232); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - x_233 = x_191; -} else { - lean_dec_ref(x_191); - x_233 = lean_box(0); -} -if (lean_is_scalar(x_233)) { - x_234 = lean_alloc_ctor(1, 1, 0); -} else { - x_234 = x_233; -} -lean_ctor_set(x_234, 0, x_232); -return x_234; -} -} -else -{ -lean_dec(x_187); -lean_dec(x_186); -lean_dec(x_182); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec(x_76); -lean_dec_ref(x_75); -lean_dec(x_74); -lean_dec_ref(x_73); -lean_dec_ref(x_72); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -return x_188; -} -} -else -{ -lean_dec(x_186); -lean_dec(x_185); -lean_dec_ref(x_183); -lean_dec(x_182); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -else -{ -lean_dec(x_184); -lean_dec_ref(x_183); -lean_dec(x_182); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -else -{ -lean_dec(x_183); -lean_dec(x_182); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_14 = x_73; -x_15 = x_74; -x_16 = x_75; -x_17 = x_76; -x_18 = x_77; -x_19 = x_78; -x_20 = lean_box(0); -goto block_23; -} -} -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -lean_dec(x_80); -lean_dec_ref(x_72); -lean_dec_ref(x_70); -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_45); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_235 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5; -x_236 = l_Lean_MessageData_ofExpr(x_50); -x_237 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -x_238 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7; -x_239 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_239, 0, x_237); -lean_ctor_set(x_239, 1, x_238); -x_240 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_239, x_73, x_74, x_75, x_76, x_77, x_78); -lean_dec(x_74); -return x_240; -} -} -} -else -{ -uint8_t x_255; -lean_dec_ref(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_59); -lean_dec_ref(x_56); -lean_dec_ref(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_45); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_255 = !lean_is_exclusive(x_67); -if (x_255 == 0) -{ -return x_67; -} -else -{ -lean_object* x_256; lean_object* x_257; -x_256 = lean_ctor_get(x_67, 0); -lean_inc(x_256); -lean_dec(x_67); -x_257 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_257, 0, x_256); -return x_257; -} -} -} -} -} -} -} -} -block_37: -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_33 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; -x_34 = l_Lean_MessageData_ofExpr(x_25); -x_35 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_35, x_26, x_27, x_28, x_29, x_30, x_31); -lean_dec(x_27); -return x_36; -} -} -else -{ -uint8_t x_258; -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_258 = !lean_is_exclusive(x_24); -if (x_258 == 0) -{ -return x_24; -} -else -{ -lean_object* x_259; lean_object* x_260; -x_259 = lean_ctor_get(x_24, 0); -lean_inc(x_259); -lean_dec(x_24); -x_260 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_260, 0, x_259); -return x_260; -} -} -block_23: -{ -lean_object* x_21; lean_object* x_22; -x_21 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1; -x_22 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_21, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_15); -return x_22; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_18 = lean_expr_instantiate1(x_1, x_9); -x_19 = l_Lean_Expr_getAppNumArgs(x_2); -x_20 = lean_mk_empty_array_with_capacity(x_19); -lean_dec(x_19); -x_21 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_20); -x_22 = 0; -x_23 = l_Lean_Expr_betaRev(x_18, x_21, x_22, x_22); -lean_dec_ref(x_21); -lean_inc_ref(x_23); -x_24 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); -lean_closure_set(x_24, 0, x_23); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc_ref(x_11); -x_25 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_24, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec_ref(x_25); -if (x_8 == 0) -{ -lean_dec(x_26); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -lean_dec(x_6); -goto block_31; -} -else -{ -uint8_t x_32; -x_32 = l_Lean_Elab_Tactic_Do_isJP(x_6); -if (x_32 == 0) -{ -lean_dec(x_26); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -goto block_31; -} -else -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_4, 0); -x_34 = lean_ctor_get_uint8(x_33, sizeof(void*)*1 + 3); -if (x_34 == 0) -{ -lean_dec(x_26); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -goto block_31; -} -else -{ -if (lean_obj_tag(x_26) == 0) -{ -lean_dec_ref(x_9); -lean_dec_ref(x_7); -goto block_31; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_26, 0); -lean_inc(x_35); -lean_dec_ref(x_26); -x_36 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_23); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_37 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(x_4, x_9, x_7, x_36, x_35, x_5, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -lean_dec_ref(x_37); -x_39 = lean_apply_8(x_10, x_38, x_11, x_12, x_13, x_14, x_15, x_16, lean_box(0)); -return x_39; -} -else -{ -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -return x_37; -} -} -} -} -} -block_31: -{ -lean_object* x_27; lean_object* x_28; -x_27 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_23); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -x_28 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_27, x_5, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -lean_dec_ref(x_28); -x_30 = lean_apply_8(x_10, x_29, x_11, x_12, x_13, x_14, x_15, x_16, lean_box(0)); -return x_30; -} -else -{ -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -return x_28; -} -} -} -else -{ -uint8_t x_40; +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_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; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_dec_ref(x_23); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_40 = !lean_is_exclusive(x_25); -if (x_40 == 0) -{ -return x_25; -} -else -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_25, 0); -lean_inc(x_41); -lean_dec(x_25); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -_start: -{ -uint8_t x_18; lean_object* x_19; -x_18 = lean_unbox(x_8); -x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec_ref(x_1); -return x_19; -} -} -static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__17)); -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(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, uint8_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: -{ -lean_object* x_20; lean_object* x_21; 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_46; 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_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_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; uint8_t x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -if (lean_obj_tag(x_1) == 8) -{ -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -x_248 = lean_ctor_get(x_1, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_1, 1); -lean_inc_ref(x_249); -x_250 = lean_ctor_get(x_1, 2); -lean_inc_ref(x_250); -x_251 = lean_ctor_get(x_1, 3); -lean_inc_ref(x_251); -lean_dec_ref(x_1); -x_252 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_14); -if (lean_obj_tag(x_252) == 0) -{ -lean_object* x_253; lean_object* x_254; -lean_dec_ref(x_252); -lean_inc(x_248); -x_253 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed), 9, 1); -lean_closure_set(x_253, 0, x_248); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_13); -x_254 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_253, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_254) == 0) -{ -lean_object* x_255; lean_object* x_256; uint8_t x_257; lean_object* x_258; -x_255 = lean_ctor_get(x_254, 0); -lean_inc(x_255); -lean_dec_ref(x_254); -lean_inc_ref(x_250); -x_256 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed), 17, 7); -lean_closure_set(x_256, 0, x_251); -lean_closure_set(x_256, 1, x_2); -lean_closure_set(x_256, 2, x_3); -lean_closure_set(x_256, 3, x_4); -lean_closure_set(x_256, 4, x_5); -lean_closure_set(x_256, 5, x_248); -lean_closure_set(x_256, 6, x_250); -x_257 = 0; -x_258 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(x_255, x_249, x_250, x_256, x_257, x_13, x_14, x_15, x_16, x_17, x_18); -return x_258; -} -else -{ -uint8_t x_259; -lean_dec_ref(x_251); -lean_dec_ref(x_250); -lean_dec_ref(x_249); -lean_dec(x_248); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_259 = !lean_is_exclusive(x_254); -if (x_259 == 0) -{ -return x_254; -} -else -{ -lean_object* x_260; lean_object* x_261; -x_260 = lean_ctor_get(x_254, 0); -lean_inc(x_260); -lean_dec(x_254); -x_261 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_261, 0, x_260); -return x_261; -} -} -} -else -{ -uint8_t x_262; -lean_dec_ref(x_251); -lean_dec_ref(x_250); -lean_dec_ref(x_249); -lean_dec(x_248); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_262 = !lean_is_exclusive(x_252); -if (x_262 == 0) -{ -return x_252; -} -else -{ -lean_object* x_263; lean_object* x_264; -x_263 = lean_ctor_get(x_252, 0); -lean_inc(x_263); -lean_dec(x_252); -x_264 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_264, 0, x_263); -return x_264; -} -} -} -else -{ -lean_object* x_265; -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_13); -x_265 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_6, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_265) == 0) -{ -lean_object* x_266; -x_266 = lean_ctor_get(x_265, 0); -lean_inc(x_266); -lean_dec_ref(x_265); -if (lean_obj_tag(x_266) == 1) -{ -lean_object* x_267; lean_object* x_268; -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_267 = lean_ctor_get(x_266, 0); -lean_inc(x_267); -lean_dec_ref(x_266); -x_268 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_4, x_3, x_267, x_5, x_7, x_13, x_14, x_15, x_16, x_17, x_18); -return x_268; -} -else -{ -lean_object* x_269; -lean_dec(x_266); -lean_dec_ref(x_7); -x_269 = l_Lean_Expr_fvarId_x3f(x_1); -if (lean_obj_tag(x_269) == 0) -{ -x_195 = x_13; -x_196 = x_14; -x_197 = x_15; -x_198 = x_16; -x_199 = x_17; -x_200 = x_18; -x_201 = lean_box(0); -goto block_247; -} -else -{ -lean_object* x_270; uint8_t x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; -x_270 = lean_ctor_get(x_269, 0); -lean_inc(x_270); -lean_dec_ref(x_269); -x_271 = 0; -x_272 = lean_box(x_271); -x_273 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__17___boxed), 10, 2); -lean_closure_set(x_273, 0, x_270); -lean_closure_set(x_273, 1, x_272); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_13); -x_274 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_273, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_274) == 0) -{ -lean_object* x_275; -x_275 = lean_ctor_get(x_274, 0); -lean_inc(x_275); -lean_dec_ref(x_274); -if (lean_obj_tag(x_275) == 1) -{ -lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_300; -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -x_276 = lean_ctor_get(x_275, 0); -lean_inc(x_276); -lean_dec_ref(x_275); -x_300 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_14); -if (lean_obj_tag(x_300) == 0) -{ -lean_object* x_301; -lean_dec_ref(x_300); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_13); -lean_inc(x_8); -x_301 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_8, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_301) == 0) -{ -lean_object* x_302; uint8_t x_303; -x_302 = lean_ctor_get(x_301, 0); -lean_inc(x_302); -lean_dec_ref(x_301); -x_303 = lean_unbox(x_302); -lean_dec(x_302); -if (x_303 == 0) -{ -lean_dec(x_8); -x_277 = x_13; -x_278 = x_14; -x_279 = x_15; -x_280 = x_16; -x_281 = x_17; -x_282 = x_18; -x_283 = lean_box(0); -goto block_299; -} -else -{ -lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; -x_304 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18; -lean_inc_ref(x_1); -x_305 = l_Lean_MessageData_ofExpr(x_1); -x_306 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_306, 0, x_304); -lean_ctor_set(x_306, 1, x_305); -lean_inc(x_18); -lean_inc_ref(x_17); -lean_inc(x_16); -lean_inc_ref(x_15); -lean_inc_ref(x_13); -x_307 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_8, x_306, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_307) == 0) -{ -lean_dec_ref(x_307); -x_277 = x_13; -x_278 = x_14; -x_279 = x_15; -x_280 = x_16; -x_281 = x_17; -x_282 = x_18; -x_283 = lean_box(0); -goto block_299; -} -else -{ -uint8_t x_308; -lean_dec(x_276); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_308 = !lean_is_exclusive(x_307); -if (x_308 == 0) -{ -return x_307; -} -else -{ -lean_object* x_309; lean_object* x_310; -x_309 = lean_ctor_get(x_307, 0); -lean_inc(x_309); -lean_dec(x_307); -x_310 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_310, 0, x_309); -return x_310; -} -} -} -} -else -{ -uint8_t x_311; -lean_dec(x_276); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_8); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_311 = !lean_is_exclusive(x_301); -if (x_311 == 0) -{ -return x_301; -} -else -{ -lean_object* x_312; lean_object* x_313; -x_312 = lean_ctor_get(x_301, 0); -lean_inc(x_312); -lean_dec(x_301); -x_313 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_313, 0, x_312); -return x_313; -} -} -} -else -{ -uint8_t x_314; -lean_dec(x_276); -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_8); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_314 = !lean_is_exclusive(x_300); -if (x_314 == 0) -{ -return x_300; -} -else -{ -lean_object* x_315; lean_object* x_316; -x_315 = lean_ctor_get(x_300, 0); -lean_inc(x_315); -lean_dec(x_300); -x_316 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_316, 0, x_315); -return x_316; -} -} -block_299: -{ -lean_object* x_284; lean_object* x_285; -x_284 = l_Lean_Expr_fvarId_x21(x_1); -lean_dec_ref(x_1); -x_285 = l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(x_284, x_277); -lean_dec(x_284); -if (lean_obj_tag(x_285) == 0) -{ -lean_object* x_286; -x_286 = lean_ctor_get(x_285, 0); -lean_inc(x_286); -lean_dec_ref(x_285); -if (lean_obj_tag(x_286) == 1) -{ -lean_object* x_287; lean_object* x_288; lean_object* x_289; -lean_dec(x_276); -lean_dec(x_5); -lean_dec_ref(x_4); -x_287 = lean_ctor_get(x_286, 0); -lean_inc(x_287); -lean_dec_ref(x_286); -x_288 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_2); -x_289 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite(x_288, x_287, x_277, x_278, x_279, x_280, x_281, x_282); -return x_289; -} -else -{ -lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; -lean_dec(x_286); -x_290 = l_Lean_Expr_getAppNumArgs(x_2); -x_291 = lean_mk_empty_array_with_capacity(x_290); -lean_dec(x_290); -x_292 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_291); -x_293 = l_Lean_Expr_betaRev(x_276, x_292, x_271, x_271); -lean_dec_ref(x_292); -x_294 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_293); -x_295 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_4, x_294, x_5, x_277, x_278, x_279, x_280, x_281, x_282); -return x_295; -} -} -else -{ -uint8_t x_296; -lean_dec(x_282); -lean_dec_ref(x_281); -lean_dec(x_280); -lean_dec_ref(x_279); -lean_dec(x_278); -lean_dec_ref(x_277); -lean_dec(x_276); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_296 = !lean_is_exclusive(x_285); -if (x_296 == 0) -{ -return x_285; -} -else -{ -lean_object* x_297; lean_object* x_298; -x_297 = lean_ctor_get(x_285, 0); -lean_inc(x_297); -lean_dec(x_285); -x_298 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_298, 0, x_297); -return x_298; -} -} -} -} -else -{ -lean_dec(x_275); -x_195 = x_13; -x_196 = x_14; -x_197 = x_15; -x_198 = x_16; -x_199 = x_17; -x_200 = x_18; -x_201 = lean_box(0); -goto block_247; -} -} -else -{ -uint8_t x_317; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_317 = !lean_is_exclusive(x_274); -if (x_317 == 0) -{ -return x_274; -} -else -{ -lean_object* x_318; lean_object* x_319; -x_318 = lean_ctor_get(x_274, 0); -lean_inc(x_318); -lean_dec(x_274); -x_319 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_319, 0, x_318); -return x_319; -} -} -} -} -} -else -{ -uint8_t x_320; -lean_dec(x_18); -lean_dec_ref(x_17); -lean_dec(x_16); -lean_dec_ref(x_15); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_320 = !lean_is_exclusive(x_265); -if (x_320 == 0) -{ -return x_265; -} -else -{ -lean_object* x_321; lean_object* x_322; -x_321 = lean_ctor_get(x_265, 0); -lean_inc(x_321); -lean_dec(x_265); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_321); -return x_322; -} -} -} -block_45: -{ -lean_object* x_29; size_t x_30; size_t 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; -x_29 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1; -x_30 = lean_array_size(x_27); -x_31 = 0; -x_32 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7(x_30, x_31, x_27); -x_33 = lean_array_to_list(x_32); -x_34 = lean_box(0); -x_35 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(x_33, x_34); -x_36 = l_Lean_MessageData_ofList(x_35); -x_37 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_37, 0, x_29); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_8, x_37, x_21, x_24, x_20, x_25, x_23, x_26); -lean_dec(x_24); -if (lean_obj_tag(x_38) == 0) -{ -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) -{ -lean_object* x_40; -x_40 = lean_ctor_get(x_38, 0); +x_24 = lean_ctor_get(x_3, 3); +x_37 = l_Lean_instInhabitedExpr; +x_38 = lean_box(0); +x_39 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_40 = l_Lean_Expr_getAppNumArgs(x_24); +lean_inc(x_40); +x_41 = lean_mk_array(x_40, x_39); +x_42 = lean_unsigned_to_nat(1u); +x_43 = lean_nat_sub(x_40, x_42); lean_dec(x_40); -lean_ctor_set(x_38, 0, x_22); -return x_38; -} -else +lean_inc_ref(x_24); +x_44 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_24, x_41, x_43); +x_45 = lean_unsigned_to_nat(2u); +x_46 = lean_array_get(x_37, x_44, x_45); +x_47 = l_Lean_Expr_cleanupAnnotations(x_46); +x_48 = l_Lean_Expr_isApp(x_47); +if (x_48 == 0) { -lean_object* x_41; -lean_dec(x_38); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_22); -return x_41; -} -} -else -{ -uint8_t x_42; -lean_dec_ref(x_22); -x_42 = !lean_is_exclusive(x_38); -if (x_42 == 0) -{ -return x_38; -} -else -{ -lean_object* x_43; lean_object* x_44; -x_43 = lean_ctor_get(x_38, 0); -lean_inc(x_43); -lean_dec(x_38); -x_44 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_44, 0, x_43); -return x_44; -} -} -} -block_58: -{ -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -lean_dec_ref(x_53); -x_20 = x_46; -x_21 = x_47; -x_22 = x_48; -x_23 = x_50; -x_24 = x_49; -x_25 = x_51; -x_26 = x_52; -x_27 = x_54; -x_28 = lean_box(0); -goto block_45; -} -else -{ -uint8_t x_55; -lean_dec(x_52); -lean_dec(x_51); -lean_dec_ref(x_50); -lean_dec(x_49); -lean_dec_ref(x_48); lean_dec_ref(x_47); -lean_dec_ref(x_46); -lean_dec(x_8); -x_55 = !lean_is_exclusive(x_53); -if (x_55 == 0) -{ -return x_53; +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } else { -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_53, 0); -lean_inc(x_56); -lean_dec(x_53); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; +lean_object* x_49; lean_object* x_50; uint8_t x_51; +x_49 = lean_ctor_get(x_47, 1); +lean_inc_ref(x_49); +x_50 = l_Lean_Expr_appFnCleanup___redArg(x_47); +x_51 = l_Lean_Expr_isApp(x_50); +if (x_51 == 0) +{ +lean_dec_ref(x_50); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } +else +{ +lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_52 = lean_ctor_get(x_50, 1); +lean_inc_ref(x_52); +x_53 = l_Lean_Expr_appFnCleanup___redArg(x_50); +x_54 = l_Lean_Expr_isApp(x_53); +if (x_54 == 0) +{ +lean_dec_ref(x_53); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_55 = lean_ctor_get(x_53, 1); +lean_inc_ref(x_55); +x_56 = l_Lean_Expr_appFnCleanup___redArg(x_53); +x_57 = l_Lean_Expr_isApp(x_56); +if (x_57 == 0) +{ +lean_dec_ref(x_56); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } -block_109: +else { -if (lean_obj_tag(x_65) == 0) +lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_58 = lean_ctor_get(x_56, 1); +lean_inc_ref(x_58); +x_59 = l_Lean_Expr_appFnCleanup___redArg(x_56); +x_60 = l_Lean_Expr_isApp(x_59); +if (x_60 == 0) { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_67 = lean_ctor_get(x_65, 0); -lean_inc(x_67); -lean_dec_ref(x_65); -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -lean_dec(x_67); -lean_inc(x_69); -x_70 = lean_array_to_list(x_69); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc(x_61); -lean_inc_ref(x_60); -x_71 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_4, x_70, x_60, x_61, x_59, x_63, x_62, x_64); -if (lean_obj_tag(x_71) == 0) -{ -lean_object* x_72; -lean_dec_ref(x_71); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc_ref(x_60); -lean_inc(x_8); -x_72 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_8, x_60, x_61, x_59, x_63, x_62, x_64); -if (lean_obj_tag(x_72) == 0) -{ -uint8_t x_73; -x_73 = !lean_is_exclusive(x_72); -if (x_73 == 0) -{ -lean_object* x_74; uint8_t x_75; -x_74 = lean_ctor_get(x_72, 0); -x_75 = lean_unbox(x_74); -lean_dec(x_74); -if (x_75 == 0) -{ -lean_dec(x_69); -lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec_ref(x_60); lean_dec_ref(x_59); -lean_dec(x_8); -lean_ctor_set(x_72, 0, x_68); -return x_72; +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; -lean_free_object(x_72); -x_76 = lean_unsigned_to_nat(0u); -x_77 = lean_array_get_size(x_69); -x_78 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2; -x_79 = lean_nat_dec_lt(x_76, x_77); -if (x_79 == 0) +lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_61 = lean_ctor_get(x_59, 1); +lean_inc_ref(x_61); +x_62 = l_Lean_Expr_appFnCleanup___redArg(x_59); +x_63 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); +x_64 = l_Lean_Expr_isConstOf(x_62, x_63); +if (x_64 == 0) { -lean_dec(x_69); -x_20 = x_59; -x_21 = x_60; -x_22 = x_68; -x_23 = x_62; -x_24 = x_61; -x_25 = x_63; -x_26 = x_64; -x_27 = x_78; -x_28 = lean_box(0); -goto block_45; +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_inc_ref(x_24); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_25 = x_6; +x_26 = x_7; +x_27 = x_8; +x_28 = x_9; +x_29 = x_10; +x_30 = x_11; +x_31 = lean_box(0); +goto block_36; } else { +lean_object* x_65; lean_object* x_66; +x_65 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_66 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_65, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_66) == 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; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_241; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +lean_dec_ref(x_66); +x_68 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__0)); +lean_inc_ref(x_1); +x_69 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__1___boxed), 9, 1); +lean_closure_set(x_69, 0, x_1); +x_70 = lean_box(x_64); +lean_inc_ref(x_4); +x_71 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__2___boxed), 11, 2); +lean_closure_set(x_71, 0, x_4); +lean_closure_set(x_71, 1, x_70); +x_241 = lean_unbox(x_67); +lean_dec(x_67); +if (x_241 == 0) +{ +x_72 = x_6; +x_73 = x_7; +x_74 = x_8; +x_75 = x_9; +x_76 = x_10; +x_77 = x_11; +x_78 = lean_box(0); +goto block_240; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_242 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9; +lean_inc_ref(x_1); +x_243 = l_Lean_MessageData_ofExpr(x_1); +x_244 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_244, 0, x_242); +lean_ctor_set(x_244, 1, x_243); +x_245 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11; +x_246 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +x_247 = l_Lean_Expr_getAppFn(x_49); +x_248 = l_Lean_MessageData_ofExpr(x_247); +x_249 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_249, 0, x_246); +lean_ctor_set(x_249, 1, x_248); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_250 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_65, x_249, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_250) == 0) +{ +lean_dec_ref(x_250); +x_72 = x_6; +x_73 = x_7; +x_74 = x_8; +x_75 = x_9; +x_76 = x_10; +x_77 = x_11; +x_78 = lean_box(0); +goto block_240; +} +else +{ +uint8_t x_251; +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_251 = !lean_is_exclusive(x_250); +if (x_251 == 0) +{ +return x_250; +} +else +{ +lean_object* x_252; lean_object* x_253; +x_252 = lean_ctor_get(x_250, 0); +lean_inc(x_252); +lean_dec(x_250); +x_253 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_253, 0, x_252); +return x_253; +} +} +} +block_240: +{ +lean_object* x_79; +lean_inc_ref(x_4); +x_79 = l_Lean_Elab_Tactic_Do_SplitInfo_resTy(x_4); +if (lean_obj_tag(x_79) == 1) +{ uint8_t x_80; -x_80 = lean_nat_dec_le(x_77, x_77); +lean_dec_ref(x_49); +x_80 = !lean_is_exclusive(x_79); if (x_80 == 0) { -if (x_79 == 0) +lean_object* x_81; lean_object* x_82; +x_81 = lean_ctor_get(x_79, 0); +x_82 = l_Lean_Expr_constLevels_x21(x_62); +if (lean_obj_tag(x_82) == 1) { -lean_dec(x_69); -x_20 = x_59; -x_21 = x_60; -x_22 = x_68; -x_23 = x_62; -x_24 = x_61; -x_25 = x_63; -x_26 = x_64; -x_27 = x_78; -x_28 = lean_box(0); -goto block_45; -} -else +lean_object* x_83; +x_83 = lean_ctor_get(x_82, 1); +lean_inc(x_83); +if (lean_obj_tag(x_83) == 1) { -size_t x_81; size_t x_82; lean_object* x_83; -x_81 = 0; -x_82 = lean_usize_of_nat(x_77); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc_ref(x_60); -x_83 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_69, x_81, x_82, x_78, x_60, x_61, x_59, x_63, x_62, x_64); -lean_dec(x_69); -x_46 = x_59; -x_47 = x_60; -x_48 = x_68; -x_49 = x_61; -x_50 = x_62; -x_51 = x_63; -x_52 = x_64; -x_53 = x_83; -goto block_58; -} -} -else +uint8_t x_84; +x_84 = !lean_is_exclusive(x_83); +if (x_84 == 0) { -size_t x_84; size_t x_85; lean_object* x_86; -x_84 = 0; -x_85 = lean_usize_of_nat(x_77); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc_ref(x_60); -x_86 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_69, x_84, x_85, x_78, x_60, x_61, x_59, x_63, x_62, x_64); -lean_dec(x_69); -x_46 = x_59; -x_47 = x_60; -x_48 = x_68; -x_49 = x_61; -x_50 = x_62; -x_51 = x_63; -x_52 = x_64; -x_53 = x_86; -goto block_58; -} -} -} -} -else +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_83, 1); +x_86 = lean_ctor_get(x_83, 0); +lean_dec(x_86); +if (lean_obj_tag(x_85) == 0) { -lean_object* x_87; uint8_t x_88; -x_87 = lean_ctor_get(x_72, 0); +lean_object* x_87; lean_object* x_88; +x_87 = lean_ctor_get(x_82, 0); lean_inc(x_87); -lean_dec(x_72); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) +lean_dec_ref(x_82); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_88 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_69, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_88) == 0) { -lean_object* x_89; -lean_dec(x_69); -lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec(x_8); -x_89 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_89, 0, x_68); -return x_89; -} -else +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +lean_dec_ref(x_88); +lean_inc(x_89); +x_90 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_90, 0, x_89); +lean_closure_set(x_90, 1, x_81); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_91 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_90, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_91) == 0) { -lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; -x_90 = lean_unsigned_to_nat(0u); -x_91 = lean_array_get_size(x_69); -x_92 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2; -x_93 = lean_nat_dec_lt(x_90, x_91); -if (x_93 == 0) +lean_object* x_92; uint8_t x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_91, 0); +lean_inc(x_92); +lean_dec_ref(x_91); +lean_inc(x_92); +lean_ctor_set(x_79, 0, x_92); +x_93 = 0; +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc_ref(x_79); +lean_inc(x_89); +x_94 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_89, x_79, x_71, x_93, x_93, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_94) == 0) { -lean_dec(x_69); -x_20 = x_59; -x_21 = x_60; -x_22 = x_68; -x_23 = x_62; -x_24 = x_61; -x_25 = x_63; -x_26 = x_64; -x_27 = x_92; -x_28 = lean_box(0); -goto block_45; -} -else +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +lean_dec_ref(x_94); +x_96 = lean_array_get_size(x_95); +x_97 = lean_unsigned_to_nat(0u); +x_98 = lean_mk_empty_array_with_capacity(x_96); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +lean_inc(x_5); +x_99 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(x_5, x_95, x_96, x_97, x_98, x_72, x_73, x_74, x_75, x_76, x_77); +lean_dec(x_95); +if (lean_obj_tag(x_99) == 0) { -uint8_t x_94; -x_94 = lean_nat_dec_le(x_91, x_91); -if (x_94 == 0) +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +lean_dec_ref(x_99); +x_101 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); +lean_inc(x_87); +lean_ctor_set(x_83, 0, x_87); +lean_inc_ref(x_83); +x_102 = l_Lean_mkConst(x_101, x_83); +lean_inc_ref(x_58); +x_103 = l_Lean_Expr_app___override(x_102, x_58); +x_104 = lean_box(x_93); +x_105 = lean_box(x_64); +lean_inc(x_5); +lean_inc_ref(x_1); +lean_inc_ref(x_4); +lean_inc(x_100); +x_106 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 27, 18); +lean_closure_set(x_106, 0, x_37); +lean_closure_set(x_106, 1, x_100); +lean_closure_set(x_106, 2, x_38); +lean_closure_set(x_106, 3, x_4); +lean_closure_set(x_106, 4, x_104); +lean_closure_set(x_106, 5, x_1); +lean_closure_set(x_106, 6, x_62); +lean_closure_set(x_106, 7, x_61); +lean_closure_set(x_106, 8, x_58); +lean_closure_set(x_106, 9, x_55); +lean_closure_set(x_106, 10, x_52); +lean_closure_set(x_106, 11, x_44); +lean_closure_set(x_106, 12, x_83); +lean_closure_set(x_106, 13, x_87); +lean_closure_set(x_106, 14, x_103); +lean_closure_set(x_106, 15, x_5); +lean_closure_set(x_106, 16, x_105); +lean_closure_set(x_106, 17, x_2); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +x_107 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_89, x_79, x_106, x_93, x_93, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_107) == 0) { -if (x_93 == 0) +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +lean_dec_ref(x_107); +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_108, 1); +lean_inc(x_110); +lean_dec(x_108); +x_111 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_112 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_111, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_112) == 0) { -lean_dec(x_69); -x_20 = x_59; -x_21 = x_60; -x_22 = x_68; -x_23 = x_62; -x_24 = x_61; -x_25 = x_63; -x_26 = x_64; -x_27 = x_92; -x_28 = lean_box(0); -goto block_45; -} -else -{ -size_t x_95; size_t x_96; lean_object* x_97; -x_95 = 0; -x_96 = lean_usize_of_nat(x_91); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc_ref(x_60); -x_97 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_69, x_95, x_96, x_92, x_60, x_61, x_59, x_63, x_62, x_64); -lean_dec(x_69); -x_46 = x_59; -x_47 = x_60; -x_48 = x_68; -x_49 = x_61; -x_50 = x_62; -x_51 = x_63; -x_52 = x_64; -x_53 = x_97; -goto block_58; -} -} -else -{ -size_t x_98; size_t x_99; lean_object* x_100; -x_98 = 0; -x_99 = lean_usize_of_nat(x_91); -lean_inc(x_64); -lean_inc_ref(x_62); -lean_inc(x_63); -lean_inc_ref(x_59); -lean_inc_ref(x_60); -x_100 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_69, x_98, x_99, x_92, x_60, x_61, x_59, x_63, x_62, x_64); -lean_dec(x_69); -x_46 = x_59; -x_47 = x_60; -x_48 = x_68; -x_49 = x_61; -x_50 = x_62; -x_51 = x_63; -x_52 = x_64; -x_53 = x_100; -goto block_58; -} -} -} -} -} -else -{ -uint8_t x_101; -lean_dec(x_69); -lean_dec(x_68); -lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec(x_8); -x_101 = !lean_is_exclusive(x_72); -if (x_101 == 0) -{ -return x_72; -} -else -{ -lean_object* x_102; lean_object* x_103; -x_102 = lean_ctor_get(x_72, 0); -lean_inc(x_102); -lean_dec(x_72); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_102); -return x_103; -} -} -} -else -{ -uint8_t x_104; -lean_dec(x_69); -lean_dec(x_68); -lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec(x_8); -x_104 = !lean_is_exclusive(x_71); -if (x_104 == 0) -{ -return x_71; -} -else -{ -lean_object* x_105; lean_object* x_106; -x_105 = lean_ctor_get(x_71, 0); -lean_inc(x_105); -lean_dec(x_71); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -return x_106; -} -} -} -else -{ -lean_object* x_107; lean_object* x_108; -lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec(x_61); -lean_dec_ref(x_60); -lean_dec_ref(x_59); -lean_dec(x_8); -lean_dec_ref(x_4); -x_107 = lean_ctor_get(x_65, 0); -lean_inc(x_107); -lean_dec_ref(x_65); -x_108 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_108, 0, x_107); -return x_108; -} -} -block_121: -{ -if (lean_obj_tag(x_116) == 0) -{ -lean_object* x_117; -x_117 = lean_ctor_get(x_116, 0); -lean_inc(x_117); -lean_dec_ref(x_116); -x_59 = x_110; -x_60 = x_111; -x_61 = x_113; -x_62 = x_112; -x_63 = x_114; -x_64 = x_115; -x_65 = x_117; -x_66 = lean_box(0); -goto block_109; +lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +lean_dec_ref(x_112); +x_114 = lean_box(x_64); +x_115 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 18, 10); +lean_closure_set(x_115, 0, x_68); +lean_closure_set(x_115, 1, x_37); +lean_closure_set(x_115, 2, x_100); +lean_closure_set(x_115, 3, x_92); +lean_closure_set(x_115, 4, x_1); +lean_closure_set(x_115, 5, x_3); +lean_closure_set(x_115, 6, x_4); +lean_closure_set(x_115, 7, x_5); +lean_closure_set(x_115, 8, x_42); +lean_closure_set(x_115, 9, x_114); +x_116 = 1; +x_117 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_113, x_110, x_109, x_115, x_93, x_116, x_72, x_73, x_74, x_75, x_76, x_77); +return x_117; } else { uint8_t x_118; -lean_dec(x_115); -lean_dec(x_114); -lean_dec(x_113); -lean_dec_ref(x_112); -lean_dec_ref(x_111); -lean_dec_ref(x_110); -lean_dec(x_8); +lean_dec(x_110); +lean_dec(x_109); +lean_dec(x_100); +lean_dec(x_92); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); lean_dec_ref(x_4); -x_118 = !lean_is_exclusive(x_116); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_118 = !lean_is_exclusive(x_112); if (x_118 == 0) { -return x_116; +return x_112; } else { lean_object* x_119; lean_object* x_120; -x_119 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_112, 0); lean_inc(x_119); -lean_dec(x_116); +lean_dec(x_112); x_120 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_120, 0, x_119); return x_120; } } } -block_154: +else { -if (x_131 == 0) +uint8_t x_121; +lean_dec(x_100); +lean_dec(x_92); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_121 = !lean_is_exclusive(x_107); +if (x_121 == 0) { -lean_object* x_132; -lean_inc(x_130); -lean_inc_ref(x_127); -lean_inc(x_129); -lean_inc_ref(x_123); -lean_inc_ref(x_124); -lean_inc(x_8); -x_132 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_8, x_124, x_128, x_123, x_129, x_127, x_130); -if (lean_obj_tag(x_132) == 0) -{ -lean_object* x_133; uint8_t x_134; -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -lean_dec_ref(x_132); -x_134 = lean_unbox(x_133); -lean_dec(x_133); -if (x_134 == 0) -{ -lean_object* x_135; lean_object* x_136; -lean_dec_ref(x_126); -lean_dec_ref(x_12); -x_135 = lean_box(0); -lean_inc(x_130); -lean_inc_ref(x_127); -lean_inc(x_129); -lean_inc_ref(x_123); -lean_inc(x_128); -lean_inc_ref(x_124); -lean_inc_ref(x_4); -lean_inc(x_8); -x_136 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_122, x_8, x_4, x_9, x_10, x_131, x_11, x_135, x_124, x_128, x_123, x_129, x_127, x_130); -x_110 = x_123; -x_111 = x_124; -x_112 = x_127; -x_113 = x_128; -x_114 = x_129; -x_115 = x_130; -x_116 = x_136; -goto block_121; +return x_107; } else { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -x_137 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__4; -x_138 = l_Lean_MessageData_ofExpr(x_12); -x_139 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -x_140 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__6; -x_141 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_Exception_toMessageData(x_126); -x_143 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -lean_inc(x_130); -lean_inc_ref(x_127); -lean_inc(x_129); -lean_inc_ref(x_123); -lean_inc_ref(x_124); -lean_inc(x_8); -x_144 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_8, x_143, x_124, x_128, x_123, x_129, x_127, x_130); -if (lean_obj_tag(x_144) == 0) -{ -lean_object* x_145; lean_object* x_146; -x_145 = lean_ctor_get(x_144, 0); -lean_inc(x_145); -lean_dec_ref(x_144); -lean_inc(x_130); -lean_inc_ref(x_127); -lean_inc(x_129); -lean_inc_ref(x_123); -lean_inc(x_128); -lean_inc_ref(x_124); -lean_inc_ref(x_4); -lean_inc(x_8); -x_146 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_3, x_5, x_122, x_8, x_4, x_9, x_10, x_131, x_11, x_145, x_124, x_128, x_123, x_129, x_127, x_130); -x_110 = x_123; -x_111 = x_124; -x_112 = x_127; -x_113 = x_128; -x_114 = x_129; -x_115 = x_130; -x_116 = x_146; -goto block_121; +lean_object* x_122; lean_object* x_123; +x_122 = lean_ctor_get(x_107, 0); +lean_inc(x_122); +lean_dec(x_107); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_122); +return x_123; +} +} } else { -uint8_t x_147; -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_128); -lean_dec_ref(x_127); -lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); +uint8_t x_124; +lean_dec_ref(x_79); +lean_dec(x_92); +lean_dec(x_89); +lean_dec(x_87); +lean_free_object(x_83); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_147 = !lean_is_exclusive(x_144); -if (x_147 == 0) +lean_dec_ref(x_1); +x_124 = !lean_is_exclusive(x_99); +if (x_124 == 0) { -return x_144; +return x_99; } else { -lean_object* x_148; lean_object* x_149; -x_148 = lean_ctor_get(x_144, 0); -lean_inc(x_148); -lean_dec(x_144); -x_149 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_149, 0, x_148); -return x_149; -} +lean_object* x_125; lean_object* x_126; +x_125 = lean_ctor_get(x_99, 0); +lean_inc(x_125); +lean_dec(x_99); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +return x_126; } } } else { -uint8_t x_150; -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_128); -lean_dec_ref(x_127); -lean_dec_ref(x_126); -lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); +uint8_t x_127; +lean_dec_ref(x_79); +lean_dec(x_92); +lean_dec(x_89); +lean_dec(x_87); +lean_free_object(x_83); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_150 = !lean_is_exclusive(x_132); -if (x_150 == 0) +lean_dec_ref(x_1); +x_127 = !lean_is_exclusive(x_94); +if (x_127 == 0) { +return x_94; +} +else +{ +lean_object* x_128; lean_object* x_129; +x_128 = lean_ctor_get(x_94, 0); +lean_inc(x_128); +lean_dec(x_94); +x_129 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_129, 0, x_128); +return x_129; +} +} +} +else +{ +uint8_t x_130; +lean_dec(x_89); +lean_dec(x_87); +lean_free_object(x_83); +lean_free_object(x_79); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_130 = !lean_is_exclusive(x_91); +if (x_130 == 0) +{ +return x_91; +} +else +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_91, 0); +lean_inc(x_131); +lean_dec(x_91); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_131); return x_132; } -else -{ -lean_object* x_151; lean_object* x_152; -x_151 = lean_ctor_get(x_132, 0); -lean_inc(x_151); -lean_dec(x_132); -x_152 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_152, 0, x_151); -return x_152; -} } } else { -lean_object* x_153; -lean_dec(x_130); -lean_dec(x_129); -lean_dec(x_128); -lean_dec_ref(x_127); -lean_dec_ref(x_124); -lean_dec_ref(x_123); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); +lean_dec(x_87); +lean_free_object(x_83); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_126); -return x_153; +lean_dec_ref(x_1); +return x_88; } } -block_166: -{ -uint8_t x_164; -x_164 = l_Lean_Exception_isInterrupt(x_162); -if (x_164 == 0) -{ -uint8_t x_165; -lean_inc_ref(x_162); -x_165 = l_Lean_Exception_isRuntime(x_162); -x_122 = x_155; -x_123 = x_156; -x_124 = x_157; -x_125 = lean_box(0); -x_126 = x_162; -x_127 = x_159; -x_128 = x_158; -x_129 = x_160; -x_130 = x_161; -x_131 = x_165; -goto block_154; -} else { -x_122 = x_155; -x_123 = x_156; -x_124 = x_157; -x_125 = lean_box(0); -x_126 = x_162; -x_127 = x_159; -x_128 = x_158; -x_129 = x_160; -x_130 = x_161; -x_131 = x_164; -goto block_154; -} -} -block_177: -{ -if (lean_obj_tag(x_174) == 0) -{ -lean_object* x_175; -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); +lean_free_object(x_83); +lean_dec(x_85); +lean_dec_ref(x_82); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); lean_dec(x_5); +lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); -x_175 = lean_ctor_get(x_174, 0); -lean_inc(x_175); -lean_dec_ref(x_174); -x_59 = x_168; -x_60 = x_169; -x_61 = x_171; -x_62 = x_170; -x_63 = x_172; -x_64 = x_173; -x_65 = x_175; -x_66 = lean_box(0); -goto block_109; +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} } else { -lean_object* x_176; -x_176 = lean_ctor_get(x_174, 0); -lean_inc(x_176); -lean_dec_ref(x_174); -x_155 = x_167; -x_156 = x_168; -x_157 = x_169; -x_158 = x_171; -x_159 = x_170; -x_160 = x_172; -x_161 = x_173; -x_162 = x_176; -x_163 = lean_box(0); -goto block_166; -} -} -block_194: +lean_object* x_133; +x_133 = lean_ctor_get(x_83, 1); +lean_inc(x_133); +lean_dec(x_83); +if (lean_obj_tag(x_133) == 0) { -lean_object* x_189; lean_object* x_190; -x_189 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_189, 0, x_183); -lean_ctor_set(x_189, 1, x_188); -lean_inc(x_187); -lean_inc_ref(x_184); +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_82, 0); +lean_inc(x_134); +lean_dec_ref(x_82); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_135 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_69, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_135) == 0) +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_136 = lean_ctor_get(x_135, 0); +lean_inc(x_136); +lean_dec_ref(x_135); +lean_inc(x_136); +x_137 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_137, 0, x_136); +lean_closure_set(x_137, 1, x_81); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_138 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_137, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; uint8_t x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +lean_dec_ref(x_138); +lean_inc(x_139); +lean_ctor_set(x_79, 0, x_139); +x_140 = 0; +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc_ref(x_79); +lean_inc(x_136); +x_141 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_136, x_79, x_71, x_140, x_140, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +lean_dec_ref(x_141); +x_143 = lean_array_get_size(x_142); +x_144 = lean_unsigned_to_nat(0u); +x_145 = lean_mk_empty_array_with_capacity(x_143); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +lean_inc(x_5); +x_146 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(x_5, x_142, x_143, x_144, x_145, x_72, x_73, x_74, x_75, x_76, x_77); +lean_dec(x_142); +if (lean_obj_tag(x_146) == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +lean_dec_ref(x_146); +x_148 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); +lean_inc(x_134); +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_134); +lean_ctor_set(x_149, 1, x_133); +lean_inc_ref(x_149); +x_150 = l_Lean_mkConst(x_148, x_149); +lean_inc_ref(x_58); +x_151 = l_Lean_Expr_app___override(x_150, x_58); +x_152 = lean_box(x_140); +x_153 = lean_box(x_64); +lean_inc(x_5); +lean_inc_ref(x_1); +lean_inc_ref(x_4); +lean_inc(x_147); +x_154 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 27, 18); +lean_closure_set(x_154, 0, x_37); +lean_closure_set(x_154, 1, x_147); +lean_closure_set(x_154, 2, x_38); +lean_closure_set(x_154, 3, x_4); +lean_closure_set(x_154, 4, x_152); +lean_closure_set(x_154, 5, x_1); +lean_closure_set(x_154, 6, x_62); +lean_closure_set(x_154, 7, x_61); +lean_closure_set(x_154, 8, x_58); +lean_closure_set(x_154, 9, x_55); +lean_closure_set(x_154, 10, x_52); +lean_closure_set(x_154, 11, x_44); +lean_closure_set(x_154, 12, x_149); +lean_closure_set(x_154, 13, x_134); +lean_closure_set(x_154, 14, x_151); +lean_closure_set(x_154, 15, x_5); +lean_closure_set(x_154, 16, x_153); +lean_closure_set(x_154, 17, x_2); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +x_155 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_136, x_79, x_154, x_140, x_140, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_155) == 0) +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_156 = lean_ctor_get(x_155, 0); +lean_inc(x_156); +lean_dec_ref(x_155); +x_157 = lean_ctor_get(x_156, 0); +lean_inc(x_157); +x_158 = lean_ctor_get(x_156, 1); +lean_inc(x_158); +lean_dec(x_156); +x_159 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_160 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_159, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +lean_dec_ref(x_160); +x_162 = lean_box(x_64); +x_163 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 18, 10); +lean_closure_set(x_163, 0, x_68); +lean_closure_set(x_163, 1, x_37); +lean_closure_set(x_163, 2, x_147); +lean_closure_set(x_163, 3, x_139); +lean_closure_set(x_163, 4, x_1); +lean_closure_set(x_163, 5, x_3); +lean_closure_set(x_163, 6, x_4); +lean_closure_set(x_163, 7, x_5); +lean_closure_set(x_163, 8, x_42); +lean_closure_set(x_163, 9, x_162); +x_164 = 1; +x_165 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_161, x_158, x_157, x_163, x_140, x_164, x_72, x_73, x_74, x_75, x_76, x_77); +return x_165; +} +else +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; +lean_dec(x_158); +lean_dec(x_157); +lean_dec(x_147); +lean_dec(x_139); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_166 = lean_ctor_get(x_160, 0); +lean_inc(x_166); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + x_167 = x_160; +} else { + lean_dec_ref(x_160); + x_167 = lean_box(0); +} +if (lean_is_scalar(x_167)) { + x_168 = lean_alloc_ctor(1, 1, 0); +} else { + x_168 = x_167; +} +lean_ctor_set(x_168, 0, x_166); +return x_168; +} +} +else +{ +lean_object* x_169; lean_object* x_170; lean_object* x_171; +lean_dec(x_147); +lean_dec(x_139); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_169 = lean_ctor_get(x_155, 0); +lean_inc(x_169); +if (lean_is_exclusive(x_155)) { + lean_ctor_release(x_155, 0); + x_170 = x_155; +} else { + lean_dec_ref(x_155); + x_170 = lean_box(0); +} +if (lean_is_scalar(x_170)) { + x_171 = lean_alloc_ctor(1, 1, 0); +} else { + x_171 = x_170; +} +lean_ctor_set(x_171, 0, x_169); +return x_171; +} +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec_ref(x_79); +lean_dec(x_139); +lean_dec(x_136); +lean_dec(x_134); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_172 = lean_ctor_get(x_146, 0); +lean_inc(x_172); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + x_173 = x_146; +} else { + lean_dec_ref(x_146); + x_173 = lean_box(0); +} +if (lean_is_scalar(x_173)) { + x_174 = lean_alloc_ctor(1, 1, 0); +} else { + x_174 = x_173; +} +lean_ctor_set(x_174, 0, x_172); +return x_174; +} +} +else +{ +lean_object* x_175; lean_object* x_176; lean_object* x_177; +lean_dec_ref(x_79); +lean_dec(x_139); +lean_dec(x_136); +lean_dec(x_134); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_175 = lean_ctor_get(x_141, 0); +lean_inc(x_175); +if (lean_is_exclusive(x_141)) { + lean_ctor_release(x_141, 0); + x_176 = x_141; +} else { + lean_dec_ref(x_141); + x_176 = lean_box(0); +} +if (lean_is_scalar(x_176)) { + x_177 = lean_alloc_ctor(1, 1, 0); +} else { + x_177 = x_176; +} +lean_ctor_set(x_177, 0, x_175); +return x_177; +} +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_dec(x_136); +lean_dec(x_134); +lean_free_object(x_79); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_178 = lean_ctor_get(x_138, 0); +lean_inc(x_178); +if (lean_is_exclusive(x_138)) { + lean_ctor_release(x_138, 0); + x_179 = x_138; +} else { + lean_dec_ref(x_138); + x_179 = lean_box(0); +} +if (lean_is_scalar(x_179)) { + x_180 = lean_alloc_ctor(1, 1, 0); +} else { + x_180 = x_179; +} +lean_ctor_set(x_180, 0, x_178); +return x_180; +} +} +else +{ +lean_dec(x_134); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_135; +} +} +else +{ +lean_dec(x_133); +lean_dec_ref(x_82); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +} +else +{ +lean_dec(x_83); +lean_dec_ref(x_82); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +else +{ +lean_dec(x_82); +lean_free_object(x_79); +lean_dec(x_81); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +else +{ +lean_object* x_181; lean_object* x_182; +x_181 = lean_ctor_get(x_79, 0); +lean_inc(x_181); +lean_dec(x_79); +x_182 = l_Lean_Expr_constLevels_x21(x_62); +if (lean_obj_tag(x_182) == 1) +{ +lean_object* x_183; +x_183 = lean_ctor_get(x_182, 1); +lean_inc(x_183); +if (lean_obj_tag(x_183) == 1) +{ +lean_object* x_184; lean_object* x_185; +x_184 = lean_ctor_get(x_183, 1); +lean_inc(x_184); +if (lean_is_exclusive(x_183)) { + lean_ctor_release(x_183, 0); + lean_ctor_release(x_183, 1); + x_185 = x_183; +} else { + lean_dec_ref(x_183); + x_185 = lean_box(0); +} +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_186; lean_object* x_187; +x_186 = lean_ctor_get(x_182, 0); lean_inc(x_186); -lean_inc_ref(x_180); -lean_inc_ref(x_182); -lean_inc(x_8); -x_190 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_8, x_189, x_182, x_185, x_180, x_186, x_184, x_187); +lean_dec_ref(x_182); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_187 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_69, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_187) == 0) +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_188 = lean_ctor_get(x_187, 0); +lean_inc(x_188); +lean_dec_ref(x_187); +lean_inc(x_188); +x_189 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__3___boxed), 10, 2); +lean_closure_set(x_189, 0, x_188); +lean_closure_set(x_189, 1, x_181); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_190 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_189, x_72, x_73, x_74, x_75, x_76, x_77); if (lean_obj_tag(x_190) == 0) { -lean_object* x_191; lean_object* x_192; +lean_object* x_191; lean_object* x_192; uint8_t x_193; lean_object* x_194; x_191 = lean_ctor_get(x_190, 0); lean_inc(x_191); lean_dec_ref(x_190); -lean_inc(x_187); -lean_inc_ref(x_184); +lean_inc(x_191); +x_192 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_192, 0, x_191); +x_193 = 0; +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +lean_inc_ref(x_192); +lean_inc(x_188); +x_194 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_188, x_192, x_71, x_193, x_193, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +lean_dec_ref(x_194); +x_196 = lean_array_get_size(x_195); +x_197 = lean_unsigned_to_nat(0u); +x_198 = lean_mk_empty_array_with_capacity(x_196); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +lean_inc(x_5); +x_199 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(x_5, x_195, x_196, x_197, x_198, x_72, x_73, x_74, x_75, x_76, x_77); +lean_dec(x_195); +if (lean_obj_tag(x_199) == 0) +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_200 = lean_ctor_get(x_199, 0); +lean_inc(x_200); +lean_dec_ref(x_199); +x_201 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__10)); lean_inc(x_186); -lean_inc_ref(x_180); -lean_inc(x_185); -lean_inc_ref(x_182); -x_192 = lean_apply_8(x_181, x_191, x_182, x_185, x_180, x_186, x_184, x_187, lean_box(0)); -x_167 = x_178; -x_168 = x_180; -x_169 = x_182; -x_170 = x_184; -x_171 = x_185; -x_172 = x_186; -x_173 = x_187; -x_174 = x_192; -goto block_177; +if (lean_is_scalar(x_185)) { + x_202 = lean_alloc_ctor(1, 2, 0); +} else { + x_202 = x_185; } -else -{ -lean_object* x_193; -lean_dec_ref(x_181); -x_193 = lean_ctor_get(x_190, 0); -lean_inc(x_193); -lean_dec_ref(x_190); -x_155 = x_178; -x_156 = x_180; -x_157 = x_182; -x_158 = x_185; -x_159 = x_184; -x_160 = x_186; -x_161 = x_187; -x_162 = x_193; -x_163 = lean_box(0); -goto block_166; -} -} -block_247: -{ -uint8_t x_202; -x_202 = l_Lean_Expr_isConst(x_1); -if (x_202 == 0) -{ -lean_object* x_203; -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_4); -lean_dec_ref(x_2); -lean_dec_ref(x_1); -x_203 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_3, x_5, x_195, x_196, x_197, x_198, x_199, x_200); -lean_dec(x_198); -lean_dec(x_196); -return x_203; -} -else -{ -lean_object* x_204; -x_204 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_196); -if (lean_obj_tag(x_204) == 0) -{ -lean_object* x_205; lean_object* x_206; lean_object* x_207; -lean_dec_ref(x_204); -x_205 = lean_ctor_get(x_4, 1); -lean_inc_ref(x_12); -lean_inc_ref(x_205); -x_206 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__12___boxed), 10, 2); -lean_closure_set(x_206, 0, x_205); -lean_closure_set(x_206, 1, x_12); +lean_ctor_set(x_202, 0, x_186); +lean_ctor_set(x_202, 1, x_184); +lean_inc_ref(x_202); +x_203 = l_Lean_mkConst(x_201, x_202); +lean_inc_ref(x_58); +x_204 = l_Lean_Expr_app___override(x_203, x_58); +x_205 = lean_box(x_193); +x_206 = lean_box(x_64); +lean_inc(x_5); +lean_inc_ref(x_1); +lean_inc_ref(x_4); lean_inc(x_200); -lean_inc_ref(x_199); -lean_inc(x_198); -lean_inc_ref(x_197); -lean_inc_ref(x_195); -x_207 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_206, x_195, x_196, x_197, x_198, x_199, x_200); -if (lean_obj_tag(x_207) == 0) +x_207 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__6___boxed), 27, 18); +lean_closure_set(x_207, 0, x_37); +lean_closure_set(x_207, 1, x_200); +lean_closure_set(x_207, 2, x_38); +lean_closure_set(x_207, 3, x_4); +lean_closure_set(x_207, 4, x_205); +lean_closure_set(x_207, 5, x_1); +lean_closure_set(x_207, 6, x_62); +lean_closure_set(x_207, 7, x_61); +lean_closure_set(x_207, 8, x_58); +lean_closure_set(x_207, 9, x_55); +lean_closure_set(x_207, 10, x_52); +lean_closure_set(x_207, 11, x_44); +lean_closure_set(x_207, 12, x_202); +lean_closure_set(x_207, 13, x_186); +lean_closure_set(x_207, 14, x_204); +lean_closure_set(x_207, 15, x_5); +lean_closure_set(x_207, 16, x_206); +lean_closure_set(x_207, 17, x_2); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc(x_73); +lean_inc_ref(x_72); +x_208 = l_Lean_Meta_forallBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__11___redArg(x_188, x_192, x_207, x_193, x_193, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_208) == 0) { -lean_object* x_208; lean_object* x_209; -x_208 = lean_ctor_get(x_207, 0); -lean_inc(x_208); -lean_dec_ref(x_207); -lean_inc(x_200); -lean_inc_ref(x_199); -lean_inc(x_198); -lean_inc_ref(x_197); -lean_inc_ref(x_195); -lean_inc(x_8); -x_209 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_8, x_195, x_196, x_197, x_198, x_199, x_200); -if (lean_obj_tag(x_209) == 0) -{ -lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +lean_dec_ref(x_208); x_210 = lean_ctor_get(x_209, 0); lean_inc(x_210); -lean_dec_ref(x_209); -lean_inc(x_208); -x_211 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13___boxed), 9, 1); -lean_closure_set(x_211, 0, x_208); -lean_inc(x_5); -x_212 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__14___boxed), 10, 2); -lean_closure_set(x_212, 0, x_211); -lean_closure_set(x_212, 1, x_5); -lean_inc_ref(x_212); -lean_inc_ref(x_3); -x_213 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16___boxed), 10, 2); -lean_closure_set(x_213, 0, x_3); -lean_closure_set(x_213, 1, x_212); -x_214 = lean_unbox(x_210); -lean_dec(x_210); -if (x_214 == 0) +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +lean_dec(x_209); +x_212 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__3)); +lean_inc(x_77); +lean_inc_ref(x_76); +lean_inc(x_75); +lean_inc_ref(x_74); +lean_inc_ref(x_72); +x_213 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_212, x_72, x_73, x_74, x_75, x_76, x_77); +if (lean_obj_tag(x_213) == 0) { -lean_object* x_215; lean_object* x_216; +lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; lean_object* x_218; +x_214 = lean_ctor_get(x_213, 0); +lean_inc(x_214); lean_dec_ref(x_213); -lean_dec(x_208); -lean_dec_ref(x_1); -x_215 = lean_box(0); -lean_inc(x_200); -lean_inc_ref(x_199); -lean_inc(x_198); -lean_inc_ref(x_197); -lean_inc(x_196); -lean_inc_ref(x_195); -lean_inc_ref(x_3); -x_216 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16(x_3, x_212, x_215, x_195, x_196, x_197, x_198, x_199, x_200); -x_167 = x_202; -x_168 = x_197; -x_169 = x_195; -x_170 = x_199; -x_171 = x_196; -x_172 = x_198; -x_173 = x_200; -x_174 = x_216; -goto block_177; +x_215 = lean_box(x_64); +x_216 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___lam__9___boxed), 18, 10); +lean_closure_set(x_216, 0, x_68); +lean_closure_set(x_216, 1, x_37); +lean_closure_set(x_216, 2, x_200); +lean_closure_set(x_216, 3, x_191); +lean_closure_set(x_216, 4, x_1); +lean_closure_set(x_216, 5, x_3); +lean_closure_set(x_216, 6, x_4); +lean_closure_set(x_216, 7, x_5); +lean_closure_set(x_216, 8, x_42); +lean_closure_set(x_216, 9, x_215); +x_217 = 1; +x_218 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_214, x_211, x_210, x_216, x_193, x_217, x_72, x_73, x_74, x_75, x_76, x_77); +return x_218; } else { -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -lean_dec_ref(x_212); -x_217 = lean_ctor_get(x_208, 2); -lean_inc_ref(x_217); -lean_dec(x_208); -x_218 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8; -x_219 = l_Lean_Expr_constName_x21(x_1); -lean_dec_ref(x_1); -x_220 = l_Lean_MessageData_ofName(x_219); -x_221 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_221, 0, x_218); -lean_ctor_set(x_221, 1, x_220); -x_222 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__12; -x_223 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_223, 0, x_221); -lean_ctor_set(x_223, 1, x_222); -switch (lean_obj_tag(x_217)) { -case 0: -{ -lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_224 = lean_ctor_get(x_217, 0); -lean_inc(x_224); -lean_dec_ref(x_217); -x_225 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10; -x_226 = l_Lean_MessageData_ofName(x_224); -x_227 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -x_178 = x_202; -x_179 = lean_box(0); -x_180 = x_197; -x_181 = x_213; -x_182 = x_195; -x_183 = x_223; -x_184 = x_199; -x_185 = x_196; -x_186 = x_198; -x_187 = x_200; -x_188 = x_227; -goto block_194; -} -case 1: -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_228 = lean_ctor_get(x_217, 0); -lean_inc(x_228); -lean_dec_ref(x_217); -x_229 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12; -x_230 = l_Lean_mkFVar(x_228); -x_231 = l_Lean_MessageData_ofExpr(x_230); -x_232 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_232, 0, x_229); -lean_ctor_set(x_232, 1, x_231); -x_178 = x_202; -x_179 = lean_box(0); -x_180 = x_197; -x_181 = x_213; -x_182 = x_195; -x_183 = x_223; -x_184 = x_199; -x_185 = x_196; -x_186 = x_198; -x_187 = x_200; -x_188 = x_232; -goto block_194; -} -default: -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_233 = lean_ctor_get(x_217, 1); -lean_inc(x_233); -x_234 = lean_ctor_get(x_217, 2); -lean_inc_ref(x_234); -lean_dec_ref(x_217); -x_235 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14; -x_236 = l_Lean_MessageData_ofSyntax(x_233); -x_237 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -x_238 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16; -x_239 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_239, 0, x_237); -lean_ctor_set(x_239, 1, x_238); -x_240 = l_Lean_MessageData_ofExpr(x_234); -x_241 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -x_178 = x_202; -x_179 = lean_box(0); -x_180 = x_197; -x_181 = x_213; -x_182 = x_195; -x_183 = x_223; -x_184 = x_199; -x_185 = x_196; -x_186 = x_198; -x_187 = x_200; -x_188 = x_241; -goto block_194; -} -} -} -} -else -{ -lean_object* x_242; -lean_dec(x_208); -lean_dec_ref(x_1); -x_242 = lean_ctor_get(x_209, 0); -lean_inc(x_242); -lean_dec_ref(x_209); -x_155 = x_202; -x_156 = x_197; -x_157 = x_195; -x_158 = x_196; -x_159 = x_199; -x_160 = x_198; -x_161 = x_200; -x_162 = x_242; -x_163 = lean_box(0); -goto block_166; -} -} -else -{ -lean_object* x_243; -lean_dec_ref(x_1); -x_243 = lean_ctor_get(x_207, 0); -lean_inc(x_243); -lean_dec_ref(x_207); -x_155 = x_202; -x_156 = x_197; -x_157 = x_195; -x_158 = x_196; -x_159 = x_199; -x_160 = x_198; -x_161 = x_200; -x_162 = x_243; -x_163 = lean_box(0); -goto block_166; -} -} -else -{ -uint8_t x_244; +lean_object* x_219; lean_object* x_220; lean_object* x_221; +lean_dec(x_211); +lean_dec(x_210); lean_dec(x_200); -lean_dec_ref(x_199); -lean_dec(x_198); -lean_dec_ref(x_197); -lean_dec(x_196); -lean_dec_ref(x_195); -lean_dec_ref(x_12); -lean_dec_ref(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); +lean_dec(x_191); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_219 = lean_ctor_get(x_213, 0); +lean_inc(x_219); +if (lean_is_exclusive(x_213)) { + lean_ctor_release(x_213, 0); + x_220 = x_213; +} else { + lean_dec_ref(x_213); + x_220 = lean_box(0); +} +if (lean_is_scalar(x_220)) { + x_221 = lean_alloc_ctor(1, 1, 0); +} else { + x_221 = x_220; +} +lean_ctor_set(x_221, 0, x_219); +return x_221; +} +} +else +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; +lean_dec(x_200); +lean_dec(x_191); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_222 = lean_ctor_get(x_208, 0); +lean_inc(x_222); +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + x_223 = x_208; +} else { + lean_dec_ref(x_208); + x_223 = lean_box(0); +} +if (lean_is_scalar(x_223)) { + x_224 = lean_alloc_ctor(1, 1, 0); +} else { + x_224 = x_223; +} +lean_ctor_set(x_224, 0, x_222); +return x_224; +} +} +else +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; +lean_dec_ref(x_192); +lean_dec(x_191); +lean_dec(x_188); +lean_dec(x_186); +lean_dec(x_185); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); lean_dec(x_5); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec_ref(x_1); -x_244 = !lean_is_exclusive(x_204); -if (x_244 == 0) -{ -return x_204; +x_225 = lean_ctor_get(x_199, 0); +lean_inc(x_225); +if (lean_is_exclusive(x_199)) { + lean_ctor_release(x_199, 0); + x_226 = x_199; +} else { + lean_dec_ref(x_199); + x_226 = lean_box(0); +} +if (lean_is_scalar(x_226)) { + x_227 = lean_alloc_ctor(1, 1, 0); +} else { + x_227 = x_226; +} +lean_ctor_set(x_227, 0, x_225); +return x_227; +} } else { -lean_object* x_245; lean_object* x_246; -x_245 = lean_ctor_get(x_204, 0); -lean_inc(x_245); -lean_dec(x_204); -x_246 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_246, 0, x_245); -return x_246; +lean_object* x_228; lean_object* x_229; lean_object* x_230; +lean_dec_ref(x_192); +lean_dec(x_191); +lean_dec(x_188); +lean_dec(x_186); +lean_dec(x_185); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_228 = lean_ctor_get(x_194, 0); +lean_inc(x_228); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_229 = x_194; +} else { + lean_dec_ref(x_194); + x_229 = lean_box(0); +} +if (lean_is_scalar(x_229)) { + x_230 = lean_alloc_ctor(1, 1, 0); +} else { + x_230 = x_229; +} +lean_ctor_set(x_230, 0, x_228); +return x_230; } } +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +lean_dec(x_188); +lean_dec(x_186); +lean_dec(x_185); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_231 = lean_ctor_get(x_190, 0); +lean_inc(x_231); +if (lean_is_exclusive(x_190)) { + lean_ctor_release(x_190, 0); + x_232 = x_190; +} else { + lean_dec_ref(x_190); + x_232 = lean_box(0); +} +if (lean_is_scalar(x_232)) { + x_233 = lean_alloc_ctor(1, 1, 0); +} else { + x_233 = x_232; +} +lean_ctor_set(x_233, 0, x_231); +return x_233; +} +} +else +{ +lean_dec(x_186); +lean_dec(x_185); +lean_dec(x_181); +lean_dec(x_77); +lean_dec_ref(x_76); +lean_dec(x_75); +lean_dec_ref(x_74); +lean_dec(x_73); +lean_dec_ref(x_72); +lean_dec_ref(x_71); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +return x_187; +} +} +else +{ +lean_dec(x_185); +lean_dec(x_184); +lean_dec_ref(x_182); +lean_dec(x_181); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +else +{ +lean_dec(x_183); +lean_dec_ref(x_182); +lean_dec(x_181); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +else +{ +lean_dec(x_182); +lean_dec(x_181); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_13 = x_72; +x_14 = x_73; +x_15 = x_74; +x_16 = x_75; +x_17 = x_76; +x_18 = x_77; +x_19 = lean_box(0); +goto block_22; +} +} +} +else +{ +lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; +lean_dec(x_79); +lean_dec_ref(x_71); +lean_dec_ref(x_69); +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_44); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_234 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__5; +x_235 = l_Lean_MessageData_ofExpr(x_49); +x_236 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_236, 0, x_234); +lean_ctor_set(x_236, 1, x_235); +x_237 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__7; +x_238 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_238, 0, x_236); +lean_ctor_set(x_238, 1, x_237); +x_239 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_238, x_72, x_73, x_74, x_75, x_76, x_77); +lean_dec(x_73); +return x_239; +} +} +} +else +{ +uint8_t x_254; +lean_dec_ref(x_62); +lean_dec_ref(x_61); +lean_dec_ref(x_58); +lean_dec_ref(x_55); +lean_dec_ref(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_44); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_254 = !lean_is_exclusive(x_66); +if (x_254 == 0) +{ +return x_66; +} +else +{ +lean_object* x_255; lean_object* x_256; +x_255 = lean_ctor_get(x_66, 0); +lean_inc(x_255); +lean_dec(x_66); +x_256 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_256, 0, x_255); +return x_256; +} +} +} +} +} +} +} +} +block_36: +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_32 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3; +x_33 = l_Lean_MessageData_ofExpr(x_24); +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_34, x_25, x_26, x_27, x_28, x_29, x_30); +lean_dec(x_26); +return x_35; +} +} +else +{ +uint8_t x_257; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_257 = !lean_is_exclusive(x_23); +if (x_257 == 0) +{ +return x_23; +} +else +{ +lean_object* x_258; lean_object* x_259; +x_258 = lean_ctor_get(x_23, 0); +lean_inc(x_258); +lean_dec(x_23); +x_259 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_259, 0, x_258); +return x_259; +} +} +block_22: +{ +lean_object* x_20; lean_object* x_21; +x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1; +x_21 = l_Lean_throwError___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__0___redArg(x_20, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_14); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t 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, lean_object* x_14, lean_object* x_15) { +_start: +{ +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; lean_object* x_24; +x_17 = lean_expr_instantiate1(x_1, x_8); +x_18 = l_Lean_Expr_getAppNumArgs(x_2); +x_19 = lean_mk_empty_array_with_capacity(x_18); +lean_dec(x_18); +x_20 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_19); +x_21 = 0; +x_22 = l_Lean_Expr_betaRev(x_17, x_20, x_21, x_21); +lean_dec_ref(x_20); +lean_inc_ref(x_22); +x_23 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); +lean_closure_set(x_23, 0, x_22); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc_ref(x_10); +x_24 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_23, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +lean_dec_ref(x_24); +if (x_7 == 0) +{ +lean_dec(x_25); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +goto block_30; +} +else +{ +uint8_t x_31; +x_31 = l_Lean_Elab_Tactic_Do_isJP(x_5); +if (x_31 == 0) +{ +lean_dec(x_25); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +goto block_30; +} +else +{ +lean_object* x_32; uint8_t x_33; +x_32 = lean_ctor_get(x_10, 0); +x_33 = lean_ctor_get_uint8(x_32, sizeof(void*)*1 + 3); +if (x_33 == 0) +{ +lean_dec(x_25); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +goto block_30; +} +else +{ +if (lean_obj_tag(x_25) == 0) +{ +lean_dec_ref(x_8); +lean_dec_ref(x_6); +goto block_30; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_25, 0); +lean_inc(x_34); +lean_dec_ref(x_25); +x_35 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_22); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_36 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(x_8, x_6, x_35, x_34, x_4, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +x_38 = lean_apply_8(x_9, x_37, x_10, x_11, x_12, x_13, x_14, x_15, lean_box(0)); +return x_38; +} +else +{ +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +return x_36; +} +} +} +} +} +block_30: +{ +lean_object* x_26; lean_object* x_27; +x_26 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_22); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +x_27 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_26, x_4, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +lean_dec_ref(x_27); +x_29 = lean_apply_8(x_9, x_28, x_10, x_11, x_12, x_13, x_14, x_15, lean_box(0)); +return x_29; +} +else +{ +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +return x_27; +} +} +} +else +{ +uint8_t x_39; +lean_dec_ref(x_22); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_39 = !lean_is_exclusive(x_24); +if (x_39 == 0) +{ +return x_24; +} +else +{ +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_24, 0); +lean_inc(x_40); +lean_dec(x_24); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_40); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; lean_object* x_18; +x_17 = lean_unbox(x_7); +x_18 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec_ref(x_1); +return x_18; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__9)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(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, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +_start: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; 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_45; lean_object* x_46; 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_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_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +if (lean_obj_tag(x_1) == 8) +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +x_252 = lean_ctor_get(x_1, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_253); +x_254 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_254); +x_255 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_255); +lean_dec_ref(x_1); +x_256 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_13); +if (lean_obj_tag(x_256) == 0) +{ +lean_object* x_257; lean_object* x_258; +lean_dec_ref(x_256); +lean_inc(x_252); +x_257 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__7___boxed), 9, 1); +lean_closure_set(x_257, 0, x_252); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_258 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_257, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_258) == 0) +{ +lean_object* x_259; lean_object* x_260; uint8_t x_261; lean_object* x_262; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +lean_dec_ref(x_258); +lean_inc_ref(x_254); +x_260 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__9___boxed), 16, 6); +lean_closure_set(x_260, 0, x_255); +lean_closure_set(x_260, 1, x_2); +lean_closure_set(x_260, 2, x_3); +lean_closure_set(x_260, 3, x_4); +lean_closure_set(x_260, 4, x_252); +lean_closure_set(x_260, 5, x_254); +x_261 = 0; +x_262 = l_Lean_Elab_Tactic_Do_withLetDeclShared___redArg(x_259, x_253, x_254, x_260, x_261, x_12, x_13, x_14, x_15, x_16, x_17); +return x_262; +} +else +{ +uint8_t x_263; +lean_dec_ref(x_255); +lean_dec_ref(x_254); +lean_dec_ref(x_253); +lean_dec(x_252); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_263 = !lean_is_exclusive(x_258); +if (x_263 == 0) +{ +return x_258; +} +else +{ +lean_object* x_264; lean_object* x_265; +x_264 = lean_ctor_get(x_258, 0); +lean_inc(x_264); +lean_dec(x_258); +x_265 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_265, 0, x_264); +return x_265; +} +} +} +else +{ +uint8_t x_266; +lean_dec_ref(x_255); +lean_dec_ref(x_254); +lean_dec_ref(x_253); +lean_dec(x_252); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_266 = !lean_is_exclusive(x_256); +if (x_266 == 0) +{ +return x_256; +} +else +{ +lean_object* x_267; lean_object* x_268; +x_267 = lean_ctor_get(x_256, 0); +lean_inc(x_267); +lean_dec(x_256); +x_268 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_268, 0, x_267); +return x_268; +} +} +} +else +{ +lean_object* x_269; +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_269 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_5, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_269) == 0) +{ +lean_object* x_270; +x_270 = lean_ctor_get(x_269, 0); +lean_inc(x_270); +lean_dec_ref(x_269); +if (lean_obj_tag(x_270) == 1) +{ +lean_object* x_271; lean_object* x_272; +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +lean_dec_ref(x_270); +x_272 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_3, x_271, x_4, x_6, x_12, x_13, x_14, x_15, x_16, x_17); +return x_272; +} +else +{ +lean_object* x_273; +lean_dec(x_270); +lean_dec_ref(x_6); +x_273 = l_Lean_Expr_fvarId_x3f(x_1); +if (lean_obj_tag(x_273) == 0) +{ +x_242 = x_12; +x_243 = x_13; +x_244 = x_14; +x_245 = x_15; +x_246 = x_16; +x_247 = x_17; +x_248 = lean_box(0); +goto block_251; +} +else +{ +lean_object* x_274; uint8_t x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_274 = lean_ctor_get(x_273, 0); +lean_inc(x_274); +lean_dec_ref(x_273); +x_275 = 0; +x_276 = lean_box(x_275); +x_277 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__17___boxed), 10, 2); +lean_closure_set(x_277, 0, x_274); +lean_closure_set(x_277, 1, x_276); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_278 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_277, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_278) == 0) +{ +lean_object* x_279; +x_279 = lean_ctor_get(x_278, 0); +lean_inc(x_279); +lean_dec_ref(x_278); +if (lean_obj_tag(x_279) == 1) +{ +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_304; +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +x_280 = lean_ctor_get(x_279, 0); +lean_inc(x_280); +lean_dec_ref(x_279); +x_304 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_13); +if (lean_obj_tag(x_304) == 0) +{ +lean_object* x_305; +lean_dec_ref(x_304); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +lean_inc(x_7); +x_305 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_7, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_305) == 0) +{ +lean_object* x_306; uint8_t x_307; +x_306 = lean_ctor_get(x_305, 0); +lean_inc(x_306); +lean_dec_ref(x_305); +x_307 = lean_unbox(x_306); +lean_dec(x_306); +if (x_307 == 0) +{ +lean_dec(x_7); +x_281 = x_12; +x_282 = x_13; +x_283 = x_14; +x_284 = x_15; +x_285 = x_16; +x_286 = x_17; +x_287 = lean_box(0); +goto block_303; +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; +x_308 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10; +lean_inc_ref(x_1); +x_309 = l_Lean_MessageData_ofExpr(x_1); +x_310 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_310, 0, x_308); +lean_ctor_set(x_310, 1, x_309); +lean_inc(x_17); +lean_inc_ref(x_16); +lean_inc(x_15); +lean_inc_ref(x_14); +lean_inc_ref(x_12); +x_311 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_7, x_310, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_311) == 0) +{ +lean_dec_ref(x_311); +x_281 = x_12; +x_282 = x_13; +x_283 = x_14; +x_284 = x_15; +x_285 = x_16; +x_286 = x_17; +x_287 = lean_box(0); +goto block_303; +} +else +{ +uint8_t x_312; +lean_dec(x_280); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) +{ +return x_311; +} +else +{ +lean_object* x_313; lean_object* x_314; +x_313 = lean_ctor_get(x_311, 0); +lean_inc(x_313); +lean_dec(x_311); +x_314 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_314, 0, x_313); +return x_314; +} +} +} +} +else +{ +uint8_t x_315; +lean_dec(x_280); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_315 = !lean_is_exclusive(x_305); +if (x_315 == 0) +{ +return x_305; +} +else +{ +lean_object* x_316; lean_object* x_317; +x_316 = lean_ctor_get(x_305, 0); +lean_inc(x_316); +lean_dec(x_305); +x_317 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_317, 0, x_316); +return x_317; +} +} +} +else +{ +uint8_t x_318; +lean_dec(x_280); +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_318 = !lean_is_exclusive(x_304); +if (x_318 == 0) +{ +return x_304; +} +else +{ +lean_object* x_319; lean_object* x_320; +x_319 = lean_ctor_get(x_304, 0); +lean_inc(x_319); +lean_dec(x_304); +x_320 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_320, 0, x_319); +return x_320; +} +} +block_303: +{ +lean_object* x_288; lean_object* x_289; +x_288 = l_Lean_Expr_fvarId_x21(x_1); +lean_dec_ref(x_1); +x_289 = l_Lean_Elab_Tactic_Do_knownJP_x3f___redArg(x_288, x_281); +lean_dec(x_288); +if (lean_obj_tag(x_289) == 0) +{ +lean_object* x_290; +x_290 = lean_ctor_get(x_289, 0); +lean_inc(x_290); +lean_dec_ref(x_289); +if (lean_obj_tag(x_290) == 1) +{ +lean_object* x_291; lean_object* x_292; lean_object* x_293; +lean_dec(x_280); +lean_dec(x_4); +x_291 = lean_ctor_get(x_290, 0); +lean_inc(x_291); +lean_dec_ref(x_290); +x_292 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_2); +x_293 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite(x_292, x_291, x_281, x_282, x_283, x_284, x_285, x_286); +return x_293; +} +else +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; +lean_dec(x_290); +x_294 = l_Lean_Expr_getAppNumArgs(x_2); +x_295 = lean_mk_empty_array_with_capacity(x_294); +lean_dec(x_294); +x_296 = l___private_Lean_Expr_0__Lean_Expr_getAppRevArgsAux(x_2, x_295); +x_297 = l_Lean_Expr_betaRev(x_280, x_296, x_275, x_275); +lean_dec_ref(x_296); +x_298 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_3, x_297); +x_299 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_298, x_4, x_281, x_282, x_283, x_284, x_285, x_286); +return x_299; +} +} +else +{ +uint8_t x_300; +lean_dec(x_286); +lean_dec_ref(x_285); +lean_dec(x_284); +lean_dec_ref(x_283); +lean_dec(x_282); +lean_dec_ref(x_281); +lean_dec(x_280); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_300 = !lean_is_exclusive(x_289); +if (x_300 == 0) +{ +return x_289; +} +else +{ +lean_object* x_301; lean_object* x_302; +x_301 = lean_ctor_get(x_289, 0); +lean_inc(x_301); +lean_dec(x_289); +x_302 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_302, 0, x_301); +return x_302; +} +} +} +} +else +{ +lean_dec(x_279); +x_242 = x_12; +x_243 = x_13; +x_244 = x_14; +x_245 = x_15; +x_246 = x_16; +x_247 = x_17; +x_248 = lean_box(0); +goto block_251; +} +} +else +{ +uint8_t x_321; +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_321 = !lean_is_exclusive(x_278); +if (x_321 == 0) +{ +return x_278; +} +else +{ +lean_object* x_322; lean_object* x_323; +x_322 = lean_ctor_get(x_278, 0); +lean_inc(x_322); +lean_dec(x_278); +x_323 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_323, 0, x_322); +return x_323; +} +} +} +} +} +else +{ +uint8_t x_324; +lean_dec(x_17); +lean_dec_ref(x_16); +lean_dec(x_15); +lean_dec_ref(x_14); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_324 = !lean_is_exclusive(x_269); +if (x_324 == 0) +{ +return x_269; +} +else +{ +lean_object* x_325; lean_object* x_326; +x_325 = lean_ctor_get(x_269, 0); +lean_inc(x_325); +lean_dec(x_269); +x_326 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_326, 0, x_325); +return x_326; +} +} +} +block_44: +{ +lean_object* x_28; size_t x_29; size_t 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; +x_28 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1; +x_29 = lean_array_size(x_26); +x_30 = 0; +x_31 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8(x_29, x_30, x_26); +x_32 = lean_array_to_list(x_31); +x_33 = lean_box(0); +x_34 = l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9(x_32, x_33); +x_35 = l_Lean_MessageData_ofList(x_34); +x_36 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_36, 0, x_28); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_7, x_36, x_25, x_21, x_19, x_22, x_24, x_23); +lean_dec(x_21); +if (lean_obj_tag(x_37) == 0) +{ +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +x_39 = lean_ctor_get(x_37, 0); +lean_dec(x_39); +lean_ctor_set(x_37, 0, x_20); +return x_37; +} +else +{ +lean_object* x_40; +lean_dec(x_37); +x_40 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_40, 0, x_20); +return x_40; +} +} +else +{ +uint8_t x_41; +lean_dec_ref(x_20); +x_41 = !lean_is_exclusive(x_37); +if (x_41 == 0) +{ +return x_37; +} +else +{ +lean_object* x_42; lean_object* x_43; +x_42 = lean_ctor_get(x_37, 0); +lean_inc(x_42); +lean_dec(x_37); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +return x_43; +} +} +} +block_57: +{ +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +lean_dec_ref(x_52); +x_19 = x_45; +x_20 = x_46; +x_21 = x_47; +x_22 = x_48; +x_23 = x_49; +x_24 = x_50; +x_25 = x_51; +x_26 = x_53; +x_27 = lean_box(0); +goto block_44; +} +else +{ +uint8_t x_54; +lean_dec_ref(x_51); +lean_dec_ref(x_50); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_7); +x_54 = !lean_is_exclusive(x_52); +if (x_54 == 0) +{ +return x_52; +} +else +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_52, 0); +lean_inc(x_55); +lean_dec(x_52); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; +} +} +} +block_108: +{ +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_66 = lean_ctor_get(x_64, 0); +lean_inc(x_66); +lean_dec_ref(x_64); +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec(x_66); +lean_inc(x_68); +x_69 = lean_array_to_list(x_68); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc(x_59); +lean_inc_ref(x_63); +x_70 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_69, x_63, x_59, x_58, x_60, x_62, x_61); +if (lean_obj_tag(x_70) == 0) +{ +lean_object* x_71; +lean_dec_ref(x_70); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc_ref(x_63); +lean_inc(x_7); +x_71 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_7, x_63, x_59, x_58, x_60, x_62, x_61); +if (lean_obj_tag(x_71) == 0) +{ +uint8_t x_72; +x_72 = !lean_is_exclusive(x_71); +if (x_72 == 0) +{ +lean_object* x_73; uint8_t x_74; +x_73 = lean_ctor_get(x_71, 0); +x_74 = lean_unbox(x_73); +lean_dec(x_73); +if (x_74 == 0) +{ +lean_dec(x_68); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec(x_7); +lean_ctor_set(x_71, 0, x_67); +return x_71; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; +lean_free_object(x_71); +x_75 = lean_unsigned_to_nat(0u); +x_76 = lean_array_get_size(x_68); +x_77 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2; +x_78 = lean_nat_dec_lt(x_75, x_76); +if (x_78 == 0) +{ +lean_dec(x_68); +x_19 = x_58; +x_20 = x_67; +x_21 = x_59; +x_22 = x_60; +x_23 = x_61; +x_24 = x_62; +x_25 = x_63; +x_26 = x_77; +x_27 = lean_box(0); +goto block_44; +} +else +{ +uint8_t x_79; +x_79 = lean_nat_dec_le(x_76, x_76); +if (x_79 == 0) +{ +if (x_78 == 0) +{ +lean_dec(x_68); +x_19 = x_58; +x_20 = x_67; +x_21 = x_59; +x_22 = x_60; +x_23 = x_61; +x_24 = x_62; +x_25 = x_63; +x_26 = x_77; +x_27 = lean_box(0); +goto block_44; +} +else +{ +size_t x_80; size_t x_81; lean_object* x_82; +x_80 = 0; +x_81 = lean_usize_of_nat(x_76); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc_ref(x_63); +x_82 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_68, x_80, x_81, x_77, x_63, x_59, x_58, x_60, x_62, x_61); +lean_dec(x_68); +x_45 = x_58; +x_46 = x_67; +x_47 = x_59; +x_48 = x_60; +x_49 = x_61; +x_50 = x_62; +x_51 = x_63; +x_52 = x_82; +goto block_57; +} +} +else +{ +size_t x_83; size_t x_84; lean_object* x_85; +x_83 = 0; +x_84 = lean_usize_of_nat(x_76); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc_ref(x_63); +x_85 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_68, x_83, x_84, x_77, x_63, x_59, x_58, x_60, x_62, x_61); +lean_dec(x_68); +x_45 = x_58; +x_46 = x_67; +x_47 = x_59; +x_48 = x_60; +x_49 = x_61; +x_50 = x_62; +x_51 = x_63; +x_52 = x_85; +goto block_57; +} +} +} +} +else +{ +lean_object* x_86; uint8_t x_87; +x_86 = lean_ctor_get(x_71, 0); +lean_inc(x_86); +lean_dec(x_71); +x_87 = lean_unbox(x_86); +lean_dec(x_86); +if (x_87 == 0) +{ +lean_object* x_88; +lean_dec(x_68); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec(x_7); +x_88 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_88, 0, x_67); +return x_88; +} +else +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; +x_89 = lean_unsigned_to_nat(0u); +x_90 = lean_array_get_size(x_68); +x_91 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2; +x_92 = lean_nat_dec_lt(x_89, x_90); +if (x_92 == 0) +{ +lean_dec(x_68); +x_19 = x_58; +x_20 = x_67; +x_21 = x_59; +x_22 = x_60; +x_23 = x_61; +x_24 = x_62; +x_25 = x_63; +x_26 = x_91; +x_27 = lean_box(0); +goto block_44; +} +else +{ +uint8_t x_93; +x_93 = lean_nat_dec_le(x_90, x_90); +if (x_93 == 0) +{ +if (x_92 == 0) +{ +lean_dec(x_68); +x_19 = x_58; +x_20 = x_67; +x_21 = x_59; +x_22 = x_60; +x_23 = x_61; +x_24 = x_62; +x_25 = x_63; +x_26 = x_91; +x_27 = lean_box(0); +goto block_44; +} +else +{ +size_t x_94; size_t x_95; lean_object* x_96; +x_94 = 0; +x_95 = lean_usize_of_nat(x_90); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc_ref(x_63); +x_96 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_68, x_94, x_95, x_91, x_63, x_59, x_58, x_60, x_62, x_61); +lean_dec(x_68); +x_45 = x_58; +x_46 = x_67; +x_47 = x_59; +x_48 = x_60; +x_49 = x_61; +x_50 = x_62; +x_51 = x_63; +x_52 = x_96; +goto block_57; +} +} +else +{ +size_t x_97; size_t x_98; lean_object* x_99; +x_97 = 0; +x_98 = lean_usize_of_nat(x_90); +lean_inc(x_61); +lean_inc_ref(x_62); +lean_inc(x_60); +lean_inc_ref(x_58); +lean_inc_ref(x_63); +x_99 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10(x_68, x_97, x_98, x_91, x_63, x_59, x_58, x_60, x_62, x_61); +lean_dec(x_68); +x_45 = x_58; +x_46 = x_67; +x_47 = x_59; +x_48 = x_60; +x_49 = x_61; +x_50 = x_62; +x_51 = x_63; +x_52 = x_99; +goto block_57; +} +} +} +} +} +else +{ +uint8_t x_100; +lean_dec(x_68); +lean_dec(x_67); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec(x_7); +x_100 = !lean_is_exclusive(x_71); +if (x_100 == 0) +{ +return x_71; +} +else +{ +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_71, 0); +lean_inc(x_101); +lean_dec(x_71); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +return x_102; +} +} +} +else +{ +uint8_t x_103; +lean_dec(x_68); +lean_dec(x_67); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec(x_7); +x_103 = !lean_is_exclusive(x_70); +if (x_103 == 0) +{ +return x_70; +} +else +{ +lean_object* x_104; lean_object* x_105; +x_104 = lean_ctor_get(x_70, 0); +lean_inc(x_104); +lean_dec(x_70); +x_105 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_105, 0, x_104); +return x_105; +} +} +} +else +{ +lean_object* x_106; lean_object* x_107; +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_59); +lean_dec_ref(x_58); +lean_dec(x_7); +x_106 = lean_ctor_get(x_64, 0); +lean_inc(x_106); +lean_dec_ref(x_64); +x_107 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_107, 0, x_106); +return x_107; +} +} +block_120: +{ +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +lean_dec_ref(x_115); +x_58 = x_109; +x_59 = x_110; +x_60 = x_111; +x_61 = x_112; +x_62 = x_113; +x_63 = x_114; +x_64 = x_116; +x_65 = lean_box(0); +goto block_108; +} +else +{ +uint8_t x_117; +lean_dec_ref(x_114); +lean_dec_ref(x_113); +lean_dec(x_112); +lean_dec(x_111); +lean_dec(x_110); +lean_dec_ref(x_109); +lean_dec(x_7); +x_117 = !lean_is_exclusive(x_115); +if (x_117 == 0) +{ +return x_115; +} +else +{ +lean_object* x_118; lean_object* x_119; +x_118 = lean_ctor_get(x_115, 0); +lean_inc(x_118); +lean_dec(x_115); +x_119 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_119, 0, x_118); +return x_119; +} +} +} +block_152: +{ +if (x_129 == 0) +{ +lean_object* x_130; +lean_inc(x_125); +lean_inc_ref(x_127); +lean_inc(x_124); +lean_inc_ref(x_122); +lean_inc_ref(x_128); +lean_inc(x_7); +x_130 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_7, x_128, x_123, x_122, x_124, x_127, x_125); +if (lean_obj_tag(x_130) == 0) +{ +lean_object* x_131; uint8_t x_132; +x_131 = lean_ctor_get(x_130, 0); +lean_inc(x_131); +lean_dec_ref(x_130); +x_132 = lean_unbox(x_131); +lean_dec(x_131); +if (x_132 == 0) +{ +lean_object* x_133; lean_object* x_134; +lean_dec_ref(x_126); +lean_dec_ref(x_11); +x_133 = lean_box(0); +lean_inc(x_125); +lean_inc_ref(x_127); +lean_inc(x_124); +lean_inc_ref(x_122); +lean_inc(x_123); +lean_inc_ref(x_128); +lean_inc(x_7); +x_134 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_7, x_3, x_4, x_8, x_9, x_129, x_10, x_133, x_128, x_123, x_122, x_124, x_127, x_125); +x_109 = x_122; +x_110 = x_123; +x_111 = x_124; +x_112 = x_125; +x_113 = x_127; +x_114 = x_128; +x_115 = x_134; +goto block_120; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_135 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__4; +x_136 = l_Lean_MessageData_ofExpr(x_11); +x_137 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +x_138 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__6; +x_139 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +x_140 = l_Lean_Exception_toMessageData(x_126); +x_141 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +lean_inc(x_125); +lean_inc_ref(x_127); +lean_inc(x_124); +lean_inc_ref(x_122); +lean_inc_ref(x_128); +lean_inc(x_7); +x_142 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_7, x_141, x_128, x_123, x_122, x_124, x_127, x_125); +if (lean_obj_tag(x_142) == 0) +{ +lean_object* x_143; lean_object* x_144; +x_143 = lean_ctor_get(x_142, 0); +lean_inc(x_143); +lean_dec_ref(x_142); +lean_inc(x_125); +lean_inc_ref(x_127); +lean_inc(x_124); +lean_inc_ref(x_122); +lean_inc(x_123); +lean_inc_ref(x_128); +lean_inc(x_7); +x_144 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_2, x_7, x_3, x_4, x_8, x_9, x_129, x_10, x_143, x_128, x_123, x_122, x_124, x_127, x_125); +x_109 = x_122; +x_110 = x_123; +x_111 = x_124; +x_112 = x_125; +x_113 = x_127; +x_114 = x_128; +x_115 = x_144; +goto block_120; +} +else +{ +uint8_t x_145; +lean_dec_ref(x_128); +lean_dec_ref(x_127); +lean_dec(x_125); +lean_dec(x_124); +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_145 = !lean_is_exclusive(x_142); +if (x_145 == 0) +{ +return x_142; +} +else +{ +lean_object* x_146; lean_object* x_147; +x_146 = lean_ctor_get(x_142, 0); +lean_inc(x_146); +lean_dec(x_142); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_146); +return x_147; +} +} +} +} +else +{ +uint8_t x_148; +lean_dec_ref(x_128); +lean_dec_ref(x_127); +lean_dec_ref(x_126); +lean_dec(x_125); +lean_dec(x_124); +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_148 = !lean_is_exclusive(x_130); +if (x_148 == 0) +{ +return x_130; +} +else +{ +lean_object* x_149; lean_object* x_150; +x_149 = lean_ctor_get(x_130, 0); +lean_inc(x_149); +lean_dec(x_130); +x_150 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_150, 0, x_149); +return x_150; +} +} +} +else +{ +lean_object* x_151; +lean_dec_ref(x_128); +lean_dec_ref(x_127); +lean_dec(x_125); +lean_dec(x_124); +lean_dec(x_123); +lean_dec_ref(x_122); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_151 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_151, 0, x_126); +return x_151; +} +} +block_163: +{ +uint8_t x_161; +x_161 = l_Lean_Exception_isInterrupt(x_159); +if (x_161 == 0) +{ +uint8_t x_162; +lean_inc_ref(x_159); +x_162 = l_Lean_Exception_isRuntime(x_159); +x_121 = lean_box(0); +x_122 = x_153; +x_123 = x_154; +x_124 = x_155; +x_125 = x_156; +x_126 = x_159; +x_127 = x_157; +x_128 = x_158; +x_129 = x_162; +goto block_152; +} +else +{ +x_121 = lean_box(0); +x_122 = x_153; +x_123 = x_154; +x_124 = x_155; +x_125 = x_156; +x_126 = x_159; +x_127 = x_157; +x_128 = x_158; +x_129 = x_161; +goto block_152; +} +} +block_173: +{ +if (lean_obj_tag(x_170) == 0) +{ +lean_object* x_171; +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +lean_dec_ref(x_170); +x_58 = x_164; +x_59 = x_165; +x_60 = x_166; +x_61 = x_167; +x_62 = x_168; +x_63 = x_169; +x_64 = x_171; +x_65 = lean_box(0); +goto block_108; +} +else +{ +lean_object* x_172; +x_172 = lean_ctor_get(x_170, 0); +lean_inc(x_172); +lean_dec_ref(x_170); +x_153 = x_164; +x_154 = x_165; +x_155 = x_166; +x_156 = x_167; +x_157 = x_168; +x_158 = x_169; +x_159 = x_172; +x_160 = lean_box(0); +goto block_163; +} +} +block_189: +{ +lean_object* x_184; lean_object* x_185; +x_184 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_184, 0, x_174); +lean_ctor_set(x_184, 1, x_183); +lean_inc(x_180); +lean_inc_ref(x_181); +lean_inc(x_179); +lean_inc_ref(x_175); +lean_inc_ref(x_182); +lean_inc(x_7); +x_185 = l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5(x_7, x_184, x_182, x_178, x_175, x_179, x_181, x_180); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +lean_dec_ref(x_185); +lean_inc(x_180); +lean_inc_ref(x_181); +lean_inc(x_179); +lean_inc_ref(x_175); +lean_inc(x_178); +lean_inc_ref(x_182); +x_187 = lean_apply_8(x_177, x_186, x_182, x_178, x_175, x_179, x_181, x_180, lean_box(0)); +x_164 = x_175; +x_165 = x_178; +x_166 = x_179; +x_167 = x_180; +x_168 = x_181; +x_169 = x_182; +x_170 = x_187; +goto block_173; +} +else +{ +lean_object* x_188; +lean_dec_ref(x_177); +x_188 = lean_ctor_get(x_185, 0); +lean_inc(x_188); +lean_dec_ref(x_185); +x_153 = x_175; +x_154 = x_178; +x_155 = x_179; +x_156 = x_180; +x_157 = x_181; +x_158 = x_182; +x_159 = x_188; +x_160 = lean_box(0); +goto block_163; +} +} +block_241: +{ +if (x_197 == 0) +{ +lean_object* x_198; +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_198 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_3, x_4, x_196, x_192, x_191, x_193, x_195, x_194); +lean_dec(x_193); +lean_dec(x_192); +return x_198; +} +else +{ +lean_object* x_199; +x_199 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_192); +if (lean_obj_tag(x_199) == 0) +{ +lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_dec_ref(x_199); +x_200 = lean_ctor_get(x_196, 1); +lean_inc_ref(x_11); +lean_inc_ref(x_200); +x_201 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__12___boxed), 10, 2); +lean_closure_set(x_201, 0, x_200); +lean_closure_set(x_201, 1, x_11); +lean_inc(x_194); +lean_inc_ref(x_195); +lean_inc(x_193); +lean_inc_ref(x_191); +lean_inc_ref(x_196); +x_202 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_201, x_196, x_192, x_191, x_193, x_195, x_194); +if (lean_obj_tag(x_202) == 0) +{ +lean_object* x_203; lean_object* x_204; +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +lean_dec_ref(x_202); +lean_inc(x_194); +lean_inc_ref(x_195); +lean_inc(x_193); +lean_inc_ref(x_191); +lean_inc_ref(x_196); +lean_inc(x_7); +x_204 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_7, x_196, x_192, x_191, x_193, x_195, x_194); +if (lean_obj_tag(x_204) == 0) +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; uint8_t x_209; +x_205 = lean_ctor_get(x_204, 0); +lean_inc(x_205); +lean_dec_ref(x_204); +lean_inc(x_203); +x_206 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__13___boxed), 9, 1); +lean_closure_set(x_206, 0, x_203); +lean_inc(x_4); +x_207 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__14___boxed), 10, 2); +lean_closure_set(x_207, 0, x_206); +lean_closure_set(x_207, 1, x_4); +lean_inc_ref(x_207); +lean_inc_ref(x_3); +x_208 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16___boxed), 10, 2); +lean_closure_set(x_208, 0, x_3); +lean_closure_set(x_208, 1, x_207); +x_209 = lean_unbox(x_205); +lean_dec(x_205); +if (x_209 == 0) +{ +lean_object* x_210; lean_object* x_211; +lean_dec_ref(x_208); +lean_dec(x_203); +lean_dec_ref(x_1); +x_210 = lean_box(0); +lean_inc(x_194); +lean_inc_ref(x_195); +lean_inc(x_193); +lean_inc_ref(x_191); +lean_inc(x_192); +lean_inc_ref(x_196); +lean_inc_ref(x_3); +x_211 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__16(x_3, x_207, x_210, x_196, x_192, x_191, x_193, x_195, x_194); +x_164 = x_191; +x_165 = x_192; +x_166 = x_193; +x_167 = x_194; +x_168 = x_195; +x_169 = x_196; +x_170 = x_211; +goto block_173; +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; +lean_dec_ref(x_207); +x_212 = lean_ctor_get(x_203, 2); +lean_inc_ref(x_212); +lean_dec(x_203); +x_213 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8; +x_214 = l_Lean_MessageData_ofExpr(x_1); +x_215 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_215, 0, x_213); +lean_ctor_set(x_215, 1, x_214); +x_216 = l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__12; +x_217 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_217, 0, x_215); +lean_ctor_set(x_217, 1, x_216); +switch (lean_obj_tag(x_212)) { +case 0: +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_218 = lean_ctor_get(x_212, 0); +lean_inc(x_218); +lean_dec_ref(x_212); +x_219 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3; +x_220 = l_Lean_MessageData_ofName(x_218); +x_221 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +x_174 = x_217; +x_175 = x_191; +x_176 = lean_box(0); +x_177 = x_208; +x_178 = x_192; +x_179 = x_193; +x_180 = x_194; +x_181 = x_195; +x_182 = x_196; +x_183 = x_221; +goto block_189; +} +case 1: +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; +x_222 = lean_ctor_get(x_212, 0); +lean_inc(x_222); +lean_dec_ref(x_212); +x_223 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5; +x_224 = l_Lean_mkFVar(x_222); +x_225 = l_Lean_MessageData_ofExpr(x_224); +x_226 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_226, 0, x_223); +lean_ctor_set(x_226, 1, x_225); +x_174 = x_217; +x_175 = x_191; +x_176 = lean_box(0); +x_177 = x_208; +x_178 = x_192; +x_179 = x_193; +x_180 = x_194; +x_181 = x_195; +x_182 = x_196; +x_183 = x_226; +goto block_189; +} +default: +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_227 = lean_ctor_get(x_212, 1); +lean_inc(x_227); +x_228 = lean_ctor_get(x_212, 2); +lean_inc_ref(x_228); +lean_dec_ref(x_212); +x_229 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7; +x_230 = l_Lean_MessageData_ofSyntax(x_227); +x_231 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +x_232 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9; +x_233 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +x_234 = l_Lean_MessageData_ofExpr(x_228); +x_235 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +x_174 = x_217; +x_175 = x_191; +x_176 = lean_box(0); +x_177 = x_208; +x_178 = x_192; +x_179 = x_193; +x_180 = x_194; +x_181 = x_195; +x_182 = x_196; +x_183 = x_235; +goto block_189; +} +} +} +} +else +{ +lean_object* x_236; +lean_dec(x_203); +lean_dec_ref(x_1); +x_236 = lean_ctor_get(x_204, 0); +lean_inc(x_236); +lean_dec_ref(x_204); +x_153 = x_191; +x_154 = x_192; +x_155 = x_193; +x_156 = x_194; +x_157 = x_195; +x_158 = x_196; +x_159 = x_236; +x_160 = lean_box(0); +goto block_163; +} +} +else +{ +lean_object* x_237; +lean_dec_ref(x_1); +x_237 = lean_ctor_get(x_202, 0); +lean_inc(x_237); +lean_dec_ref(x_202); +x_153 = x_191; +x_154 = x_192; +x_155 = x_193; +x_156 = x_194; +x_157 = x_195; +x_158 = x_196; +x_159 = x_237; +x_160 = lean_box(0); +goto block_163; +} +} +else +{ +uint8_t x_238; +lean_dec_ref(x_196); +lean_dec_ref(x_195); +lean_dec(x_194); +lean_dec(x_193); +lean_dec(x_192); +lean_dec_ref(x_191); +lean_dec_ref(x_11); +lean_dec_ref(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_238 = !lean_is_exclusive(x_199); +if (x_238 == 0) +{ +return x_199; +} +else +{ +lean_object* x_239; lean_object* x_240; +x_239 = lean_ctor_get(x_199, 0); +lean_inc(x_239); +lean_dec(x_199); +x_240 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_240, 0, x_239); +return x_240; +} +} +} +} +block_251: +{ +uint8_t x_249; +x_249 = l_Lean_Expr_isConst(x_1); +if (x_249 == 0) +{ +uint8_t x_250; +x_250 = l_Lean_Expr_isFVar(x_1); +x_190 = lean_box(0); +x_191 = x_244; +x_192 = x_243; +x_193 = x_245; +x_194 = x_247; +x_195 = x_246; +x_196 = x_242; +x_197 = x_250; +goto block_241; +} +else +{ +x_190 = lean_box(0); +x_191 = x_244; +x_192 = x_243; +x_193 = x_245; +x_194 = x_247; +x_195 = x_246; +x_196 = x_242; +x_197 = x_249; +goto block_241; } } } @@ -48688,1178 +49068,1158 @@ x_2 = lean_float_of_nat(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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, lean_object* x_14) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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_16; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec_ref(x_16); -lean_inc(x_17); -x_18 = l_Lean_Expr_cleanupAnnotations(x_17); -x_19 = l_Lean_Expr_isApp(x_18); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec_ref(x_18); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_ctor_get(x_18, 1); -lean_inc_ref(x_21); -x_22 = l_Lean_Expr_appFnCleanup___redArg(x_18); -x_23 = l_Lean_Expr_isApp(x_22); -if (x_23 == 0) -{ -lean_object* x_24; -lean_dec_ref(x_22); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_24 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_24; -} -else -{ -lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_25 = lean_ctor_get(x_22, 1); -lean_inc_ref(x_25); -x_26 = l_Lean_Expr_appFnCleanup___redArg(x_22); -x_27 = l_Lean_Expr_isApp(x_26); -if (x_27 == 0) -{ -lean_object* x_28; -lean_dec_ref(x_26); -lean_dec_ref(x_25); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_28 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_28; -} -else -{ -lean_object* x_29; uint8_t x_30; -x_29 = l_Lean_Expr_appFnCleanup___redArg(x_26); -x_30 = l_Lean_Expr_isApp(x_29); -if (x_30 == 0) -{ -lean_object* x_31; -lean_dec_ref(x_29); -lean_dec_ref(x_25); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_31 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_31; -} -else -{ -lean_object* x_32; uint8_t x_33; -x_32 = l_Lean_Expr_appFnCleanup___redArg(x_29); -x_33 = l_Lean_Expr_isApp(x_32); -if (x_33 == 0) -{ -lean_object* x_34; -lean_dec_ref(x_32); -lean_dec_ref(x_25); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_34 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_34; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_35 = lean_ctor_get(x_32, 1); -lean_inc_ref(x_35); -x_36 = l_Lean_Expr_appFnCleanup___redArg(x_32); -x_37 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); -x_38 = l_Lean_Expr_isConstOf(x_36, x_37); -lean_dec_ref(x_36); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec_ref(x_21); -lean_dec(x_17); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -x_39 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_12); -lean_dec(x_10); -return x_39; -} -else -{ -lean_object* x_40; lean_object* x_41; -x_40 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed), 9, 1); -lean_closure_set(x_40, 0, x_21); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_41 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_40, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -lean_dec_ref(x_41); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_43 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_43) == 0) -{ -lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -lean_dec_ref(x_43); -x_45 = lean_ctor_get_uint8(x_44, sizeof(void*)*1); -x_46 = l_Lean_Expr_headBeta(x_42); -lean_inc_ref(x_46); -x_47 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); -lean_closure_set(x_47, 0, x_46); -lean_inc_ref(x_46); -x_48 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_46); -x_49 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); -x_50 = l_Lean_Expr_getAppFn_x27(x_46); -if (x_45 == 0) -{ -lean_object* x_51; -lean_dec(x_44); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -x_51 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_50, x_46, x_48, x_5, x_3, x_47, x_6, x_49, x_35, x_25, x_38, x_17, x_9, x_10, x_11, x_12, x_13, x_14); -return x_51; -} -else -{ -lean_object* x_52; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_52 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_49, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_52) == 0) -{ -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_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_127; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -lean_dec_ref(x_52); -lean_inc_ref(x_46); -x_54 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___boxed), 9, 1); -lean_closure_set(x_54, 0, x_46); -x_55 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__1)); -x_127 = lean_unbox(x_53); -if (x_127 == 0) -{ -lean_object* x_128; uint8_t x_129; -x_128 = l_Lean_trace_profiler; -x_129 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_44, x_128); -if (x_129 == 0) -{ -lean_object* x_130; -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec(x_44); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -x_130 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_50, x_46, x_48, x_5, x_3, x_47, x_6, x_49, x_35, x_25, x_38, x_17, x_9, x_10, x_11, x_12, x_13, x_14); -return x_130; -} -else -{ -goto block_126; -} -} -else -{ -goto block_126; -} -block_76: -{ -lean_object* x_60; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_60 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_8, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_60) == 0) -{ -lean_object* x_61; double x_62; double x_63; double x_64; double x_65; double x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; lean_object* x_72; -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -lean_dec_ref(x_60); -x_62 = lean_float_of_nat(x_57); -x_63 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___closed__0; -x_64 = lean_float_div(x_62, x_63); -x_65 = lean_float_of_nat(x_61); -x_66 = lean_float_div(x_65, x_63); -x_67 = lean_box_float(x_64); -x_68 = lean_box_float(x_66); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_58); -lean_ctor_set(x_70, 1, x_69); -x_71 = lean_unbox(x_53); -lean_dec(x_53); -x_72 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(x_49, x_38, x_55, x_44, x_71, x_56, x_54, x_70, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_44); -return x_72; -} -else -{ -uint8_t x_73; -lean_dec_ref(x_58); -lean_dec(x_57); -lean_dec_ref(x_56); -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec(x_44); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_73 = !lean_is_exclusive(x_60); -if (x_73 == 0) -{ -return x_60; -} -else -{ -lean_object* x_74; lean_object* x_75; -x_74 = lean_ctor_get(x_60, 0); -lean_inc(x_74); -lean_dec(x_60); -x_75 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_75, 0, x_74); -return x_75; -} -} -} -block_94: -{ -lean_object* x_81; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_81 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_7, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_81) == 0) -{ -lean_object* x_82; double x_83; double x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -lean_dec_ref(x_81); -x_83 = lean_float_of_nat(x_78); -x_84 = lean_float_of_nat(x_82); -x_85 = lean_box_float(x_83); -x_86 = lean_box_float(x_84); -x_87 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_79); -lean_ctor_set(x_88, 1, x_87); -x_89 = lean_unbox(x_53); -lean_dec(x_53); -x_90 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(x_49, x_38, x_55, x_44, x_89, x_77, x_54, x_88, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_44); -return x_90; -} -else -{ -uint8_t x_91; -lean_dec_ref(x_79); -lean_dec(x_78); -lean_dec_ref(x_77); -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec(x_44); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -x_91 = !lean_is_exclusive(x_81); -if (x_91 == 0) -{ -return x_81; -} -else -{ -lean_object* x_92; lean_object* x_93; -x_92 = lean_ctor_get(x_81, 0); -lean_inc(x_92); -lean_dec(x_81); -x_93 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_93, 0, x_92); -return x_93; -} -} -} -block_126: -{ -lean_object* x_95; -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -x_95 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13(x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_95) == 0) -{ -lean_object* x_96; lean_object* x_97; uint8_t x_98; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -lean_dec_ref(x_95); -x_97 = l_Lean_trace_profiler_useHeartbeats; -x_98 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_44, x_97); -if (x_98 == 0) -{ -lean_object* x_99; -lean_dec_ref(x_7); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -lean_inc_ref(x_8); -x_99 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_8, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_99) == 0) -{ -lean_object* x_100; lean_object* x_101; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -lean_dec_ref(x_99); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -x_101 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_50, x_46, x_48, x_5, x_3, x_47, x_6, x_49, x_35, x_25, x_38, x_17, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_101) == 0) -{ -uint8_t x_102; -x_102 = !lean_is_exclusive(x_101); -if (x_102 == 0) -{ -lean_ctor_set_tag(x_101, 1); -x_56 = x_96; -x_57 = x_100; -x_58 = x_101; -x_59 = lean_box(0); -goto block_76; -} -else -{ -lean_object* x_103; lean_object* x_104; -x_103 = lean_ctor_get(x_101, 0); -lean_inc(x_103); -lean_dec(x_101); -x_104 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_104, 0, x_103); -x_56 = x_96; -x_57 = x_100; -x_58 = x_104; -x_59 = lean_box(0); -goto block_76; -} -} -else -{ -uint8_t x_105; -x_105 = !lean_is_exclusive(x_101); -if (x_105 == 0) -{ -lean_ctor_set_tag(x_101, 0); -x_56 = x_96; -x_57 = x_100; -x_58 = x_101; -x_59 = lean_box(0); -goto block_76; -} -else -{ -lean_object* x_106; lean_object* x_107; -x_106 = lean_ctor_get(x_101, 0); -lean_inc(x_106); -lean_dec(x_101); -x_107 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_107, 0, x_106); -x_56 = x_96; -x_57 = x_100; -x_58 = x_107; -x_59 = lean_box(0); -goto block_76; -} -} -} -else -{ -uint8_t x_108; -lean_dec(x_96); -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_48); -lean_dec_ref(x_47); -lean_dec_ref(x_46); -lean_dec(x_44); -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -x_108 = !lean_is_exclusive(x_99); -if (x_108 == 0) -{ -return x_99; -} -else -{ -lean_object* x_109; lean_object* x_110; -x_109 = lean_ctor_get(x_99, 0); -lean_inc(x_109); -lean_dec(x_99); -x_110 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_110, 0, x_109); -return x_110; -} -} -} -else -{ -lean_object* x_111; -lean_dec_ref(x_8); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc_ref(x_9); -lean_inc_ref(x_7); -x_111 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_7, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; lean_object* x_113; -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -lean_dec_ref(x_111); -lean_inc(x_14); -lean_inc_ref(x_13); -lean_inc(x_12); -lean_inc_ref(x_11); -lean_inc(x_10); -lean_inc_ref(x_9); -x_113 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_50, x_46, x_48, x_5, x_3, x_47, x_6, x_49, x_35, x_25, x_38, x_17, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_113) == 0) -{ -uint8_t x_114; -x_114 = !lean_is_exclusive(x_113); -if (x_114 == 0) -{ -lean_ctor_set_tag(x_113, 1); -x_77 = x_96; -x_78 = x_112; -x_79 = x_113; -x_80 = lean_box(0); -goto block_94; -} -else -{ -lean_object* x_115; lean_object* x_116; -x_115 = lean_ctor_get(x_113, 0); -lean_inc(x_115); -lean_dec(x_113); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_115); -x_77 = x_96; -x_78 = x_112; -x_79 = x_116; -x_80 = lean_box(0); -goto block_94; -} -} -else -{ -uint8_t x_117; -x_117 = !lean_is_exclusive(x_113); -if (x_117 == 0) -{ -lean_ctor_set_tag(x_113, 0); -x_77 = x_96; -x_78 = x_112; -x_79 = x_113; -x_80 = lean_box(0); -goto block_94; -} -else -{ -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_113, 0); -lean_inc(x_118); -lean_dec(x_113); -x_119 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_119, 0, x_118); -x_77 = x_96; -x_78 = x_112; -x_79 = x_119; -x_80 = lean_box(0); -goto block_94; -} -} -} -else -{ -uint8_t x_120; -lean_dec(x_96); -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_48); -lean_dec_ref(x_47); -lean_dec_ref(x_46); -lean_dec(x_44); -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -x_120 = !lean_is_exclusive(x_111); -if (x_120 == 0) -{ -return x_111; -} -else -{ -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_111, 0); -lean_inc(x_121); -lean_dec(x_111); -x_122 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_122, 0, x_121); -return x_122; -} -} -} -} -else -{ -uint8_t x_123; -lean_dec_ref(x_54); -lean_dec(x_53); -lean_dec_ref(x_50); -lean_dec_ref(x_48); -lean_dec_ref(x_47); -lean_dec_ref(x_46); -lean_dec(x_44); -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -x_123 = !lean_is_exclusive(x_95); -if (x_123 == 0) -{ -return x_95; -} -else -{ -lean_object* x_124; lean_object* x_125; -x_124 = lean_ctor_get(x_95, 0); -lean_inc(x_124); -lean_dec(x_95); -x_125 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_125, 0, x_124); -return x_125; -} -} -} -} -else -{ -uint8_t x_131; -lean_dec_ref(x_50); -lean_dec_ref(x_48); -lean_dec_ref(x_47); -lean_dec_ref(x_46); -lean_dec(x_44); -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -x_131 = !lean_is_exclusive(x_52); -if (x_131 == 0) -{ -return x_52; -} -else -{ -lean_object* x_132; lean_object* x_133; -x_132 = lean_ctor_get(x_52, 0); -lean_inc(x_132); -lean_dec(x_52); -x_133 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_133, 0, x_132); -return x_133; -} -} -} -} -else -{ -uint8_t x_134; -lean_dec(x_42); -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec(x_3); -lean_dec_ref(x_2); -x_134 = !lean_is_exclusive(x_43); -if (x_134 == 0) -{ -return x_43; -} -else -{ -lean_object* x_135; lean_object* x_136; -x_135 = lean_ctor_get(x_43, 0); -lean_inc(x_135); -lean_dec(x_43); -x_136 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_136, 0, x_135); -return x_136; -} -} -} -else -{ -lean_dec_ref(x_35); -lean_dec_ref(x_25); -lean_dec(x_17); -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_41; -} -} -} -} -} -} -} -} -else -{ -lean_dec(x_14); -lean_dec_ref(x_13); -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec_ref(x_8); -lean_dec_ref(x_7); -lean_dec_ref(x_6); -lean_dec_ref(x_5); -lean_dec_ref(x_4); -lean_dec(x_3); -lean_dec_ref(x_2); -return x_16; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___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, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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, x_14); -return x_16; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; 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; lean_object* x_21; 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; -x_11 = lean_ctor_get(x_2, 3); -x_12 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__0)); -x_13 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__1)); -x_14 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__2)); -x_15 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__3)); -x_16 = l_Lean_instInhabitedExpr; -lean_inc(x_3); -lean_inc_ref(x_2); -x_17 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___boxed), 9, 2); -lean_closure_set(x_17, 0, x_2); -lean_closure_set(x_17, 1, x_3); -x_18 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; -x_19 = l_Lean_Expr_getAppNumArgs(x_11); -lean_inc(x_19); -x_20 = lean_mk_array(x_19, x_18); -x_21 = lean_unsigned_to_nat(1u); -x_22 = lean_nat_sub(x_19, x_21); -lean_dec(x_19); -lean_inc_ref(x_11); -x_23 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_11, x_20, x_22); -x_24 = lean_unsigned_to_nat(2u); -x_25 = lean_array_get(x_16, x_23, x_24); -lean_dec_ref(x_23); -x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed), 9, 1); -lean_closure_set(x_26, 0, x_25); -x_27 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___boxed), 15, 8); -lean_closure_set(x_27, 0, x_26); -lean_closure_set(x_27, 1, x_2); -lean_closure_set(x_27, 2, x_3); -lean_closure_set(x_27, 3, x_12); -lean_closure_set(x_27, 4, x_1); -lean_closure_set(x_27, 5, x_13); -lean_closure_set(x_27, 6, x_14); -lean_closure_set(x_27, 7, x_15); -x_28 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_17, x_27, x_4, x_5, x_6, x_7, x_8, x_9); -return x_28; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(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) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_2, 1); +lean_object* x_15; +lean_inc(x_13); lean_inc_ref(x_12); -x_13 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_13); -x_14 = lean_ctor_get(x_2, 3); -lean_inc_ref(x_14); -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - lean_ctor_release(x_2, 1); - lean_ctor_release(x_2, 2); - lean_ctor_release(x_2, 3); - x_15 = x_2; -} else { - lean_dec_ref(x_2); - x_15 = lean_box(0); -} -lean_inc_ref(x_14); -x_16 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___boxed), 9, 1); -lean_closure_set(x_16, 0, x_14); -lean_inc(x_9); +lean_inc(x_11); +lean_inc_ref(x_10); lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_17 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_16, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_17) == 0) +x_15 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_1, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_42; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +lean_inc(x_16); +x_17 = l_Lean_Expr_cleanupAnnotations(x_16); +x_18 = l_Lean_Expr_isApp(x_17); +if (x_18 == 0) +{ +lean_object* x_19; lean_dec_ref(x_17); -lean_inc(x_3); -lean_inc_ref(x_1); -x_19 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1___boxed), 10, 2); -lean_closure_set(x_19, 0, x_1); -lean_closure_set(x_19, 1, x_3); -if (lean_obj_tag(x_18) == 0) -{ -x_42 = x_14; -goto block_61; +lean_dec(x_16); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); +return x_19; } else { -lean_object* x_62; -lean_dec_ref(x_14); -x_62 = lean_ctor_get(x_18, 0); -lean_inc(x_62); -lean_dec_ref(x_18); -x_42 = x_62; -goto block_61; -} -block_41: -{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_20 = lean_ctor_get(x_17, 1); +lean_inc_ref(x_20); +x_21 = l_Lean_Expr_appFnCleanup___redArg(x_17); +x_22 = l_Lean_Expr_isApp(x_21); if (x_22 == 0) { -lean_object* x_23; uint8_t x_24; -lean_dec_ref(x_19); -x_23 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__4)); -x_24 = l_Lean_Expr_isConstOf(x_21, x_23); +lean_object* x_23; lean_dec_ref(x_21); -if (x_24 == 0) -{ -lean_object* x_25; -lean_dec_ref(x_1); -x_25 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_7); -lean_dec(x_5); -return x_25; +lean_dec_ref(x_20); +lean_dec(x_16); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_23 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); +return x_23; } else { -lean_object* x_26; -x_26 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_1, x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_26; -} -} -else +lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_24 = lean_ctor_get(x_21, 1); +lean_inc_ref(x_24); +x_25 = l_Lean_Expr_appFnCleanup___redArg(x_21); +x_26 = l_Lean_Expr_isApp(x_25); +if (x_26 == 0) { lean_object* x_27; -lean_dec_ref(x_21); -lean_dec(x_3); -lean_dec_ref(x_1); -x_27 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_5); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; uint8_t 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_dec_ref(x_27); -x_28 = lean_ctor_get(x_8, 5); -x_29 = 0; -x_30 = l_Lean_SourceInfo_fromRef(x_28, x_29); -x_31 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); -x_32 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__3)); -x_33 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__16___closed__0)); -lean_inc(x_30); -x_34 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_34, 0, x_30); -lean_ctor_set(x_34, 1, x_33); -lean_inc(x_30); -x_35 = l_Lean_Syntax_node1(x_30, x_32, x_34); -x_36 = l_Lean_Syntax_node1(x_30, x_31, x_35); -x_37 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3(x_20, x_36, x_19, x_4, x_5, x_6, x_7, x_8, x_9); -return x_37; -} -else -{ -uint8_t x_38; +lean_dec_ref(x_25); +lean_dec_ref(x_24); lean_dec_ref(x_20); -lean_dec_ref(x_19); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); +lean_dec(x_16); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); +lean_dec_ref(x_5); lean_dec_ref(x_4); -x_38 = !lean_is_exclusive(x_27); -if (x_38 == 0) -{ +x_27 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); return x_27; } else { +lean_object* x_28; uint8_t x_29; +x_28 = l_Lean_Expr_appFnCleanup___redArg(x_25); +x_29 = l_Lean_Expr_isApp(x_28); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec_ref(x_28); +lean_dec_ref(x_24); +lean_dec_ref(x_20); +lean_dec(x_16); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_30 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); +return x_30; +} +else +{ +lean_object* x_31; uint8_t x_32; +x_31 = l_Lean_Expr_appFnCleanup___redArg(x_28); +x_32 = l_Lean_Expr_isApp(x_31); +if (x_32 == 0) +{ +lean_object* x_33; +lean_dec_ref(x_31); +lean_dec_ref(x_24); +lean_dec_ref(x_20); +lean_dec(x_16); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_33 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_34 = lean_ctor_get(x_31, 1); +lean_inc_ref(x_34); +x_35 = l_Lean_Expr_appFnCleanup___redArg(x_31); +x_36 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__6)); +x_37 = l_Lean_Expr_isConstOf(x_35, x_36); +lean_dec_ref(x_35); +if (x_37 == 0) +{ +lean_object* x_38; +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec_ref(x_20); +lean_dec(x_16); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +x_38 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_2, x_3, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_9); +return x_38; +} +else +{ lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_27, 0); -lean_inc(x_39); -lean_dec(x_27); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); +x_39 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__5___boxed), 9, 1); +lean_closure_set(x_39, 0, x_20); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_40 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_39, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +lean_dec_ref(x_40); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_42 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_4, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +lean_dec_ref(x_42); +x_44 = lean_ctor_get_uint8(x_43, sizeof(void*)*1); +x_45 = l_Lean_Expr_headBeta(x_41); +lean_inc_ref(x_45); +x_46 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__6___boxed), 9, 1); +lean_closure_set(x_46, 0, x_45); +lean_inc_ref(x_45); +x_47 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg(x_2, x_45); +x_48 = ((lean_object*)(l___private_Init_Data_Array_Basic_0__Array_foldrMUnsafe_fold___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__10___closed__4)); +x_49 = l_Lean_Expr_getAppFn_x27(x_45); +if (x_44 == 0) +{ +lean_object* x_50; +lean_dec(x_43); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_50 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_49, x_45, x_47, x_3, x_46, x_5, x_48, x_34, x_24, x_37, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +return x_50; +} +else +{ +lean_object* x_51; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_51 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__3(x_48, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_51) == 0) +{ +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_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_126; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +lean_dec_ref(x_51); +lean_inc_ref(x_45); +x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___boxed), 9, 1); +lean_closure_set(x_53, 0, x_45); +x_54 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__1)); +x_126 = lean_unbox(x_52); +if (x_126 == 0) +{ +lean_object* x_127; uint8_t x_128; +x_127 = l_Lean_trace_profiler; +x_128 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_43, x_127); +if (x_128 == 0) +{ +lean_object* x_129; +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec(x_43); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +x_129 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_49, x_45, x_47, x_3, x_46, x_5, x_48, x_34, x_24, x_37, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +return x_129; +} +else +{ +goto block_125; +} +} +else +{ +goto block_125; +} +block_75: +{ +lean_object* x_59; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_59 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; double x_61; double x_62; double x_63; double x_64; double x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +lean_dec_ref(x_59); +x_61 = lean_float_of_nat(x_55); +x_62 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___closed__0; +x_63 = lean_float_div(x_61, x_62); +x_64 = lean_float_of_nat(x_60); +x_65 = lean_float_div(x_64, x_62); +x_66 = lean_box_float(x_63); +x_67 = lean_box_float(x_65); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_57); +lean_ctor_set(x_69, 1, x_68); +x_70 = lean_unbox(x_52); +lean_dec(x_52); +x_71 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(x_48, x_37, x_54, x_43, x_70, x_56, x_53, x_69, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_43); +return x_71; +} +else +{ +uint8_t x_72; +lean_dec_ref(x_57); +lean_dec_ref(x_56); +lean_dec(x_55); +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_72 = !lean_is_exclusive(x_59); +if (x_72 == 0) +{ +return x_59; +} +else +{ +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_59, 0); +lean_inc(x_73); +lean_dec(x_59); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_73); +return x_74; +} +} +} +block_93: +{ +lean_object* x_80; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_80 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_6, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_80) == 0) +{ +lean_object* x_81; double x_82; double x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; lean_object* x_89; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +lean_dec_ref(x_80); +x_82 = lean_float_of_nat(x_76); +x_83 = lean_float_of_nat(x_81); +x_84 = lean_box_float(x_82); +x_85 = lean_box_float(x_83); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_78); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_unbox(x_52); +lean_dec(x_52); +x_89 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(x_48, x_37, x_54, x_43, x_88, x_77, x_53, x_87, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_43); +return x_89; +} +else +{ +uint8_t x_90; +lean_dec_ref(x_78); +lean_dec_ref(x_77); +lean_dec(x_76); +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec(x_43); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +x_90 = !lean_is_exclusive(x_80); +if (x_90 == 0) +{ +return x_80; +} +else +{ +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_80, 0); +lean_inc(x_91); +lean_dec(x_80); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +return x_92; +} +} +} +block_125: +{ +lean_object* x_94; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +x_94 = l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_94) == 0) +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +lean_dec_ref(x_94); +x_96 = l_Lean_trace_profiler_useHeartbeats; +x_97 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_43, x_96); +if (x_97 == 0) +{ +lean_object* x_98; +lean_dec_ref(x_6); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +lean_inc_ref(x_7); +x_98 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +lean_dec_ref(x_98); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_100 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_49, x_45, x_47, x_3, x_46, x_5, x_48, x_34, x_24, x_37, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_100) == 0) +{ +uint8_t x_101; +x_101 = !lean_is_exclusive(x_100); +if (x_101 == 0) +{ +lean_ctor_set_tag(x_100, 1); +x_55 = x_99; +x_56 = x_95; +x_57 = x_100; +x_58 = lean_box(0); +goto block_75; +} +else +{ +lean_object* x_102; lean_object* x_103; +x_102 = lean_ctor_get(x_100, 0); +lean_inc(x_102); +lean_dec(x_100); +x_103 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_103, 0, x_102); +x_55 = x_99; +x_56 = x_95; +x_57 = x_103; +x_58 = lean_box(0); +goto block_75; +} +} +else +{ +uint8_t x_104; +x_104 = !lean_is_exclusive(x_100); +if (x_104 == 0) +{ +lean_ctor_set_tag(x_100, 0); +x_55 = x_99; +x_56 = x_95; +x_57 = x_100; +x_58 = lean_box(0); +goto block_75; +} +else +{ +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_100, 0); +lean_inc(x_105); +lean_dec(x_100); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_105); +x_55 = x_99; +x_56 = x_95; +x_57 = x_106; +x_58 = lean_box(0); +goto block_75; +} +} +} +else +{ +uint8_t x_107; +lean_dec(x_95); +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_43); +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_5); +lean_dec(x_3); +x_107 = !lean_is_exclusive(x_98); +if (x_107 == 0) +{ +return x_98; +} +else +{ +lean_object* x_108; lean_object* x_109; +x_108 = lean_ctor_get(x_98, 0); +lean_inc(x_108); +lean_dec(x_98); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +return x_109; +} +} +} +else +{ +lean_object* x_110; +lean_dec_ref(x_7); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc_ref(x_8); +lean_inc_ref(x_6); +x_110 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_6, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_110) == 0) +{ +lean_object* x_111; lean_object* x_112; +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +lean_dec_ref(x_110); +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_112 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_49, x_45, x_47, x_3, x_46, x_5, x_48, x_34, x_24, x_37, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_112) == 0) +{ +uint8_t x_113; +x_113 = !lean_is_exclusive(x_112); +if (x_113 == 0) +{ +lean_ctor_set_tag(x_112, 1); +x_76 = x_111; +x_77 = x_95; +x_78 = x_112; +x_79 = lean_box(0); +goto block_93; +} +else +{ +lean_object* x_114; lean_object* x_115; +x_114 = lean_ctor_get(x_112, 0); +lean_inc(x_114); +lean_dec(x_112); +x_115 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_115, 0, x_114); +x_76 = x_111; +x_77 = x_95; +x_78 = x_115; +x_79 = lean_box(0); +goto block_93; +} +} +else +{ +uint8_t x_116; +x_116 = !lean_is_exclusive(x_112); +if (x_116 == 0) +{ +lean_ctor_set_tag(x_112, 0); +x_76 = x_111; +x_77 = x_95; +x_78 = x_112; +x_79 = lean_box(0); +goto block_93; +} +else +{ +lean_object* x_117; lean_object* x_118; +x_117 = lean_ctor_get(x_112, 0); +lean_inc(x_117); +lean_dec(x_112); +x_118 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_118, 0, x_117); +x_76 = x_111; +x_77 = x_95; +x_78 = x_118; +x_79 = lean_box(0); +goto block_93; +} +} +} +else +{ +uint8_t x_119; +lean_dec(x_95); +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_43); +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +x_119 = !lean_is_exclusive(x_110); +if (x_119 == 0) +{ +return x_110; +} +else +{ +lean_object* x_120; lean_object* x_121; +x_120 = lean_ctor_get(x_110, 0); +lean_inc(x_120); +lean_dec(x_110); +x_121 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_121, 0, x_120); +return x_121; +} +} +} +} +else +{ +uint8_t x_122; +lean_dec_ref(x_53); +lean_dec(x_52); +lean_dec_ref(x_49); +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_43); +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +x_122 = !lean_is_exclusive(x_94); +if (x_122 == 0) +{ +return x_94; +} +else +{ +lean_object* x_123; lean_object* x_124; +x_123 = lean_ctor_get(x_94, 0); +lean_inc(x_123); +lean_dec(x_94); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_123); +return x_124; +} +} +} +} +else +{ +uint8_t x_130; +lean_dec_ref(x_49); +lean_dec_ref(x_47); +lean_dec_ref(x_46); +lean_dec_ref(x_45); +lean_dec(x_43); +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +x_130 = !lean_is_exclusive(x_51); +if (x_130 == 0) +{ +return x_51; +} +else +{ +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_51, 0); +lean_inc(x_131); +lean_dec(x_51); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_131); +return x_132; +} +} +} +} +else +{ +uint8_t x_133; +lean_dec(x_41); +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +x_133 = !lean_is_exclusive(x_42); +if (x_133 == 0) +{ +return x_42; +} +else +{ +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_42, 0); +lean_inc(x_134); +lean_dec(x_42); +x_135 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_135, 0, x_134); +return x_135; +} +} +} +else +{ +lean_dec_ref(x_34); +lean_dec_ref(x_24); +lean_dec(x_16); +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); return x_40; } } } } -block_61: -{ -lean_object* x_43; lean_object* x_44; -lean_inc_ref(x_42); -if (lean_is_scalar(x_15)) { - x_43 = lean_alloc_ctor(0, 4, 0); -} else { - x_43 = x_15; -} -lean_ctor_set(x_43, 0, x_11); -lean_ctor_set(x_43, 1, x_12); -lean_ctor_set(x_43, 2, x_13); -lean_ctor_set(x_43, 3, x_42); -x_44 = l_Lean_Expr_getAppFn(x_42); -lean_dec_ref(x_42); -if (lean_obj_tag(x_44) == 6) -{ -lean_object* x_45; lean_object* x_46; -lean_dec(x_3); -lean_dec_ref(x_1); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec_ref(x_44); -x_46 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_5); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; lean_object* x_48; -lean_dec_ref(x_46); -x_47 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed), 9, 1); -lean_closure_set(x_47, 0, x_45); -lean_inc(x_9); -lean_inc_ref(x_8); -lean_inc(x_7); -lean_inc_ref(x_6); -lean_inc_ref(x_4); -x_48 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_47, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_48) == 0) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -lean_dec_ref(x_48); -x_50 = lean_mk_syntax_ident(x_49); -x_51 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(x_43, x_50, x_19, x_4, x_5, x_6, x_7, x_8, x_9); -return x_51; -} -else -{ -uint8_t x_52; -lean_dec_ref(x_43); -lean_dec_ref(x_19); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_52 = !lean_is_exclusive(x_48); -if (x_52 == 0) -{ -return x_48; -} -else -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_48, 0); -lean_inc(x_53); -lean_dec(x_48); -x_54 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_54, 0, x_53); -return x_54; -} -} -} -else -{ -uint8_t x_55; -lean_dec(x_45); -lean_dec_ref(x_43); -lean_dec_ref(x_19); -lean_dec(x_9); -lean_dec_ref(x_8); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_55 = !lean_is_exclusive(x_46); -if (x_55 == 0) -{ -return x_46; -} -else -{ -lean_object* x_56; lean_object* x_57; -x_56 = lean_ctor_get(x_46, 0); -lean_inc(x_56); -lean_dec(x_46); -x_57 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_57, 0, x_56); -return x_57; -} -} -} -else -{ -uint8_t x_58; -x_58 = l_Lean_Expr_isLet(x_44); -if (x_58 == 0) -{ -lean_object* x_59; uint8_t x_60; -x_59 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__1)); -x_60 = l_Lean_Expr_isConstOf(x_44, x_59); -x_20 = x_43; -x_21 = x_44; -x_22 = x_60; -goto block_41; -} -else -{ -x_20 = x_43; -x_21 = x_44; -x_22 = x_58; -goto block_41; } } } } else { -uint8_t x_63; -lean_dec(x_15); -lean_dec_ref(x_14); -lean_dec_ref(x_13); +lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); +lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); -lean_dec(x_7); +lean_dec_ref(x_7); lean_dec_ref(x_6); -lean_dec(x_5); +lean_dec_ref(x_5); lean_dec_ref(x_4); lean_dec(x_3); -lean_dec_ref(x_1); -x_63 = !lean_is_exclusive(x_17); -if (x_63 == 0) +lean_dec_ref(x_2); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___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, lean_object* x_14) { +_start: { -return x_17; +lean_object* x_15; +x_15 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20(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); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_10 = lean_ctor_get(x_1, 3); +x_11 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__0)); +x_12 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__1)); +x_13 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__2)); +x_14 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___closed__3)); +x_15 = l_Lean_instInhabitedExpr; +lean_inc(x_2); +lean_inc_ref(x_1); +x_16 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail___boxed), 9, 2); +lean_closure_set(x_16, 0, x_1); +lean_closure_set(x_16, 1, x_2); +x_17 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_ProofMode_MGoal_withNewProg___closed__0; +x_18 = l_Lean_Expr_getAppNumArgs(x_10); +lean_inc(x_18); +x_19 = lean_mk_array(x_18, x_17); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_sub(x_18, x_20); +lean_dec(x_18); +lean_inc_ref(x_10); +x_22 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_10, x_19, x_21); +x_23 = lean_unsigned_to_nat(2u); +x_24 = lean_array_get(x_15, x_22, x_23); +lean_dec_ref(x_22); +x_25 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__4___boxed), 9, 1); +lean_closure_set(x_25, 0, x_24); +x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___boxed), 14, 7); +lean_closure_set(x_26, 0, x_25); +lean_closure_set(x_26, 1, x_1); +lean_closure_set(x_26, 2, x_2); +lean_closure_set(x_26, 3, x_11); +lean_closure_set(x_26, 4, x_12); +lean_closure_set(x_26, 5, x_13); +lean_closure_set(x_26, 6, x_14); +x_27 = l_Lean_Elab_Tactic_Do_ifOutOfFuel___redArg(x_16, x_26, x_3, x_4, x_5, x_6, x_7, x_8); +return x_27; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_11); +x_12 = lean_ctor_get(x_1, 2); +lean_inc_ref(x_12); +x_13 = lean_ctor_get(x_1, 3); +lean_inc_ref(x_13); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + lean_ctor_release(x_1, 2); + lean_ctor_release(x_1, 3); + x_14 = x_1; +} else { + lean_dec_ref(x_1); + x_14 = lean_box(0); +} +lean_inc_ref(x_13); +x_15 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__0___boxed), 9, 1); +lean_closure_set(x_15, 0, x_13); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_16 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_15, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_41; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +lean_inc(x_2); +x_18 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__1___boxed), 9, 1); +lean_closure_set(x_18, 0, x_2); +if (lean_obj_tag(x_17) == 0) +{ +x_41 = x_13; +goto block_60; } else { -lean_object* x_64; lean_object* x_65; -x_64 = lean_ctor_get(x_17, 0); -lean_inc(x_64); -lean_dec(x_17); -x_65 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_65, 0, x_64); -return x_65; +lean_object* x_61; +lean_dec_ref(x_13); +x_61 = lean_ctor_get(x_17, 0); +lean_inc(x_61); +lean_dec_ref(x_17); +x_41 = x_61; +goto block_60; } -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__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) { -_start: +block_40: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_1, x_3, x_2, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +lean_dec_ref(x_18); +x_22 = ((lean_object*)(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__4)); +x_23 = l_Lean_Expr_isConstOf(x_20, x_22); +lean_dec_ref(x_20); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onFail(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_6); +lean_dec(x_4); +return x_24; +} +else +{ +lean_object* x_25; +x_25 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_25; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___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) { +else +{ +lean_object* x_26; +lean_dec_ref(x_20); +lean_dec(x_2); +x_26 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_4); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; uint8_t x_28; 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_dec_ref(x_26); +x_27 = lean_ctor_get(x_7, 5); +x_28 = 0; +x_29 = l_Lean_SourceInfo_fromRef(x_27, x_28); +x_30 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); +x_31 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__6)); +x_32 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___lam__16___closed__0)); +lean_inc(x_29); +x_33 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_33, 0, x_29); +lean_ctor_set(x_33, 1, x_32); +lean_inc(x_29); +x_34 = l_Lean_Syntax_node1(x_29, x_31, x_33); +x_35 = l_Lean_Syntax_node1(x_29, x_30, x_34); +x_36 = l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4(x_19, x_35, x_18, x_3, x_4, x_5, x_6, x_7, x_8); +return x_36; +} +else +{ +uint8_t x_37; +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_37 = !lean_is_exclusive(x_26); +if (x_37 == 0) +{ +return x_26; +} +else +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_26, 0); +lean_inc(x_38); +lean_dec(x_26); +x_39 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_39, 0, x_38); +return x_39; +} +} +} +} +block_60: +{ +lean_object* x_42; lean_object* x_43; +lean_inc_ref(x_41); +if (lean_is_scalar(x_14)) { + x_42 = lean_alloc_ctor(0, 4, 0); +} else { + x_42 = x_14; +} +lean_ctor_set(x_42, 0, x_10); +lean_ctor_set(x_42, 1, x_11); +lean_ctor_set(x_42, 2, x_12); +lean_ctor_set(x_42, 3, x_41); +x_43 = l_Lean_Expr_getAppFn(x_41); +lean_dec_ref(x_41); +if (lean_obj_tag(x_43) == 6) +{ +lean_object* x_44; lean_object* x_45; +lean_dec(x_2); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +lean_dec_ref(x_43); +x_45 = l_Lean_Elab_Tactic_Do_burnOne___redArg(x_4); +if (lean_obj_tag(x_45) == 0) +{ +lean_object* x_46; lean_object* x_47; +lean_dec_ref(x_45); +x_46 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__3___boxed), 9, 1); +lean_closure_set(x_46, 0, x_44); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +x_47 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_46, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = lean_mk_syntax_ident(x_48); +x_50 = l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5(x_42, x_49, x_18, x_3, x_4, x_5, x_6, x_7, x_8); +return x_50; +} +else +{ +uint8_t x_51; +lean_dec_ref(x_42); +lean_dec_ref(x_18); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_51 = !lean_is_exclusive(x_47); +if (x_51 == 0) +{ +return x_47; +} +else +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_47, 0); +lean_inc(x_52); +lean_dec(x_47); +x_53 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_53, 0, x_52); +return x_53; +} +} +} +else +{ +uint8_t x_54; +lean_dec(x_44); +lean_dec_ref(x_42); +lean_dec_ref(x_18); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_54 = !lean_is_exclusive(x_45); +if (x_54 == 0) +{ +return x_45; +} +else +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_45, 0); +lean_inc(x_55); +lean_dec(x_45); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; +} +} +} +else +{ +uint8_t x_57; +x_57 = l_Lean_Expr_isLet(x_43); +if (x_57 == 0) +{ +lean_object* x_58; uint8_t x_59; +x_58 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__1)); +x_59 = l_Lean_Expr_isConstOf(x_43, x_58); +x_19 = x_42; +x_20 = x_43; +x_21 = x_59; +goto block_40; +} +else +{ +x_19 = x_42; +x_20 = x_43; +x_21 = x_57; +goto block_40; +} +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec_ref(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_62 = !lean_is_exclusive(x_16); +if (x_62 == 0) +{ +return x_16; +} +else +{ +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_16, 0); +lean_inc(x_63); +lean_dec(x_16); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +return x_64; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___lam__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) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_2, x_1, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal___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) { _start: { -lean_object* x_10; -x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_10; +lean_object* x_9; +x_9 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars___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) { +_start: +{ +lean_object* x_9; +x_9 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -49885,78 +50245,58 @@ lean_object* x_22 = _args[21]; lean_object* x_23 = _args[22]; lean_object* x_24 = _args[23]; lean_object* x_25 = _args[24]; -lean_object* x_26 = _args[25]; _start: { -uint8_t x_27; uint8_t x_28; uint8_t x_29; lean_object* x_30; -x_27 = lean_unbox(x_14); -x_28 = lean_unbox(x_17); -x_29 = lean_unbox(x_19); -x_30 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__40(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, x_27, x_15, x_16, x_28, x_18, x_29, x_20, x_21, x_22, x_23, x_24, x_25); -return x_30; +uint8_t x_26; uint8_t x_27; uint8_t x_28; lean_object* x_29; +x_26 = lean_unbox(x_13); +x_27 = lean_unbox(x_16); +x_28 = lean_unbox(x_18); +x_29 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mFrameCore___at___00Lean_Elab_Tactic_Do_ProofMode_mTryFrame___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__16_spec__28_spec__33_spec__38___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__42(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_26, x_14, x_15, x_27, x_17, x_28, x_19, x_20, x_21, x_22, x_23, x_24); +return x_29; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___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_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___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) { _start: { -lean_object* x_11; -x_11 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +lean_object* x_10; +x_10 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; +uint8_t x_17; uint8_t x_18; lean_object* x_19; +x_17 = lean_unbox(x_7); +x_18 = lean_unbox(x_8); +x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +return x_19; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal___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) { _start: { -uint8_t x_19; uint8_t x_20; uint8_t x_21; lean_object* x_22; -x_19 = lean_unbox(x_4); -x_20 = lean_unbox(x_9); -x_21 = lean_unbox(x_10); -x_22 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11(x_1, x_2, x_3, x_19, x_5, x_6, x_7, x_8, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -return x_22; +lean_object* x_10; +x_10 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___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_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___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) { _start: { lean_object* x_13; -x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___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___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_14; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; @@ -49976,63 +50316,79 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; lean_object* x_21; -x_20 = lean_unbox(x_11); -x_21 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_20, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_21; +uint8_t x_19; lean_object* x_20; +x_19 = lean_unbox(x_10); +x_20 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_13; -x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17___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_EXPORT lean_object* l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18___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) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_5); -x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__17(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_lambdaBoundedTelescope___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__18(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, uint8_t 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_15; -x_15 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22___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, lean_object* x_14) { _start: { uint8_t x_15; uint8_t x_16; lean_object* x_17; x_15 = lean_unbox(x_6); x_16 = lean_unbox(x_7); -x_17 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21(x_1, x_2, x_3, x_4, x_5, x_15, x_16, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Meta_withLetDecl___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__22(x_1, x_2, x_3, x_4, x_5, x_15, x_16, x_8, x_9, x_10, x_11, x_12, x_13); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0___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_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_6; -x_6 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___redArg(x_4); +x_6 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3_spec__3(x_1, x_2, x_3, x_4); +x_6 = l_Lean_mkFreshId___at___00Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(x_1, x_2, x_3, x_4); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); @@ -50040,19 +50396,19 @@ lean_dec_ref(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___redArg(x_1, x_4); +x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___redArg(x_1, x_4); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16___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_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18___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) { _start: { lean_object* x_7; -x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__16(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__18(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -50060,19 +50416,19 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28(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_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30(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) { _start: { lean_object* x_10; -x_10 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___redArg(x_2); +x_10 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___redArg(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28___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_EXPORT lean_object* l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30___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) { _start: { lean_object* x_10; -x_10 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15_spec__28(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_MonadExcept_ofExcept___at___00__private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16_spec__30(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -50082,125 +50438,142 @@ lean_dec_ref(x_3); return x_10; } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t 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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t 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, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_17; -x_17 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_17 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_17; } } -LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { uint8_t x_17; uint8_t x_18; lean_object* x_19; x_17 = lean_unbox(x_3); x_18 = lean_unbox(x_6); -x_19 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_19 = l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16(x_1, x_2, x_17, x_4, x_5, x_18, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec_ref(x_5); return x_19; } } -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(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_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(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) { _start: { lean_object* x_14; -x_14 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___redArg(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___redArg(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_14; } } -LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19___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) { +LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20___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_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__19(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_14 = l_Array_mapFinIdxM_map___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_8); lean_dec_ref(x_2); return x_14; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24(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_13; -x_13 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg(x_1, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11); -return x_13; -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___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) { -_start: -{ -lean_object* x_13; -x_13 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24(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_2); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25(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_12; -x_12 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg(x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11___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_EXPORT lean_object* l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___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_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0(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_13; +x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___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) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec_ref(x_2); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13___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: { uint8_t x_12; uint8_t x_13; lean_object* x_14; x_12 = lean_unbox(x_3); x_13 = lean_unbox(x_6); -x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5_spec__11(x_1, x_2, x_12, x_4, x_5, x_13, x_7, x_8, x_9, x_10); +x_14 = l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7_spec__13(x_1, x_2, x_12, x_4, x_5, x_13, x_7, x_8, x_9, x_10); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7(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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5___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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7___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) { _start: { lean_object* x_10; -x_10 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4_spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = l_Lean_Meta_withLocalDeclD___at___00Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5_spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; -x_4 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_2, x_3); +x_4 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; lean_object* x_5; -x_4 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8(x_1, x_2, x_3); +x_4 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10(x_1, x_2, x_3); lean_dec(x_3); x_5 = lean_box(x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___redArg(x_1, x_3); +x_7 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___redArg(x_1, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14___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_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16___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) { _start: { lean_object* x_7; -x_7 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__14(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_MVarId_isAssigned___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__16(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -50209,19 +50582,19 @@ lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15(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_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_8; -x_8 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_1, x_2, x_4); +x_8 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_1, x_2, x_4); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___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_EXPORT lean_object* l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___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) { _start: { lean_object* x_8; -x_8 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); @@ -50229,19 +50602,19 @@ lean_dec_ref(x_3); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(x_1, x_3); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(x_1, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23___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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -50249,90 +50622,90 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_12; -x_12 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47___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_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__47(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_Meta_lambdaTelescope___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__49(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49(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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51(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_12; -x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49___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_EXPORT lean_object* l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51___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_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__49(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_MatcherApp_withUserNames___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__51(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_3); lean_dec_ref(x_2); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53(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_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55(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_12; -x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53___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_EXPORT lean_object* l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55___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_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__53(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l___private_Lean_Meta_Match_MatcherApp_Transform_0__Lean_Meta_MatcherApp_forallAltTelescope_x27___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__55(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { _start: { uint8_t x_5; -x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___redArg(x_2, x_3, x_4); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___redArg(x_2, x_3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; uint8_t x_6; lean_object* x_7; x_5 = lean_unbox_usize(x_3); lean_dec(x_3); -x_6 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14(x_1, x_2, x_5, x_4); +x_6 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16(x_1, x_2, x_5, x_4); lean_dec(x_4); x_7 = lean_box(x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___redArg(x_1, x_3); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___redArg(x_1, x_3); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31___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_EXPORT lean_object* l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33___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) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31(x_1, x_2, x_3, x_4, x_5); +x_7 = l_Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); @@ -50340,32 +50713,32 @@ lean_dec_ref(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50(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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52(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, lean_object* x_14) { _start: { lean_object* x_16; -x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___redArg(x_1, x_2, x_3, x_6, x_7, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___redArg(x_1, x_2, x_3, x_6, x_7, x_9, x_10, x_11, x_12, x_13, x_14); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50___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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52___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, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__50(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, x_14); +x_16 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__52(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, x_14); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56(lean_object* x_1, lean_object* x_2, uint8_t 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, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { lean_object* x_18; -x_18 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14, x_15, x_16); +x_18 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14, x_15, x_16); return x_18; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -50387,24 +50760,24 @@ _start: { uint8_t x_18; lean_object* x_19; x_18 = lean_unbox(x_3); -x_19 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_1); return x_19; } } -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34(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_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; -x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___redArg(x_2, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___redArg(x_2, x_5, x_6); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34___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_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36___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) { _start: { uint8_t x_7; lean_object* x_8; -x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8_spec__14_spec__34(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10_spec__16_spec__36(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec_ref(x_3); lean_dec_ref(x_2); @@ -50412,19 +50785,19 @@ x_8 = lean_box(x_7); return x_8; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45(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_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47(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) { _start: { lean_object* x_9; -x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___redArg(x_1, x_3, x_4, x_5); +x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___redArg(x_1, x_3, x_4, x_5); return x_9; } } -LEAN_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45___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_EXPORT lean_object* l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47___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) { _start: { lean_object* x_9; -x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12_spec__23_spec__31_spec__45(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00Lean_Elab_Tactic_sortMVarIdArrayByIndex___at___00Lean_Elab_Tactic_sortMVarIdsByIndex___at___00Lean_Elab_Tactic_collectFreshMVars___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13_spec__25_spec__33_spec__47(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_5); lean_dec(x_2); return x_9; @@ -50858,8 +51231,7 @@ lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); lean_inc(x_44); -lean_inc_ref(x_4); -x_45 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_39, x_4, x_44, x_6, x_7, x_8, x_9); +x_45 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_39, x_5, x_44, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_45) == 0) { lean_object* x_46; 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; @@ -50868,7 +51240,7 @@ lean_inc(x_46); lean_dec_ref(x_45); x_47 = lean_st_ref_get(x_44); lean_dec(x_44); -x_48 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_2, x_46, x_7); +x_48 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_2, x_46, x_7); lean_dec_ref(x_48); x_49 = lean_ctor_get(x_47, 2); lean_inc_ref(x_49); @@ -51063,8 +51435,7 @@ lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_79); lean_inc(x_86); -lean_inc_ref(x_4); -x_87 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_81, x_4, x_86, x_79, x_7, x_8, x_9); +x_87 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_81, x_5, x_86, x_79, x_7, x_8, x_9); if (lean_obj_tag(x_87) == 0) { 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; @@ -51073,7 +51444,7 @@ lean_inc(x_88); lean_dec_ref(x_87); x_89 = lean_st_ref_get(x_86); lean_dec(x_86); -x_90 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_2, x_88, x_7); +x_90 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_2, x_88, x_7); lean_dec_ref(x_90); x_91 = lean_ctor_get(x_89, 2); lean_inc_ref(x_91); @@ -51339,8 +51710,7 @@ lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_150); lean_inc(x_157); -lean_inc_ref(x_4); -x_158 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_5, x_152, x_4, x_157, x_150, x_7, x_8, x_9); +x_158 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal(x_4, x_152, x_5, x_157, x_150, x_7, x_8, x_9); if (lean_obj_tag(x_158) == 0) { lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; @@ -51349,7 +51719,7 @@ lean_inc(x_159); lean_dec_ref(x_158); x_160 = lean_st_ref_get(x_157); lean_dec(x_157); -x_161 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__15___redArg(x_2, x_159, x_7); +x_161 = l_Lean_MVarId_assign___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__17___redArg(x_2, x_159, x_7); lean_dec_ref(x_161); x_162 = lean_ctor_get(x_160, 2); lean_inc_ref(x_162); @@ -51534,8 +51904,8 @@ x_15 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___ lean_closure_set(x_15, 0, x_14); lean_closure_set(x_15, 1, x_11); lean_closure_set(x_15, 2, x_3); -lean_closure_set(x_15, 3, x_2); -lean_closure_set(x_15, 4, x_12); +lean_closure_set(x_15, 3, x_12); +lean_closure_set(x_15, 4, x_2); x_16 = l_Lean_MVarId_withContext___at___00Lean_Elab_Tactic_Do_VCGen_genVCs_spec__2___redArg(x_11, x_15, x_4, x_5, x_6, x_7); return x_16; } @@ -51841,7 +52211,7 @@ lean_dec(x_4); x_6 = lean_ctor_get(x_5, 7); lean_inc_ref(x_6); lean_dec_ref(x_5); -x_7 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__6_spec__8___redArg(x_6, x_1); +x_7 = l_Lean_PersistentHashMap_contains___at___00Lean_MVarId_isAssigned___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__7_spec__10___redArg(x_6, x_1); x_8 = lean_box(x_7); x_9 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_9, 0, x_8); @@ -52416,7 +52786,7 @@ return x_7; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_logErrorAt___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__1_spec__1___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; 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_50; uint8_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -52453,13 +52823,13 @@ x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_14); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_15); -lean_ctor_set(x_27, 1, x_16); -lean_ctor_set(x_27, 2, x_12); -lean_ctor_set(x_27, 3, x_11); +lean_ctor_set(x_27, 0, x_16); +lean_ctor_set(x_27, 1, x_10); +lean_ctor_set(x_27, 2, x_13); +lean_ctor_set(x_27, 3, x_12); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_13); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_11); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -52498,13 +52868,13 @@ x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_14); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_15); -lean_ctor_set(x_43, 1, x_16); -lean_ctor_set(x_43, 2, x_12); -lean_ctor_set(x_43, 3, x_11); +lean_ctor_set(x_43, 0, x_16); +lean_ctor_set(x_43, 1, x_10); +lean_ctor_set(x_43, 2, x_13); +lean_ctor_set(x_43, 3, x_12); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_13); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_11); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -52535,24 +52905,24 @@ if (x_60 == 0) lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); lean_inc_ref(x_54); -x_62 = l_Lean_FileMap_toPosition(x_54, x_56); -lean_dec(x_56); +x_62 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); x_63 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__1)); -if (x_55 == 0) +if (x_52 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_51; -x_11 = x_65; -x_12 = x_64; -x_13 = x_52; +x_10 = x_62; +x_11 = x_51; +x_12 = x_65; +x_13 = x_64; x_14 = x_61; -x_15 = x_53; -x_16 = x_62; +x_15 = x_56; +x_16 = x_55; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -52569,7 +52939,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_53); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -52578,13 +52948,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_51; -x_11 = x_65; -x_12 = x_64; -x_13 = x_52; +x_10 = x_62; +x_11 = x_51; +x_12 = x_65; +x_13 = x_64; x_14 = x_61; -x_15 = x_53; -x_16 = x_62; +x_15 = x_56; +x_16 = x_55; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -52599,23 +52969,23 @@ x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); lean_inc_ref(x_54); -x_69 = l_Lean_FileMap_toPosition(x_54, x_56); -lean_dec(x_56); +x_69 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); x_70 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite_spec__5___lam__1___closed__1)); -if (x_55 == 0) +if (x_52 == 0) { lean_dec_ref(x_50); -x_10 = x_51; -x_11 = x_72; -x_12 = x_71; -x_13 = x_52; +x_10 = x_69; +x_11 = x_51; +x_12 = x_72; +x_13 = x_71; x_14 = x_68; -x_15 = x_53; -x_16 = x_69; +x_15 = x_56; +x_16 = x_55; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -52632,7 +53002,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_53); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -52641,13 +53011,13 @@ return x_75; } else { -x_10 = x_51; -x_11 = x_72; -x_12 = x_71; -x_13 = x_52; +x_10 = x_69; +x_11 = x_51; +x_12 = x_72; +x_13 = x_71; x_14 = x_68; -x_15 = x_53; -x_16 = x_69; +x_15 = x_56; +x_16 = x_55; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -52659,18 +53029,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_79, x_80); -lean_dec(x_79); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_80, x_78); +lean_dec(x_80); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; x_51 = x_78; -x_52 = x_80; -x_53 = x_82; +x_52 = x_79; +x_53 = x_84; x_54 = x_81; x_55 = x_83; -x_56 = x_84; +x_56 = x_82; x_57 = x_84; goto block_76; } @@ -52682,11 +53052,11 @@ lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; x_51 = x_78; -x_52 = x_80; -x_53 = x_82; +x_52 = x_79; +x_53 = x_84; x_54 = x_81; x_55 = x_83; -x_56 = x_84; +x_56 = x_82; x_57 = x_86; goto block_76; } @@ -52694,19 +53064,19 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_89); -lean_dec(x_89); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_90); +x_95 = l_Lean_replaceRef(x_1, x_91); +lean_dec(x_91); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_89); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; -x_78 = x_94; -x_79 = x_95; -x_80 = x_90; +x_78 = x_89; +x_79 = x_90; +x_80 = x_95; x_81 = x_92; -x_82 = x_91; +x_82 = x_94; x_83 = x_93; x_84 = x_97; goto block_87; @@ -52718,11 +53088,11 @@ x_98 = lean_ctor_get(x_96, 0); lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; -x_78 = x_94; -x_79 = x_95; -x_80 = x_90; +x_78 = x_89; +x_79 = x_90; +x_80 = x_95; x_81 = x_92; -x_82 = x_91; +x_82 = x_94; x_83 = x_93; x_84 = x_98; goto block_87; @@ -52732,22 +53102,22 @@ block_108: { if (x_107 == 0) { -x_88 = x_102; -x_89 = x_101; -x_90 = x_106; -x_91 = x_104; -x_92 = x_103; +x_88 = x_103; +x_89 = x_106; +x_90 = x_101; +x_91 = x_102; +x_92 = x_104; x_93 = x_105; x_94 = x_3; goto block_99; } else { -x_88 = x_102; -x_89 = x_101; -x_90 = x_106; -x_91 = x_104; -x_92 = x_103; +x_88 = x_103; +x_89 = x_106; +x_90 = x_101; +x_91 = x_102; +x_92 = x_104; x_93 = x_105; x_94 = x_100; goto block_99; @@ -52775,11 +53145,11 @@ if (x_119 == 0) lean_inc_ref(x_110); lean_inc_ref(x_111); lean_inc(x_113); -x_101 = x_113; -x_102 = x_117; -x_103 = x_111; -x_104 = x_110; -x_105 = x_114; +x_101 = x_114; +x_102 = x_113; +x_103 = x_117; +x_104 = x_111; +x_105 = x_110; x_106 = x_109; x_107 = x_119; goto block_108; @@ -52788,15 +53158,15 @@ else { lean_object* x_120; uint8_t x_121; x_120 = l_Lean_warningAsError; -x_121 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_112, x_120); +x_121 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_112, x_120); lean_inc_ref(x_110); lean_inc_ref(x_111); lean_inc(x_113); -x_101 = x_113; -x_102 = x_117; -x_103 = x_111; -x_104 = x_110; -x_105 = x_114; +x_101 = x_114; +x_102 = x_113; +x_103 = x_117; +x_104 = x_111; +x_105 = x_110; x_106 = x_109; x_107 = x_121; goto block_108; @@ -53127,7 +53497,7 @@ if (x_39 == 0) { lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; lean_object* x_81; uint8_t x_145; x_59 = l_Lean_Syntax_getArg(x_49, x_20); -x_60 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__4)); +x_60 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__2)); x_61 = l_Lean_Syntax_getArgs(x_59); lean_dec(x_59); x_62 = l_Lean_Syntax_getArg(x_49, x_26); @@ -53147,7 +53517,7 @@ else { lean_object* x_146; lean_object* x_147; uint8_t x_148; x_146 = l_Lean_Syntax_getArg(x_62, x_26); -x_147 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__6)); +x_147 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__6)); lean_inc(x_146); x_148 = l_Lean_Syntax_isOfKind(x_146, x_147); if (x_148 == 0) @@ -53232,7 +53602,7 @@ x_67 = l_Lean_MessageData_ofSyntax(x_62); x_68 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); -x_69 = l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16; +x_69 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9; x_70 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_70, 0, x_68); lean_ctor_set(x_70, 1, x_69); @@ -56885,8 +57255,8 @@ else 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; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; x_14 = lean_ctor_get(x_10, 5); x_15 = l_Lean_SourceInfo_fromRef(x_14, x_3); -x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2)); -x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0)); +x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0)); +x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3)); x_18 = ((lean_object*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___closed__0)); lean_inc_ref(x_4); x_19 = l_Lean_Name_mkStr4(x_16, x_17, x_4, x_18); @@ -56955,8 +57325,8 @@ else 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; lean_object* x_21; 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; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; x_14 = lean_ctor_get(x_10, 5); x_15 = l_Lean_SourceInfo_fromRef(x_14, x_2); -x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2)); -x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0)); +x_16 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0)); +x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3)); x_18 = ((lean_object*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___closed__0)); lean_inc_ref(x_3); x_19 = l_Lean_Name_mkStr4(x_16, x_17, x_3, x_18); @@ -57018,8 +57388,8 @@ else lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; 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; x_15 = lean_ctor_get(x_11, 5); x_16 = l_Lean_SourceInfo_fromRef(x_15, x_4); -x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__2)); -x_18 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__0___closed__0)); +x_17 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__0)); +x_18 = ((lean_object*)(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForallN___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__12___lam__0___closed__3)); x_19 = ((lean_object*)(l_Lean_Elab_Tactic_Do_elabMVCGen___lam__1___closed__0)); lean_inc_ref(x_5); x_20 = l_Lean_Name_mkStr4(x_17, x_18, x_5, x_19); @@ -57593,10 +57963,10 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_elabMVCGen___lam__5(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_12; lean_object* x_13; 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_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; lean_object* x_34; lean_object* x_35; 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; 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_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; uint8_t x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; lean_object* x_367; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_408; lean_object* x_409; uint8_t x_410; +lean_object* x_12; lean_object* x_13; 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_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; lean_object* x_34; lean_object* x_35; 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; 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_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_203; uint8_t x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; uint8_t x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; uint8_t x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; uint8_t x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_408; lean_object* x_409; uint8_t x_410; x_408 = lean_ctor_get(x_9, 2); x_409 = l_Lean_Elab_Tactic_Do_mvcgen_warning; -x_410 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14(x_408, x_409); +x_410 = l_Lean_Option_get___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15(x_408, x_409); if (x_410 == 0) { x_381 = x_3; @@ -57667,7 +58037,7 @@ lean_inc_ref(x_33); lean_inc(x_32); lean_inc_ref(x_31); lean_inc(x_28); -x_38 = l_Lean_Elab_Tactic_Do_elabVCs(x_37, x_24, x_27, x_28, x_29, x_30, x_31, x_32, x_33, x_34); +x_38 = l_Lean_Elab_Tactic_Do_elabVCs(x_37, x_25, x_27, x_28, x_29, x_30, x_31, x_32, x_33, x_34); lean_dec(x_37); if (lean_obj_tag(x_38) == 0) { @@ -57675,8 +58045,8 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; x_39 = lean_ctor_get(x_38, 0); lean_inc(x_39); lean_dec_ref(x_38); -lean_inc(x_26); -x_40 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_26, x_33); +lean_inc(x_24); +x_40 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_24, x_33); x_41 = lean_ctor_get(x_40, 0); lean_inc(x_41); lean_dec_ref(x_40); @@ -57684,9 +58054,9 @@ x_42 = lean_unbox(x_41); lean_dec(x_41); if (x_42 == 0) { -lean_dec(x_26); +lean_dec(x_24); x_12 = x_39; -x_13 = x_25; +x_13 = x_26; x_14 = x_28; x_15 = x_31; x_16 = x_32; @@ -57699,8 +58069,8 @@ else { lean_object* x_43; size_t x_44; size_t x_45; lean_object* x_46; lean_inc(x_39); -lean_inc_ref(x_25); -x_43 = l_List_foldl___at___00Array_appendList_spec__0___redArg(x_25, x_39); +lean_inc_ref(x_26); +x_43 = l_List_foldl___at___00Array_appendList_spec__0___redArg(x_26, x_39); x_44 = lean_array_size(x_43); x_45 = 0; x_46 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__2___redArg(x_44, x_45, x_43, x_31, x_32, x_33, x_34); @@ -57718,12 +58088,12 @@ x_52 = l_Lean_MessageData_ofList(x_51); x_53 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_53, 0, x_48); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_26, x_53, x_31, x_32, x_33, x_34); +x_54 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_24, x_53, x_31, x_32, x_33, x_34); if (lean_obj_tag(x_54) == 0) { lean_dec_ref(x_54); x_12 = x_39; -x_13 = x_25; +x_13 = x_26; x_14 = x_28; x_15 = x_31; x_16 = x_32; @@ -57740,7 +58110,7 @@ lean_dec_ref(x_33); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_28); -lean_dec_ref(x_25); +lean_dec_ref(x_26); return x_54; } } @@ -57753,8 +58123,8 @@ lean_dec_ref(x_33); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_28); -lean_dec(x_26); -lean_dec_ref(x_25); +lean_dec_ref(x_26); +lean_dec(x_24); x_55 = !lean_is_exclusive(x_46); if (x_55 == 0) { @@ -57781,8 +58151,8 @@ lean_dec_ref(x_33); lean_dec(x_32); lean_dec_ref(x_31); lean_dec(x_28); -lean_dec(x_26); -lean_dec_ref(x_25); +lean_dec_ref(x_26); +lean_dec(x_24); x_58 = !lean_is_exclusive(x_38); if (x_58 == 0) { @@ -57807,15 +58177,15 @@ lean_inc(x_74); lean_inc_ref(x_73); lean_inc(x_72); lean_inc_ref(x_71); -x_76 = l_Lean_Elab_Term_TermElabM_run___redArg(x_62, x_63, x_64, x_71, x_72, x_73, x_74); +x_76 = l_Lean_Elab_Term_TermElabM_run___redArg(x_62, x_66, x_63, x_71, x_72, x_73, x_74); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; x_77 = lean_ctor_get(x_76, 0); lean_inc(x_77); lean_dec_ref(x_76); -lean_inc(x_66); -x_78 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_66, x_73); +lean_inc(x_64); +x_78 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_64, x_73); x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); lean_dec_ref(x_78); @@ -57827,9 +58197,9 @@ lean_object* x_81; x_81 = lean_ctor_get(x_77, 0); lean_inc(x_81); lean_dec(x_77); -x_24 = x_81; -x_25 = x_65; -x_26 = x_66; +x_24 = x_64; +x_25 = x_81; +x_26 = x_65; x_27 = x_67; x_28 = x_68; x_29 = x_69; @@ -57870,14 +58240,14 @@ x_94 = l_Lean_MessageData_ofList(x_93); lean_ctor_set_tag(x_77, 7); lean_ctor_set(x_77, 1, x_94); lean_ctor_set(x_77, 0, x_90); -lean_inc(x_66); -x_95 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_66, x_77, x_71, x_72, x_73, x_74); +lean_inc(x_64); +x_95 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_64, x_77, x_71, x_72, x_73, x_74); if (lean_obj_tag(x_95) == 0) { lean_dec_ref(x_95); -x_24 = x_83; -x_25 = x_65; -x_26 = x_66; +x_24 = x_64; +x_25 = x_83; +x_26 = x_65; x_27 = x_67; x_28 = x_68; x_29 = x_69; @@ -57900,8 +58270,8 @@ lean_dec(x_70); lean_dec_ref(x_69); lean_dec(x_68); lean_dec_ref(x_67); -lean_dec(x_66); lean_dec_ref(x_65); +lean_dec(x_64); return x_95; } } @@ -57918,8 +58288,8 @@ lean_dec(x_70); lean_dec_ref(x_69); lean_dec(x_68); lean_dec_ref(x_67); -lean_dec(x_66); lean_dec_ref(x_65); +lean_dec(x_64); x_96 = !lean_is_exclusive(x_88); if (x_96 == 0) { @@ -57962,14 +58332,14 @@ x_109 = l_Lean_MessageData_ofList(x_108); x_110 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_110, 0, x_105); lean_ctor_set(x_110, 1, x_109); -lean_inc(x_66); -x_111 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_66, x_110, x_71, x_72, x_73, x_74); +lean_inc(x_64); +x_111 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_64, x_110, x_71, x_72, x_73, x_74); if (lean_obj_tag(x_111) == 0) { lean_dec_ref(x_111); -x_24 = x_99; -x_25 = x_65; -x_26 = x_66; +x_24 = x_64; +x_25 = x_99; +x_26 = x_65; x_27 = x_67; x_28 = x_68; x_29 = x_69; @@ -57992,8 +58362,8 @@ lean_dec(x_70); lean_dec_ref(x_69); lean_dec(x_68); lean_dec_ref(x_67); -lean_dec(x_66); lean_dec_ref(x_65); +lean_dec(x_64); return x_111; } } @@ -58009,8 +58379,8 @@ lean_dec(x_70); lean_dec_ref(x_69); lean_dec(x_68); lean_dec_ref(x_67); -lean_dec(x_66); lean_dec_ref(x_65); +lean_dec(x_64); x_112 = lean_ctor_get(x_103, 0); lean_inc(x_112); if (lean_is_exclusive(x_103)) { @@ -58042,8 +58412,8 @@ lean_dec(x_70); lean_dec_ref(x_69); lean_dec(x_68); lean_dec_ref(x_67); -lean_dec(x_66); lean_dec_ref(x_65); +lean_dec(x_64); x_115 = !lean_is_exclusive(x_76); if (x_115 == 0) { @@ -58064,8 +58434,8 @@ return x_117; block_152: { lean_object* x_134; lean_object* x_135; uint8_t x_136; -lean_inc(x_131); -x_134 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_131, x_129); +lean_inc(x_122); +x_134 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_122, x_125); x_135 = lean_ctor_get(x_134, 0); lean_inc(x_135); lean_dec_ref(x_134); @@ -58073,20 +58443,20 @@ x_136 = lean_unbox(x_135); lean_dec(x_135); if (x_136 == 0) { -lean_dec_ref(x_121); +lean_dec_ref(x_126); x_62 = x_119; x_63 = x_120; -x_64 = x_124; +x_64 = x_122; x_65 = x_132; -x_66 = x_131; -x_67 = x_123; -x_68 = x_128; -x_69 = x_130; -x_70 = x_127; -x_71 = x_126; -x_72 = x_125; -x_73 = x_129; -x_74 = x_122; +x_66 = x_124; +x_67 = x_131; +x_68 = x_123; +x_69 = x_121; +x_70 = x_128; +x_71 = x_130; +x_72 = x_129; +x_73 = x_125; +x_74 = x_127; x_75 = lean_box(0); goto block_118; } @@ -58094,11 +58464,11 @@ else { lean_object* x_137; size_t x_138; size_t x_139; lean_object* x_140; lean_inc_ref(x_132); -x_137 = l_Array_append___redArg(x_132, x_121); -lean_dec_ref(x_121); +x_137 = l_Array_append___redArg(x_132, x_126); +lean_dec_ref(x_126); x_138 = lean_array_size(x_137); x_139 = 0; -x_140 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__2___redArg(x_138, x_139, x_137, x_126, x_125, x_129, x_122); +x_140 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__2___redArg(x_138, x_139, x_137, x_130, x_129, x_125, x_127); if (lean_obj_tag(x_140) == 0) { lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; @@ -58113,40 +58483,40 @@ x_146 = l_Lean_MessageData_ofList(x_145); x_147 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_147, 0, x_142); lean_ctor_set(x_147, 1, x_146); -lean_inc(x_131); -x_148 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_131, x_147, x_126, x_125, x_129, x_122); +lean_inc(x_122); +x_148 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_122, x_147, x_130, x_129, x_125, x_127); if (lean_obj_tag(x_148) == 0) { lean_dec_ref(x_148); x_62 = x_119; x_63 = x_120; -x_64 = x_124; +x_64 = x_122; x_65 = x_132; -x_66 = x_131; -x_67 = x_123; -x_68 = x_128; -x_69 = x_130; -x_70 = x_127; -x_71 = x_126; -x_72 = x_125; -x_73 = x_129; -x_74 = x_122; +x_66 = x_124; +x_67 = x_131; +x_68 = x_123; +x_69 = x_121; +x_70 = x_128; +x_71 = x_130; +x_72 = x_129; +x_73 = x_125; +x_74 = x_127; x_75 = lean_box(0); goto block_118; } else { lean_dec_ref(x_132); -lean_dec(x_131); +lean_dec_ref(x_131); lean_dec_ref(x_130); -lean_dec_ref(x_129); +lean_dec(x_129); lean_dec(x_128); lean_dec(x_127); -lean_dec_ref(x_126); -lean_dec(x_125); +lean_dec_ref(x_125); lean_dec_ref(x_124); -lean_dec_ref(x_123); +lean_dec(x_123); lean_dec(x_122); +lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); return x_148; @@ -58156,16 +58526,16 @@ else { uint8_t x_149; lean_dec_ref(x_132); -lean_dec(x_131); +lean_dec_ref(x_131); lean_dec_ref(x_130); -lean_dec_ref(x_129); +lean_dec(x_129); lean_dec(x_128); lean_dec(x_127); -lean_dec_ref(x_126); -lean_dec(x_125); +lean_dec_ref(x_125); lean_dec_ref(x_124); -lean_dec_ref(x_123); +lean_dec(x_123); lean_dec(x_122); +lean_dec_ref(x_121); lean_dec_ref(x_120); lean_dec_ref(x_119); x_149 = !lean_is_exclusive(x_140); @@ -58196,17 +58566,17 @@ lean_inc(x_167); lean_dec_ref(x_166); x_119 = x_153; x_120 = x_154; -x_121 = x_157; -x_122 = x_156; -x_123 = x_155; +x_121 = x_156; +x_122 = x_155; +x_123 = x_157; x_124 = x_158; -x_125 = x_160; -x_126 = x_159; +x_125 = x_159; +x_126 = x_160; x_127 = x_162; x_128 = x_161; -x_129 = x_163; +x_129 = x_165; x_130 = x_164; -x_131 = x_165; +x_131 = x_163; x_132 = x_167; x_133 = lean_box(0); goto block_152; @@ -58219,12 +58589,12 @@ lean_dec_ref(x_164); lean_dec_ref(x_163); lean_dec(x_162); lean_dec(x_161); -lean_dec(x_160); +lean_dec_ref(x_160); lean_dec_ref(x_159); lean_dec_ref(x_158); -lean_dec_ref(x_157); -lean_dec(x_156); -lean_dec_ref(x_155); +lean_dec(x_157); +lean_dec_ref(x_156); +lean_dec(x_155); lean_dec_ref(x_154); lean_dec_ref(x_153); x_168 = !lean_is_exclusive(x_166); @@ -58249,9 +58619,9 @@ block_202: lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; x_188 = lean_unsigned_to_nat(3u); x_189 = l_Lean_Syntax_getArg(x_1, x_188); -lean_inc_ref(x_175); +lean_inc_ref(x_178); x_190 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_suggestInvariant___boxed), 11, 1); -lean_closure_set(x_190, 0, x_175); +lean_closure_set(x_190, 0, x_178); lean_inc(x_186); lean_inc_ref(x_185); lean_inc(x_184); @@ -58260,31 +58630,31 @@ lean_inc(x_182); lean_inc_ref(x_181); lean_inc(x_180); lean_inc_ref(x_179); -x_191 = l_Lean_Elab_Tactic_Do_elabInvariants(x_189, x_173, x_190, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); +x_191 = l_Lean_Elab_Tactic_Do_elabInvariants(x_189, x_172, x_190, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); lean_dec(x_189); if (lean_obj_tag(x_191) == 0) { lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_dec_ref(x_191); -x_192 = lean_array_get_size(x_173); -x_193 = lean_mk_empty_array_with_capacity(x_177); -x_194 = lean_nat_dec_lt(x_177, x_192); +x_192 = lean_array_get_size(x_172); +x_193 = lean_mk_empty_array_with_capacity(x_174); +x_194 = lean_nat_dec_lt(x_174, x_192); if (x_194 == 0) { -lean_dec(x_173); -x_119 = x_172; -x_120 = x_174; -x_121 = x_175; -x_122 = x_186; -x_123 = x_179; -x_124 = x_176; -x_125 = x_184; -x_126 = x_183; -x_127 = x_182; -x_128 = x_180; -x_129 = x_185; -x_130 = x_181; -x_131 = x_178; +lean_dec(x_172); +x_119 = x_173; +x_120 = x_175; +x_121 = x_181; +x_122 = x_176; +x_123 = x_180; +x_124 = x_177; +x_125 = x_185; +x_126 = x_178; +x_127 = x_186; +x_128 = x_182; +x_129 = x_184; +x_130 = x_183; +x_131 = x_179; x_132 = x_193; x_133 = lean_box(0); goto block_152; @@ -58297,20 +58667,20 @@ if (x_195 == 0) { if (x_194 == 0) { -lean_dec(x_173); -x_119 = x_172; -x_120 = x_174; -x_121 = x_175; -x_122 = x_186; -x_123 = x_179; -x_124 = x_176; -x_125 = x_184; -x_126 = x_183; -x_127 = x_182; -x_128 = x_180; -x_129 = x_185; -x_130 = x_181; -x_131 = x_178; +lean_dec(x_172); +x_119 = x_173; +x_120 = x_175; +x_121 = x_181; +x_122 = x_176; +x_123 = x_180; +x_124 = x_177; +x_125 = x_185; +x_126 = x_178; +x_127 = x_186; +x_128 = x_182; +x_129 = x_184; +x_130 = x_183; +x_131 = x_179; x_132 = x_193; x_133 = lean_box(0); goto block_152; @@ -58320,21 +58690,21 @@ else size_t x_196; size_t x_197; lean_object* x_198; x_196 = 0; x_197 = lean_usize_of_nat(x_192); -x_198 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__10(x_173, x_196, x_197, x_193, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); -lean_dec(x_173); -x_153 = x_172; -x_154 = x_174; -x_155 = x_179; -x_156 = x_186; -x_157 = x_175; -x_158 = x_176; -x_159 = x_183; -x_160 = x_184; -x_161 = x_180; -x_162 = x_182; -x_163 = x_185; -x_164 = x_181; -x_165 = x_178; +x_198 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__10(x_172, x_196, x_197, x_193, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); +lean_dec(x_172); +x_153 = x_173; +x_154 = x_175; +x_155 = x_176; +x_156 = x_181; +x_157 = x_180; +x_158 = x_177; +x_159 = x_185; +x_160 = x_178; +x_161 = x_182; +x_162 = x_186; +x_163 = x_179; +x_164 = x_183; +x_165 = x_184; x_166 = x_198; goto block_171; } @@ -58344,21 +58714,21 @@ else size_t x_199; size_t x_200; lean_object* x_201; x_199 = 0; x_200 = lean_usize_of_nat(x_192); -x_201 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__10(x_173, x_199, x_200, x_193, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); -lean_dec(x_173); -x_153 = x_172; -x_154 = x_174; -x_155 = x_179; -x_156 = x_186; -x_157 = x_175; -x_158 = x_176; -x_159 = x_183; -x_160 = x_184; -x_161 = x_180; -x_162 = x_182; -x_163 = x_185; -x_164 = x_181; -x_165 = x_178; +x_201 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_Do_elabInvariants_spec__10(x_172, x_199, x_200, x_193, x_179, x_180, x_181, x_182, x_183, x_184, x_185, x_186); +lean_dec(x_172); +x_153 = x_173; +x_154 = x_175; +x_155 = x_176; +x_156 = x_181; +x_157 = x_180; +x_158 = x_177; +x_159 = x_185; +x_160 = x_178; +x_161 = x_182; +x_162 = x_186; +x_163 = x_179; +x_164 = x_183; +x_165 = x_184; x_166 = x_201; goto block_171; } @@ -58374,21 +58744,21 @@ lean_dec(x_182); lean_dec_ref(x_181); lean_dec(x_180); lean_dec_ref(x_179); -lean_dec(x_178); -lean_dec_ref(x_176); +lean_dec_ref(x_178); +lean_dec_ref(x_177); +lean_dec(x_176); lean_dec_ref(x_175); -lean_dec_ref(x_174); -lean_dec(x_173); -lean_dec_ref(x_172); +lean_dec_ref(x_173); +lean_dec(x_172); return x_191; } } block_286: { uint8_t x_221; uint8_t x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_221 = lean_ctor_get_uint8(x_209, sizeof(void*)*1); -x_222 = lean_ctor_get_uint8(x_209, sizeof(void*)*1 + 1); -lean_dec_ref(x_209); +x_221 = lean_ctor_get_uint8(x_207, sizeof(void*)*1); +x_222 = lean_ctor_get_uint8(x_207, sizeof(void*)*1 + 1); +lean_dec_ref(x_207); x_223 = lean_box(x_222); x_224 = lean_box(x_204); lean_inc_ref(x_2); @@ -58437,8 +58807,8 @@ lean_object* x_235; lean_object* x_236; lean_object* x_237; uint8_t x_238; x_235 = lean_ctor_get(x_234, 0); lean_inc(x_235); lean_dec_ref(x_234); -lean_inc(x_211); -x_236 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_211, x_218); +lean_inc(x_209); +x_236 = l_Lean_isTracingEnabledFor___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__1___redArg(x_209, x_218); x_237 = lean_ctor_get(x_236, 0); lean_inc(x_237); lean_dec_ref(x_236); @@ -58472,12 +58842,12 @@ lean_dec(x_237); if (x_247 == 0) { lean_free_object(x_235); -x_172 = x_246; -x_173 = x_239; -x_174 = x_232; -x_175 = x_207; -x_176 = x_233; -x_177 = x_230; +x_172 = x_239; +x_173 = x_246; +x_174 = x_230; +x_175 = x_233; +x_176 = x_209; +x_177 = x_232; x_178 = x_211; x_179 = x_212; x_180 = x_213; @@ -58494,7 +58864,7 @@ else { lean_object* x_248; size_t x_249; size_t x_250; lean_object* x_251; lean_inc(x_239); -x_248 = l_Array_append___redArg(x_239, x_207); +x_248 = l_Array_append___redArg(x_239, x_211); x_249 = lean_array_size(x_248); x_250 = 0; x_251 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__2___redArg(x_249, x_250, x_248, x_216, x_217, x_218, x_219); @@ -58511,17 +58881,17 @@ x_256 = l_Lean_MessageData_ofList(x_255); lean_ctor_set_tag(x_235, 7); lean_ctor_set(x_235, 1, x_256); lean_ctor_set(x_235, 0, x_253); -lean_inc(x_211); -x_257 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_211, x_235, x_216, x_217, x_218, x_219); +lean_inc(x_209); +x_257 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_209, x_235, x_216, x_217, x_218, x_219); if (lean_obj_tag(x_257) == 0) { lean_dec_ref(x_257); -x_172 = x_246; -x_173 = x_239; -x_174 = x_232; -x_175 = x_207; -x_176 = x_233; -x_177 = x_230; +x_172 = x_239; +x_173 = x_246; +x_174 = x_230; +x_175 = x_233; +x_176 = x_209; +x_177 = x_232; x_178 = x_211; x_179 = x_212; x_180 = x_213; @@ -58547,8 +58917,8 @@ lean_dec(x_215); lean_dec_ref(x_214); lean_dec(x_213); lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec_ref(x_207); +lean_dec_ref(x_211); +lean_dec(x_209); return x_257; } } @@ -58567,8 +58937,8 @@ lean_dec(x_215); lean_dec_ref(x_214); lean_dec(x_213); lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec_ref(x_207); +lean_dec_ref(x_211); +lean_dec(x_209); x_258 = !lean_is_exclusive(x_251); if (x_258 == 0) { @@ -58615,12 +58985,12 @@ x_268 = lean_unbox(x_237); lean_dec(x_237); if (x_268 == 0) { -x_172 = x_267; -x_173 = x_261; -x_174 = x_232; -x_175 = x_207; -x_176 = x_233; -x_177 = x_230; +x_172 = x_261; +x_173 = x_267; +x_174 = x_230; +x_175 = x_233; +x_176 = x_209; +x_177 = x_232; x_178 = x_211; x_179 = x_212; x_180 = x_213; @@ -58637,7 +59007,7 @@ else { lean_object* x_269; size_t x_270; size_t x_271; lean_object* x_272; lean_inc(x_261); -x_269 = l_Array_append___redArg(x_261, x_207); +x_269 = l_Array_append___redArg(x_261, x_211); x_270 = lean_array_size(x_269); x_271 = 0; x_272 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__2___redArg(x_270, x_271, x_269, x_216, x_217, x_218, x_219); @@ -58654,17 +59024,17 @@ x_277 = l_Lean_MessageData_ofList(x_276); x_278 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_278, 0, x_274); lean_ctor_set(x_278, 1, x_277); -lean_inc(x_211); -x_279 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_211, x_278, x_216, x_217, x_218, x_219); +lean_inc(x_209); +x_279 = l_Lean_addTrace___at___00Lean_Elab_Tactic_Do_elabMVCGen_spec__4___redArg(x_209, x_278, x_216, x_217, x_218, x_219); if (lean_obj_tag(x_279) == 0) { lean_dec_ref(x_279); -x_172 = x_267; -x_173 = x_261; -x_174 = x_232; -x_175 = x_207; -x_176 = x_233; -x_177 = x_230; +x_172 = x_261; +x_173 = x_267; +x_174 = x_230; +x_175 = x_233; +x_176 = x_209; +x_177 = x_232; x_178 = x_211; x_179 = x_212; x_180 = x_213; @@ -58690,8 +59060,8 @@ lean_dec(x_215); lean_dec_ref(x_214); lean_dec(x_213); lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec_ref(x_207); +lean_dec_ref(x_211); +lean_dec(x_209); return x_279; } } @@ -58709,8 +59079,8 @@ lean_dec(x_215); lean_dec_ref(x_214); lean_dec(x_213); lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec_ref(x_207); +lean_dec_ref(x_211); +lean_dec(x_209); x_280 = lean_ctor_get(x_272, 0); lean_inc(x_280); if (lean_is_exclusive(x_272)) { @@ -58743,8 +59113,8 @@ lean_dec(x_215); lean_dec_ref(x_214); lean_dec(x_213); lean_dec_ref(x_212); -lean_dec(x_211); -lean_dec_ref(x_207); +lean_dec_ref(x_211); +lean_dec(x_209); lean_dec_ref(x_205); lean_dec_ref(x_203); lean_dec_ref(x_2); @@ -58801,11 +59171,11 @@ x_203 = x_308; x_204 = x_287; x_205 = x_307; x_206 = x_306; -x_207 = x_307; -x_208 = x_288; -x_209 = x_289; +x_207 = x_288; +x_208 = x_289; +x_209 = x_309; x_210 = x_291; -x_211 = x_309; +x_211 = x_307; x_212 = x_294; x_213 = x_295; x_214 = x_296; @@ -58848,11 +59218,11 @@ x_203 = x_308; x_204 = x_287; x_205 = x_307; x_206 = x_306; -x_207 = x_307; -x_208 = x_288; -x_209 = x_289; +x_207 = x_288; +x_208 = x_289; +x_209 = x_309; x_210 = x_291; -x_211 = x_309; +x_211 = x_307; x_212 = x_294; x_213 = x_295; x_214 = x_296; @@ -58940,11 +59310,11 @@ x_203 = x_329; x_204 = x_287; x_205 = x_328; x_206 = x_327; -x_207 = x_328; -x_208 = x_288; -x_209 = x_289; +x_207 = x_288; +x_208 = x_289; +x_209 = x_330; x_210 = x_291; -x_211 = x_330; +x_211 = x_328; x_212 = x_294; x_213 = x_295; x_214 = x_296; @@ -58987,11 +59357,11 @@ x_203 = x_329; x_204 = x_287; x_205 = x_328; x_206 = x_327; -x_207 = x_328; -x_208 = x_288; -x_209 = x_289; +x_207 = x_288; +x_208 = x_289; +x_209 = x_330; x_210 = x_291; -x_211 = x_330; +x_211 = x_328; x_212 = x_294; x_213 = x_295; x_214 = x_296; @@ -59091,11 +59461,11 @@ return x_351; block_380: { lean_object* x_368; -x_368 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_356, x_359, x_358, x_354, x_357); +x_368 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_362, x_359, x_356, x_361, x_365); if (lean_obj_tag(x_368) == 0) { uint8_t x_369; -x_369 = lean_ctor_get_uint8(x_363, sizeof(void*)*1 + 2); +x_369 = lean_ctor_get_uint8(x_354, sizeof(void*)*1 + 2); if (x_369 == 0) { lean_object* x_370; @@ -59103,20 +59473,20 @@ x_370 = lean_ctor_get(x_368, 0); lean_inc(x_370); lean_dec_ref(x_368); x_287 = x_353; -x_288 = x_362; -x_289 = x_363; +x_288 = x_354; +x_289 = x_355; x_290 = x_367; -x_291 = x_365; -x_292 = x_366; +x_291 = x_364; +x_292 = x_358; x_293 = x_370; -x_294 = x_361; -x_295 = x_356; +x_294 = x_366; +x_295 = x_362; x_296 = x_360; -x_297 = x_364; +x_297 = x_357; x_298 = x_359; -x_299 = x_358; -x_300 = x_354; -x_301 = x_357; +x_299 = x_356; +x_300 = x_361; +x_301 = x_365; x_302 = lean_box(0); goto block_352; } @@ -59126,11 +59496,11 @@ lean_object* x_371; lean_object* x_372; x_371 = lean_ctor_get(x_368, 0); lean_inc(x_371); lean_dec_ref(x_368); -lean_inc(x_357); -lean_inc_ref(x_354); -lean_inc(x_358); +lean_inc(x_365); +lean_inc_ref(x_361); +lean_inc(x_356); lean_inc_ref(x_359); -x_372 = l_Lean_Elab_Tactic_Do_elimLets(x_371, x_369, x_359, x_358, x_354, x_357); +x_372 = l_Lean_Elab_Tactic_Do_elimLets(x_371, x_369, x_359, x_356, x_361, x_365); if (lean_obj_tag(x_372) == 0) { lean_object* x_373; @@ -59138,20 +59508,20 @@ x_373 = lean_ctor_get(x_372, 0); lean_inc(x_373); lean_dec_ref(x_372); x_287 = x_353; -x_288 = x_362; -x_289 = x_363; +x_288 = x_354; +x_289 = x_355; x_290 = x_367; -x_291 = x_365; -x_292 = x_366; +x_291 = x_364; +x_292 = x_358; x_293 = x_373; -x_294 = x_361; -x_295 = x_356; +x_294 = x_366; +x_295 = x_362; x_296 = x_360; -x_297 = x_364; +x_297 = x_357; x_298 = x_359; -x_299 = x_358; -x_300 = x_354; -x_301 = x_357; +x_299 = x_356; +x_300 = x_361; +x_301 = x_365; x_302 = lean_box(0); goto block_352; } @@ -59160,15 +59530,15 @@ else uint8_t x_374; lean_dec(x_367); lean_dec_ref(x_366); -lean_dec(x_364); -lean_dec_ref(x_363); -lean_dec_ref(x_362); +lean_dec(x_365); +lean_dec(x_362); lean_dec_ref(x_361); lean_dec_ref(x_360); lean_dec_ref(x_359); -lean_dec(x_358); +lean_dec_ref(x_358); lean_dec(x_357); lean_dec(x_356); +lean_dec_ref(x_355); lean_dec_ref(x_354); lean_dec_ref(x_2); x_374 = !lean_is_exclusive(x_372); @@ -59194,15 +59564,15 @@ else uint8_t x_377; lean_dec(x_367); lean_dec_ref(x_366); -lean_dec(x_364); -lean_dec_ref(x_363); -lean_dec_ref(x_362); +lean_dec(x_365); +lean_dec(x_362); lean_dec_ref(x_361); lean_dec_ref(x_360); lean_dec_ref(x_359); -lean_dec(x_358); +lean_dec_ref(x_358); lean_dec(x_357); lean_dec(x_356); +lean_dec_ref(x_355); lean_dec_ref(x_354); lean_dec_ref(x_2); x_377 = !lean_is_exclusive(x_368); @@ -59256,19 +59626,19 @@ if (lean_obj_tag(x_398) == 0) lean_object* x_400; x_400 = lean_box(1); x_353 = x_394; -x_354 = x_387; -x_355 = lean_box(0); -x_356 = x_382; -x_357 = x_388; -x_358 = x_386; +x_354 = x_397; +x_355 = x_399; +x_356 = x_386; +x_357 = x_384; +x_358 = x_396; x_359 = x_385; x_360 = x_383; -x_361 = x_381; -x_362 = x_399; -x_363 = x_397; -x_364 = x_384; -x_365 = x_394; -x_366 = x_396; +x_361 = x_387; +x_362 = x_382; +x_363 = lean_box(0); +x_364 = x_394; +x_365 = x_388; +x_366 = x_381; x_367 = x_400; goto block_380; } @@ -59280,19 +59650,19 @@ if (x_401 == 0) { lean_ctor_set_tag(x_398, 0); x_353 = x_394; -x_354 = x_387; -x_355 = lean_box(0); -x_356 = x_382; -x_357 = x_388; -x_358 = x_386; +x_354 = x_397; +x_355 = x_399; +x_356 = x_386; +x_357 = x_384; +x_358 = x_396; x_359 = x_385; x_360 = x_383; -x_361 = x_381; -x_362 = x_399; -x_363 = x_397; -x_364 = x_384; -x_365 = x_394; -x_366 = x_396; +x_361 = x_387; +x_362 = x_382; +x_363 = lean_box(0); +x_364 = x_394; +x_365 = x_388; +x_366 = x_381; x_367 = x_398; goto block_380; } @@ -59305,19 +59675,19 @@ lean_dec(x_398); x_403 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_403, 0, x_402); x_353 = x_394; -x_354 = x_387; -x_355 = lean_box(0); -x_356 = x_382; -x_357 = x_388; -x_358 = x_386; +x_354 = x_397; +x_355 = x_399; +x_356 = x_386; +x_357 = x_384; +x_358 = x_396; x_359 = x_385; x_360 = x_383; -x_361 = x_381; -x_362 = x_399; -x_363 = x_397; -x_364 = x_384; -x_365 = x_394; -x_366 = x_396; +x_361 = x_387; +x_362 = x_382; +x_363 = lean_box(0); +x_364 = x_394; +x_365 = x_388; +x_366 = x_381; x_367 = x_403; goto block_380; } @@ -59804,94 +60174,104 @@ l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJump lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__1); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJumpSite___closed__3); -l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__3___closed__8); -l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1 = _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1(); -lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__1); -l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__2 = _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__15___redArg___closed__2(); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__19___closed__1); -l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__4); -l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0(); -lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__0); -l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1(); -lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__51___closed__1); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__3___closed__1); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__3); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__7); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__8); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__9); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___lam__7___closed__10); -l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1(); -lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37_spec__54___redArg___closed__1); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__0); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__2); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___lam__11___closed__4); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__1); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__2); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__4); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__6); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__8); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__10); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___closed__12); -l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1(); -lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__20_spec__37___boxed__const__1); -l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__15(); -l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__19_spec__26___closed__23); -l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1(); -lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__1); -l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3(); -lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__3); -l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5(); -lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__5); -l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7(); -lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__18___lam__4___closed__7); -l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__0___closed__1); -l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10_spec__20___lam__2___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__8___closed__1); -l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__10___lam__11___closed__1); -l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2 = _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2(); -lean_mark_persistent(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__2); -l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3 = _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3(); -lean_mark_persistent(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__8___closed__3); -l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0(); -lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__0); -l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1(); -lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__1); -l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2(); -lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__13___lam__1___closed__2); +l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0(); +lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__0); +l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1(); +lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__1); +l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2(); +lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__14___lam__1___closed__2); +l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2 = _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2(); +lean_mark_persistent(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__2); +l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3 = _init_l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3(); +lean_mark_persistent(l_List_mapTR_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__9___closed__3); +l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntroForall___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__5___closed__4); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__0); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__2); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___lam__11___closed__4); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__3___closed__1); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__3); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__7); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__8); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__9); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___lam__7___closed__10); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__0); +l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1 = _init_l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1(); +lean_mark_persistent(l_panic___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__53___closed__1); +l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1 = _init_l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1(); +lean_mark_persistent(l_WellFounded_opaqueFix_u2083___at___00Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39_spec__56___redArg___closed__1); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__1); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__2); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__4); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__6); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__8); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__10); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___closed__12); +l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1 = _init_l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1(); +lean_mark_persistent(l_Lean_Meta_MatcherApp_transform___at___00Lean_Elab_Tactic_Do_SplitInfo_splitWith___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint_spec__21_spec__39___boxed__const__1); +l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1(); +lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__1); +l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3(); +lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__3); +l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5(); +lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__5); +l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7 = _init_l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7(); +lean_mark_persistent(l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__20___lam__4___closed__7); +l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__2___closed__1); +l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeMGoal___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__22___lam__0___closed__1); +l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__15(); +l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23 = _init_l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargeFailEntails___at___00__private_Lean_Elab_Tactic_Do_Spec_0__Lean_Elab_Tactic_Do_dischargePostEntails___at___00Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11_spec__21_spec__28___closed__23); +l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__8___closed__1); +l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1 = _init_l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_mSpec___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__11___lam__11___closed__1); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__1); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__3); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__5); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__7); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___at___00Lean_Elab_Tactic_Do_withLocalSpecs___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_tryGoal_spec__0_spec__0___redArg___closed__9); +l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1 = _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1(); +lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__1); +l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__2 = _init_l___private_Lean_Util_Trace_0__Lean_withTraceNode_postCallback___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp_spec__16___redArg___closed__2(); +l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3 = _init_l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_Do_ProofMode_mIntro___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onGoal_spec__4___closed__3); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__1); -l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1(); -lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__1); -l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3(); -lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__3); -l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5(); -lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__5); -l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7(); -lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__24___redArg___closed__7); +l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1(); +lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__1); +l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3(); +lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__3); +l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5(); +lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__5); +l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7 = _init_l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7(); +lean_mark_persistent(l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_assignMVars_spec__25___redArg___closed__7); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__2); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__11___closed__1(); @@ -59902,14 +60282,6 @@ l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPAp lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__6); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__8); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__12); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__14); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__16); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__1); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onSplit___lam__7___closed__3(); @@ -59930,8 +60302,8 @@ l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoin lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__9); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onJoinPoint___closed__11); -l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18(); -lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__18); +l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__18___closed__10); l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___closed__0 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_0__Lean_Elab_Tactic_Do_VCGen_genVCs_onWPApp___lam__20___closed__0(); l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0 = _init_l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_VCGen_genVCs___lam__0___closed__0); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c index a1b1e01077..96a0090201 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Do/VCGen/Basic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Tactic.Do.VCGen.Basic -// Imports: public import Lean.Elab.Tactic.Simp public import Lean.Elab.Tactic.Do.Attr +// Imports: public import Lean.Elab.Tactic.Simp public import Lean.Elab.Tactic.Do.Attr import Init.Omega #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -536,7 +536,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Uns uint8_t l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_isErased(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveState___redArg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_SavedState_restore___redArg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__5___redArg___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_EXPORT lean_object* l_Lean_throwError___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__1___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -594,7 +594,7 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknow LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3_spec__3___redArg___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_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__4___lam__0(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_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__4___lam__0___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* l_Lean_Environment_find_x3f(lean_object*, lean_object*, uint8_t); @@ -738,6 +738,100 @@ LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkU LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3_spec__3_spec__4_spec__7_spec__8___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_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3_spec__3_spec__4_spec__8(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_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_Elab_Tactic_Do_mkSpecContext_spec__3_spec__3_spec__4_spec__8___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_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0(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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_StateRefT_x27_lift___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*3, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_StateRefT_x27_lift___boxed, .m_arity = 6, .m_num_fixed = 3, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2_value; +lean_object* l_ReaderT_instMonadFunctor___lam__0(lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_ReaderT_instMonadFunctor___lam__0, .m_arity = 4, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0_value; +extern lean_object* l_Lean_Core_instMonadQuotationCoreM; +lean_object* l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3; +lean_object* l_ReaderT_instMonadLift___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_ReaderT_instMonadLift___lam__0___boxed, .m_arity = 3, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6; +lean_object* l_instMonadEST(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7; +lean_object* l_ReaderT_instMonad___redArg(lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8; +lean_object* l_Lean_Core_instMonadCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Core_instMonadCoreM___lam__0___boxed, .m_arity = 5, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9_value; +lean_object* l_Lean_Core_instMonadCoreM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Core_instMonadCoreM___lam__1___boxed, .m_arity = 7, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10_value; +lean_object* l_Lean_Meta_instMonadMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_instMonadMetaM___lam__0___boxed, .m_arity = 7, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11_value; +lean_object* l_Lean_Meta_instMonadMetaM___lam__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_instMonadMetaM___lam__1___boxed, .m_arity = 9, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12_value; +extern lean_object* l_Lean_Core_instMonadTraceCoreM; +lean_object* l_Lean_instMonadTraceOfMonadLift___redArg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +lean_object* l_Lean_Core_instMonadOptionsCoreM___lam__0___boxed(lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Core_instMonadOptionsCoreM___lam__0___boxed, .m_arity = 3, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__19 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__19_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*5, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_StateRefT_x27_lift___boxed, .m_arity = 6, .m_num_fixed = 5, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__19_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__20 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__20_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*2, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_ReaderT_instMonadLift___lam__0___boxed, .m_arity = 3, .m_num_fixed = 2, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__20_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__21 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__21_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*5, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_StateRefT_x27_lift___boxed, .m_arity = 6, .m_num_fixed = 5, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__21_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__22 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__22_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*2, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_ReaderT_instMonadLift___lam__0___boxed, .m_arity = 3, .m_num_fixed = 2, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__22_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__23 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__23_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*2, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_ReaderT_instMonadLift___lam__0___boxed, .m_arity = 3, .m_num_fixed = 2, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__23_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__24 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__24_value; +static const lean_closure_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*2, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___lam__0___boxed, .m_arity = 9, .m_num_fixed = 2, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__24_value)} }; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25_value; +extern lean_object* l_Lean_Meta_instAddMessageContextMetaM; +lean_object* l_Lean_instAddMessageContextOfMonadLift___redArg___lam__0(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "adding "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__30 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__30_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "SpecProof.global "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__32 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__32_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.local "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__34 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__34_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +static const lean_string_object l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__36_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SpecProof.stx _ "}; +static const lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__36 = (const lean_object*)&l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__36_value; +static lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instFunctorOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_instApplicativeOfMonad___redArg___lam__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_isTracingEnabledFor___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__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_addTrace___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_mkFVar(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__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*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop(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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0___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_Elab_Tactic_Do_withLocalSpecs___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_() { _start: { @@ -6950,7 +7044,7 @@ lean_dec(x_25); x_28 = lean_ctor_get(x_27, 0); lean_inc(x_28); lean_dec_ref(x_27); -x_29 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_4, x_28); +x_29 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_4, x_28); x_13 = x_29; x_14 = lean_box(0); goto block_18; @@ -7797,7 +7891,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean x_13 = lean_ctor_get(x_3, 2); lean_inc_ref(x_13); lean_dec_ref(x_3); -x_14 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_eraseCore(x_2, x_13); +x_14 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_erase(x_2, x_13); x_15 = lean_box(0); x_16 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_16, 0, x_1); @@ -8386,7 +8480,7 @@ lean_dec(x_47); x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); lean_dec_ref(x_155); -x_157 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_25, x_156); +x_157 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_25, x_156); x_34 = x_23; x_35 = x_157; x_36 = lean_box(0); @@ -8404,17 +8498,17 @@ if (x_159 == 0) uint8_t x_160; lean_inc(x_158); x_160 = l_Lean_Exception_isRuntime(x_158); -x_52 = x_153; +x_52 = x_158; x_53 = lean_box(0); -x_54 = x_158; +x_54 = x_153; x_55 = x_160; goto block_62; } else { -x_52 = x_153; +x_52 = x_158; x_53 = lean_box(0); -x_54 = x_158; +x_54 = x_153; x_55 = x_159; goto block_62; } @@ -8516,7 +8610,7 @@ lean_dec(x_47); x_173 = lean_ctor_get(x_172, 0); lean_inc(x_173); lean_dec_ref(x_172); -x_174 = l_Lean_Elab_Tactic_Do_SpecAttr_addSpecTheoremEntry(x_25, x_173); +x_174 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_25, x_173); x_28 = x_23; x_29 = x_174; x_30 = lean_box(0); @@ -8534,17 +8628,17 @@ if (x_176 == 0) uint8_t x_177; lean_inc(x_175); x_177 = l_Lean_Exception_isRuntime(x_175); -x_63 = x_170; +x_63 = lean_box(0); x_64 = x_175; -x_65 = lean_box(0); +x_65 = x_170; x_66 = x_177; goto block_73; } else { -x_63 = x_170; +x_63 = lean_box(0); x_64 = x_175; -x_65 = lean_box(0); +x_65 = x_170; x_66 = x_176; goto block_73; } @@ -9000,7 +9094,7 @@ block_215: if (x_208 == 0) { lean_object* x_209; -lean_dec_ref(x_207); +lean_dec_ref(x_206); lean_dec(x_205); x_209 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_204, x_208, x_6, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_209) == 0) @@ -9063,7 +9157,7 @@ if (lean_is_scalar(x_205)) { x_214 = x_205; lean_ctor_set_tag(x_214, 1); } -lean_ctor_set(x_214, 0, x_207); +lean_ctor_set(x_214, 0, x_206); return x_214; } } @@ -9076,15 +9170,15 @@ if (x_218 == 0) uint8_t x_219; lean_inc_ref(x_216); x_219 = l_Lean_Exception_isRuntime(x_216); -x_206 = lean_box(0); -x_207 = x_216; +x_206 = x_216; +x_207 = lean_box(0); x_208 = x_219; goto block_215; } else { -x_206 = lean_box(0); -x_207 = x_216; +x_206 = x_216; +x_207 = lean_box(0); x_208 = x_218; goto block_215; } @@ -9223,8 +9317,8 @@ block_62: if (x_55 == 0) { lean_object* x_56; -lean_dec_ref(x_54); -x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_52, x_55, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec_ref(x_52); +x_56 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_54, x_55, x_6, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_56) == 0) { lean_object* x_57; @@ -9268,7 +9362,7 @@ return x_60; else { lean_object* x_61; -lean_dec_ref(x_52); +lean_dec_ref(x_54); lean_dec(x_47); lean_dec(x_26); lean_dec(x_25); @@ -9280,7 +9374,7 @@ lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); x_61 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_61, 0, x_54); +lean_ctor_set(x_61, 0, x_52); return x_61; } } @@ -9290,7 +9384,7 @@ if (x_66 == 0) { lean_object* x_67; lean_dec_ref(x_64); -x_67 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_63, x_66, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_67 = l_Lean_Elab_Tactic_SavedState_restore___redArg(x_65, x_66, x_6, x_7, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_67) == 0) { lean_object* x_68; @@ -9336,7 +9430,7 @@ return x_71; else { lean_object* x_72; -lean_dec_ref(x_63); +lean_dec_ref(x_65); lean_dec(x_47); lean_dec(x_27); lean_dec(x_26); @@ -10658,8 +10752,2077 @@ lean_dec(x_2); return x_13; } } +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0(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) { +_start: +{ +lean_object* x_11; +x_11 = l_Lean_Elab_Tactic_Do_SpecAttr_mkSpecTheoremFromLocal(x_1, x_2, x_6, x_7, x_8, x_9); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Core_instMonadQuotationCoreM; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2)); +x_3 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0)); +x_4 = l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(x_3, x_2, x_1); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_3 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0)); +x_4 = l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(x_3, x_2, x_1); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2)); +x_3 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0)); +x_4 = l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(x_3, x_2, x_1); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_3 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__0)); +x_4 = l_Lean_instMonadQuotationOfMonadFunctorOfMonadLift___redArg(x_3, x_2, x_1); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = l_instMonadEST(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7; +x_2 = l_ReaderT_instMonad___redArg(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Core_instMonadTraceCoreM; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16; +x_2 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17; +x_2 = ((lean_object*)(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___closed__0)); +x_3 = l_Lean_instMonadTraceOfMonadLift___redArg(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__2)); +x_2 = l_Lean_Meta_instAddMessageContextMetaM; +x_3 = lean_alloc_closure((void*)(l_Lean_instAddMessageContextOfMonadLift___redArg___lam__0), 3, 2); +lean_closure_set(x_3, 0, x_2); +lean_closure_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26; +x_3 = lean_alloc_closure((void*)(l_Lean_instAddMessageContextOfMonadLift___redArg___lam__0), 3, 2); +lean_closure_set(x_3, 0, x_2); +lean_closure_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__1)); +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27; +x_3 = lean_alloc_closure((void*)(l_Lean_instAddMessageContextOfMonadLift___redArg___lam__0), 3, 2); +lean_closure_set(x_3, 0, x_2); +lean_closure_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l_Lean_Elab_Tactic_Do_instMonadLiftSimpMVCGenM___closed__0)); +x_2 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28; +x_3 = lean_alloc_closure((void*)(l_Lean_instAddMessageContextOfMonadLift___redArg___lam__0), 3, 2); +lean_closure_set(x_3, 0, x_2); +lean_closure_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__30)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__32)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__34)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__36)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(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_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_26; lean_object* x_29; uint8_t x_30; +x_29 = lean_array_get_size(x_1); +x_30 = lean_nat_dec_lt(x_4, x_29); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_4); +x_31 = lean_apply_9(x_3, lean_box(0), x_2, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_32 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6; +x_33 = lean_ctor_get(x_32, 0); +lean_inc_ref(x_33); +x_34 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; +x_36 = lean_ctor_get(x_34, 0); +x_37 = lean_ctor_get(x_34, 1); +lean_dec(x_37); +x_38 = !lean_is_exclusive(x_36); +if (x_38 == 0) +{ +lean_object* x_39; 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_39 = lean_ctor_get(x_36, 0); +x_40 = lean_ctor_get(x_36, 2); +x_41 = lean_ctor_get(x_36, 3); +x_42 = lean_ctor_get(x_36, 4); +x_43 = lean_ctor_get(x_36, 1); +lean_dec(x_43); +x_44 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9)); +x_45 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10)); +lean_inc_ref(x_39); +x_46 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_46, 0, x_39); +x_47 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_47, 0, x_39); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_49, 0, x_42); +x_50 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_50, 0, x_41); +x_51 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_51, 0, x_40); +lean_ctor_set(x_36, 4, x_49); +lean_ctor_set(x_36, 3, x_50); +lean_ctor_set(x_36, 2, x_51); +lean_ctor_set(x_36, 1, x_44); +lean_ctor_set(x_36, 0, x_48); +lean_ctor_set(x_34, 1, x_45); +x_52 = l_ReaderT_instMonad___redArg(x_34); +x_53 = !lean_is_exclusive(x_52); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_54 = lean_ctor_get(x_52, 0); +x_55 = lean_ctor_get(x_52, 1); +lean_dec(x_55); +x_56 = !lean_is_exclusive(x_54); +if (x_56 == 0) +{ +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; 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; +x_57 = lean_ctor_get(x_54, 0); +x_58 = lean_ctor_get(x_54, 2); +x_59 = lean_ctor_get(x_54, 3); +x_60 = lean_ctor_get(x_54, 4); +x_61 = lean_ctor_get(x_54, 1); +lean_dec(x_61); +x_62 = lean_array_fget_borrowed(x_1, x_4); +x_63 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11)); +x_64 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12)); +lean_inc_ref(x_57); +x_65 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_65, 0, x_57); +x_66 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_66, 0, x_57); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_68, 0, x_60); +x_69 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_69, 0, x_59); +x_70 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_70, 0, x_58); +lean_ctor_set(x_54, 4, x_68); +lean_ctor_set(x_54, 3, x_69); +lean_ctor_set(x_54, 2, x_70); +lean_ctor_set(x_54, 1, x_63); +lean_ctor_set(x_54, 0, x_67); +lean_ctor_set(x_52, 1, x_64); +x_71 = l_ReaderT_instMonad___redArg(x_52); +x_72 = l_ReaderT_instMonad___redArg(x_71); +x_73 = l_Lean_Expr_fvarId_x21(x_62); +x_74 = lean_unsigned_to_nat(100u); +x_75 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_75, 0, x_73); +lean_closure_set(x_75, 1, x_74); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_76 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_75, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +lean_dec_ref(x_76); +x_78 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_)); +x_79 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +x_80 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25)); +lean_inc_ref(x_72); +x_81 = l_Lean_isTracingEnabledFor___redArg(x_72, x_79, x_80, x_78); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_82 = lean_apply_7(x_81, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_82) == 0) +{ +lean_object* x_83; uint8_t x_84; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +lean_dec_ref(x_82); +x_84 = lean_unbox(x_83); +lean_dec(x_83); +if (x_84 == 0) +{ +lean_object* x_85; lean_object* x_86; +lean_dec_ref(x_72); +lean_dec_ref(x_33); +x_85 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_86 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_77, x_1, x_2, x_3, x_85, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_86; +goto block_28; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_87 = lean_ctor_get(x_77, 2); +x_88 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +x_89 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +switch (lean_obj_tag(x_87)) { +case 0: +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_101 = lean_ctor_get(x_87, 0); +x_102 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +lean_inc(x_101); +x_103 = l_Lean_MessageData_ofName(x_101); +x_104 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +x_90 = x_104; +goto block_100; +} +case 1: +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_105 = lean_ctor_get(x_87, 0); +x_106 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +lean_inc(x_105); +x_107 = l_Lean_mkFVar(x_105); +x_108 = l_Lean_MessageData_ofExpr(x_107); +x_109 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_108); +x_90 = x_109; +goto block_100; +} +default: +{ +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_110 = lean_ctor_get(x_87, 1); +x_111 = lean_ctor_get(x_87, 2); +x_112 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +lean_inc(x_110); +x_113 = l_Lean_MessageData_ofSyntax(x_110); +x_114 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +x_115 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___closed__17; +x_116 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +lean_inc_ref(x_111); +x_117 = l_Lean_MessageData_ofExpr(x_111); +x_118 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_118, 0, x_116); +lean_ctor_set(x_118, 1, x_117); +x_90 = x_118; +goto block_100; +} +} +block_100: +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_91, 0, x_89); +lean_ctor_set(x_91, 1, x_90); +x_92 = l_Lean_addTrace___redArg(x_72, x_79, x_33, x_88, x_78, x_91); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_93 = lean_apply_7(x_92, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +lean_dec_ref(x_93); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_95 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_77, x_1, x_2, x_3, x_94, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_95; +goto block_28; +} +else +{ +uint8_t x_96; +lean_dec(x_77); +x_96 = !lean_is_exclusive(x_93); +if (x_96 == 0) +{ +lean_object* x_97; +x_97 = lean_ctor_get(x_93, 0); +lean_inc(x_97); +x_20 = x_93; +x_21 = x_97; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_93, 0); +lean_inc(x_98); +lean_dec(x_93); +lean_inc(x_98); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +x_20 = x_99; +x_21 = x_98; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +} +else +{ +uint8_t x_119; +lean_dec(x_77); +lean_dec_ref(x_72); +lean_dec_ref(x_33); +x_119 = !lean_is_exclusive(x_82); +if (x_119 == 0) +{ +lean_object* x_120; +x_120 = lean_ctor_get(x_82, 0); +lean_inc(x_120); +x_20 = x_82; +x_21 = x_120; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_121; lean_object* x_122; +x_121 = lean_ctor_get(x_82, 0); +lean_inc(x_121); +lean_dec(x_82); +lean_inc(x_121); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_121); +x_20 = x_122; +x_21 = x_121; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +uint8_t x_123; +lean_dec_ref(x_72); +lean_dec_ref(x_33); +x_123 = !lean_is_exclusive(x_76); +if (x_123 == 0) +{ +lean_object* x_124; +x_124 = lean_ctor_get(x_76, 0); +lean_inc(x_124); +x_20 = x_76; +x_21 = x_124; +x_22 = lean_box(0); +goto block_25; +} +else +{ +lean_object* x_125; lean_object* x_126; +x_125 = lean_ctor_get(x_76, 0); +lean_inc(x_125); +lean_dec(x_76); +lean_inc(x_125); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +x_20 = x_126; +x_21 = x_125; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_127 = lean_ctor_get(x_54, 0); +x_128 = lean_ctor_get(x_54, 2); +x_129 = lean_ctor_get(x_54, 3); +x_130 = lean_ctor_get(x_54, 4); +lean_inc(x_130); +lean_inc(x_129); +lean_inc(x_128); +lean_inc(x_127); +lean_dec(x_54); +x_131 = lean_array_fget_borrowed(x_1, x_4); +x_132 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11)); +x_133 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12)); +lean_inc_ref(x_127); +x_134 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_134, 0, x_127); +x_135 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_135, 0, x_127); +x_136 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_137, 0, x_130); +x_138 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_138, 0, x_129); +x_139 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_139, 0, x_128); +x_140 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_140, 0, x_136); +lean_ctor_set(x_140, 1, x_132); +lean_ctor_set(x_140, 2, x_139); +lean_ctor_set(x_140, 3, x_138); +lean_ctor_set(x_140, 4, x_137); +lean_ctor_set(x_52, 1, x_133); +lean_ctor_set(x_52, 0, x_140); +x_141 = l_ReaderT_instMonad___redArg(x_52); +x_142 = l_ReaderT_instMonad___redArg(x_141); +x_143 = l_Lean_Expr_fvarId_x21(x_131); +x_144 = lean_unsigned_to_nat(100u); +x_145 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_145, 0, x_143); +lean_closure_set(x_145, 1, x_144); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_146 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_145, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_146) == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +lean_dec_ref(x_146); +x_148 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_)); +x_149 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +x_150 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25)); +lean_inc_ref(x_142); +x_151 = l_Lean_isTracingEnabledFor___redArg(x_142, x_149, x_150, x_148); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_152 = lean_apply_7(x_151, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_152) == 0) +{ +lean_object* x_153; uint8_t x_154; +x_153 = lean_ctor_get(x_152, 0); +lean_inc(x_153); +lean_dec_ref(x_152); +x_154 = lean_unbox(x_153); +lean_dec(x_153); +if (x_154 == 0) +{ +lean_object* x_155; lean_object* x_156; +lean_dec_ref(x_142); +lean_dec_ref(x_33); +x_155 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_156 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_147, x_1, x_2, x_3, x_155, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_156; +goto block_28; +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_157 = lean_ctor_get(x_147, 2); +x_158 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +x_159 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +switch (lean_obj_tag(x_157)) { +case 0: +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_170 = lean_ctor_get(x_157, 0); +x_171 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +lean_inc(x_170); +x_172 = l_Lean_MessageData_ofName(x_170); +x_173 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +x_160 = x_173; +goto block_169; +} +case 1: +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_174 = lean_ctor_get(x_157, 0); +x_175 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +lean_inc(x_174); +x_176 = l_Lean_mkFVar(x_174); +x_177 = l_Lean_MessageData_ofExpr(x_176); +x_178 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_178, 0, x_175); +lean_ctor_set(x_178, 1, x_177); +x_160 = x_178; +goto block_169; +} +default: +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_179 = lean_ctor_get(x_157, 1); +x_180 = lean_ctor_get(x_157, 2); +x_181 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +lean_inc(x_179); +x_182 = l_Lean_MessageData_ofSyntax(x_179); +x_183 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_183, 0, x_181); +lean_ctor_set(x_183, 1, x_182); +x_184 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___closed__17; +x_185 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_185, 0, x_183); +lean_ctor_set(x_185, 1, x_184); +lean_inc_ref(x_180); +x_186 = l_Lean_MessageData_ofExpr(x_180); +x_187 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_187, 0, x_185); +lean_ctor_set(x_187, 1, x_186); +x_160 = x_187; +goto block_169; +} +} +block_169: +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_161 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = l_Lean_addTrace___redArg(x_142, x_149, x_33, x_158, x_148, x_161); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_163 = lean_apply_7(x_162, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_163) == 0) +{ +lean_object* x_164; lean_object* x_165; +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +lean_dec_ref(x_163); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_165 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_147, x_1, x_2, x_3, x_164, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_165; +goto block_28; +} +else +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; +lean_dec(x_147); +x_166 = lean_ctor_get(x_163, 0); +lean_inc(x_166); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + x_167 = x_163; +} else { + lean_dec_ref(x_163); + x_167 = lean_box(0); +} +lean_inc(x_166); +if (lean_is_scalar(x_167)) { + x_168 = lean_alloc_ctor(1, 1, 0); +} else { + x_168 = x_167; +} +lean_ctor_set(x_168, 0, x_166); +x_20 = x_168; +x_21 = x_166; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_147); +lean_dec_ref(x_142); +lean_dec_ref(x_33); +x_188 = lean_ctor_get(x_152, 0); +lean_inc(x_188); +if (lean_is_exclusive(x_152)) { + lean_ctor_release(x_152, 0); + x_189 = x_152; +} else { + lean_dec_ref(x_152); + x_189 = lean_box(0); +} +lean_inc(x_188); +if (lean_is_scalar(x_189)) { + x_190 = lean_alloc_ctor(1, 1, 0); +} else { + x_190 = x_189; +} +lean_ctor_set(x_190, 0, x_188); +x_20 = x_190; +x_21 = x_188; +x_22 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; +lean_dec_ref(x_142); +lean_dec_ref(x_33); +x_191 = lean_ctor_get(x_146, 0); +lean_inc(x_191); +if (lean_is_exclusive(x_146)) { + lean_ctor_release(x_146, 0); + x_192 = x_146; +} else { + lean_dec_ref(x_146); + x_192 = lean_box(0); +} +lean_inc(x_191); +if (lean_is_scalar(x_192)) { + x_193 = lean_alloc_ctor(1, 1, 0); +} else { + x_193 = x_192; +} +lean_ctor_set(x_193, 0, x_191); +x_20 = x_193; +x_21 = x_191; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; +x_194 = lean_ctor_get(x_52, 0); +lean_inc(x_194); +lean_dec(x_52); +x_195 = lean_ctor_get(x_194, 0); +lean_inc_ref(x_195); +x_196 = lean_ctor_get(x_194, 2); +lean_inc(x_196); +x_197 = lean_ctor_get(x_194, 3); +lean_inc(x_197); +x_198 = lean_ctor_get(x_194, 4); +lean_inc(x_198); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + lean_ctor_release(x_194, 2); + lean_ctor_release(x_194, 3); + lean_ctor_release(x_194, 4); + x_199 = x_194; +} else { + lean_dec_ref(x_194); + x_199 = lean_box(0); +} +x_200 = lean_array_fget_borrowed(x_1, x_4); +x_201 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11)); +x_202 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12)); +lean_inc_ref(x_195); +x_203 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_203, 0, x_195); +x_204 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_204, 0, x_195); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_203); +lean_ctor_set(x_205, 1, x_204); +x_206 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_206, 0, x_198); +x_207 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_207, 0, x_197); +x_208 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_208, 0, x_196); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 5, 0); +} else { + x_209 = x_199; +} +lean_ctor_set(x_209, 0, x_205); +lean_ctor_set(x_209, 1, x_201); +lean_ctor_set(x_209, 2, x_208); +lean_ctor_set(x_209, 3, x_207); +lean_ctor_set(x_209, 4, x_206); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_209); +lean_ctor_set(x_210, 1, x_202); +x_211 = l_ReaderT_instMonad___redArg(x_210); +x_212 = l_ReaderT_instMonad___redArg(x_211); +x_213 = l_Lean_Expr_fvarId_x21(x_200); +x_214 = lean_unsigned_to_nat(100u); +x_215 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_215, 0, x_213); +lean_closure_set(x_215, 1, x_214); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_216 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_215, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_216) == 0) +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_217 = lean_ctor_get(x_216, 0); +lean_inc(x_217); +lean_dec_ref(x_216); +x_218 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_)); +x_219 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +x_220 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25)); +lean_inc_ref(x_212); +x_221 = l_Lean_isTracingEnabledFor___redArg(x_212, x_219, x_220, x_218); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_222 = lean_apply_7(x_221, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_222) == 0) +{ +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_222, 0); +lean_inc(x_223); +lean_dec_ref(x_222); +x_224 = lean_unbox(x_223); +lean_dec(x_223); +if (x_224 == 0) +{ +lean_object* x_225; lean_object* x_226; +lean_dec_ref(x_212); +lean_dec_ref(x_33); +x_225 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_226 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_217, x_1, x_2, x_3, x_225, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_226; +goto block_28; +} +else +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_227 = lean_ctor_get(x_217, 2); +x_228 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +x_229 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +switch (lean_obj_tag(x_227)) { +case 0: +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_240 = lean_ctor_get(x_227, 0); +x_241 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +lean_inc(x_240); +x_242 = l_Lean_MessageData_ofName(x_240); +x_243 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +x_230 = x_243; +goto block_239; +} +case 1: +{ +lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_244 = lean_ctor_get(x_227, 0); +x_245 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +lean_inc(x_244); +x_246 = l_Lean_mkFVar(x_244); +x_247 = l_Lean_MessageData_ofExpr(x_246); +x_248 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_247); +x_230 = x_248; +goto block_239; +} +default: +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_249 = lean_ctor_get(x_227, 1); +x_250 = lean_ctor_get(x_227, 2); +x_251 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +lean_inc(x_249); +x_252 = l_Lean_MessageData_ofSyntax(x_249); +x_253 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_253, 0, x_251); +lean_ctor_set(x_253, 1, x_252); +x_254 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___closed__17; +x_255 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +lean_inc_ref(x_250); +x_256 = l_Lean_MessageData_ofExpr(x_250); +x_257 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_257, 0, x_255); +lean_ctor_set(x_257, 1, x_256); +x_230 = x_257; +goto block_239; +} +} +block_239: +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +x_232 = l_Lean_addTrace___redArg(x_212, x_219, x_33, x_228, x_218, x_231); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_233 = lean_apply_7(x_232, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_233) == 0) +{ +lean_object* x_234; lean_object* x_235; +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +lean_dec_ref(x_233); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_235 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_217, x_1, x_2, x_3, x_234, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_235; +goto block_28; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +lean_dec(x_217); +x_236 = lean_ctor_get(x_233, 0); +lean_inc(x_236); +if (lean_is_exclusive(x_233)) { + lean_ctor_release(x_233, 0); + x_237 = x_233; +} else { + lean_dec_ref(x_233); + x_237 = lean_box(0); +} +lean_inc(x_236); +if (lean_is_scalar(x_237)) { + x_238 = lean_alloc_ctor(1, 1, 0); +} else { + x_238 = x_237; +} +lean_ctor_set(x_238, 0, x_236); +x_20 = x_238; +x_21 = x_236; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +else +{ +lean_object* x_258; lean_object* x_259; lean_object* x_260; +lean_dec(x_217); +lean_dec_ref(x_212); +lean_dec_ref(x_33); +x_258 = lean_ctor_get(x_222, 0); +lean_inc(x_258); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_259 = x_222; +} else { + lean_dec_ref(x_222); + x_259 = lean_box(0); +} +lean_inc(x_258); +if (lean_is_scalar(x_259)) { + x_260 = lean_alloc_ctor(1, 1, 0); +} else { + x_260 = x_259; +} +lean_ctor_set(x_260, 0, x_258); +x_20 = x_260; +x_21 = x_258; +x_22 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; +lean_dec_ref(x_212); +lean_dec_ref(x_33); +x_261 = lean_ctor_get(x_216, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_216)) { + lean_ctor_release(x_216, 0); + x_262 = x_216; +} else { + lean_dec_ref(x_216); + x_262 = lean_box(0); +} +lean_inc(x_261); +if (lean_is_scalar(x_262)) { + x_263 = lean_alloc_ctor(1, 1, 0); +} else { + x_263 = x_262; +} +lean_ctor_set(x_263, 0, x_261); +x_20 = x_263; +x_21 = x_261; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; +x_264 = lean_ctor_get(x_36, 0); +x_265 = lean_ctor_get(x_36, 2); +x_266 = lean_ctor_get(x_36, 3); +x_267 = lean_ctor_get(x_36, 4); +lean_inc(x_267); +lean_inc(x_266); +lean_inc(x_265); +lean_inc(x_264); +lean_dec(x_36); +x_268 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9)); +x_269 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10)); +lean_inc_ref(x_264); +x_270 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_270, 0, x_264); +x_271 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_271, 0, x_264); +x_272 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_272, 0, x_270); +lean_ctor_set(x_272, 1, x_271); +x_273 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_273, 0, x_267); +x_274 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_274, 0, x_266); +x_275 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_275, 0, x_265); +x_276 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_276, 0, x_272); +lean_ctor_set(x_276, 1, x_268); +lean_ctor_set(x_276, 2, x_275); +lean_ctor_set(x_276, 3, x_274); +lean_ctor_set(x_276, 4, x_273); +lean_ctor_set(x_34, 1, x_269); +lean_ctor_set(x_34, 0, x_276); +x_277 = l_ReaderT_instMonad___redArg(x_34); +x_278 = lean_ctor_get(x_277, 0); +lean_inc_ref(x_278); +if (lean_is_exclusive(x_277)) { + lean_ctor_release(x_277, 0); + lean_ctor_release(x_277, 1); + x_279 = x_277; +} else { + lean_dec_ref(x_277); + x_279 = lean_box(0); +} +x_280 = lean_ctor_get(x_278, 0); +lean_inc_ref(x_280); +x_281 = lean_ctor_get(x_278, 2); +lean_inc(x_281); +x_282 = lean_ctor_get(x_278, 3); +lean_inc(x_282); +x_283 = lean_ctor_get(x_278, 4); +lean_inc(x_283); +if (lean_is_exclusive(x_278)) { + lean_ctor_release(x_278, 0); + lean_ctor_release(x_278, 1); + lean_ctor_release(x_278, 2); + lean_ctor_release(x_278, 3); + lean_ctor_release(x_278, 4); + x_284 = x_278; +} else { + lean_dec_ref(x_278); + x_284 = lean_box(0); +} +x_285 = lean_array_fget_borrowed(x_1, x_4); +x_286 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11)); +x_287 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12)); +lean_inc_ref(x_280); +x_288 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_288, 0, x_280); +x_289 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_289, 0, x_280); +x_290 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_290, 0, x_288); +lean_ctor_set(x_290, 1, x_289); +x_291 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_291, 0, x_283); +x_292 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_292, 0, x_282); +x_293 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_293, 0, x_281); +if (lean_is_scalar(x_284)) { + x_294 = lean_alloc_ctor(0, 5, 0); +} else { + x_294 = x_284; +} +lean_ctor_set(x_294, 0, x_290); +lean_ctor_set(x_294, 1, x_286); +lean_ctor_set(x_294, 2, x_293); +lean_ctor_set(x_294, 3, x_292); +lean_ctor_set(x_294, 4, x_291); +if (lean_is_scalar(x_279)) { + x_295 = lean_alloc_ctor(0, 2, 0); +} else { + x_295 = x_279; +} +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_287); +x_296 = l_ReaderT_instMonad___redArg(x_295); +x_297 = l_ReaderT_instMonad___redArg(x_296); +x_298 = l_Lean_Expr_fvarId_x21(x_285); +x_299 = lean_unsigned_to_nat(100u); +x_300 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_300, 0, x_298); +lean_closure_set(x_300, 1, x_299); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_301 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_300, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_301) == 0) +{ +lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +lean_dec_ref(x_301); +x_303 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_)); +x_304 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +x_305 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25)); +lean_inc_ref(x_297); +x_306 = l_Lean_isTracingEnabledFor___redArg(x_297, x_304, x_305, x_303); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_307 = lean_apply_7(x_306, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_307) == 0) +{ +lean_object* x_308; uint8_t x_309; +x_308 = lean_ctor_get(x_307, 0); +lean_inc(x_308); +lean_dec_ref(x_307); +x_309 = lean_unbox(x_308); +lean_dec(x_308); +if (x_309 == 0) +{ +lean_object* x_310; lean_object* x_311; +lean_dec_ref(x_297); +lean_dec_ref(x_33); +x_310 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_311 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_302, x_1, x_2, x_3, x_310, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_311; +goto block_28; +} +else +{ +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_312 = lean_ctor_get(x_302, 2); +x_313 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +x_314 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +switch (lean_obj_tag(x_312)) { +case 0: +{ +lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_325 = lean_ctor_get(x_312, 0); +x_326 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +lean_inc(x_325); +x_327 = l_Lean_MessageData_ofName(x_325); +x_328 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_328, 0, x_326); +lean_ctor_set(x_328, 1, x_327); +x_315 = x_328; +goto block_324; +} +case 1: +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_329 = lean_ctor_get(x_312, 0); +x_330 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +lean_inc(x_329); +x_331 = l_Lean_mkFVar(x_329); +x_332 = l_Lean_MessageData_ofExpr(x_331); +x_333 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_333, 0, x_330); +lean_ctor_set(x_333, 1, x_332); +x_315 = x_333; +goto block_324; +} +default: +{ +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_334 = lean_ctor_get(x_312, 1); +x_335 = lean_ctor_get(x_312, 2); +x_336 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +lean_inc(x_334); +x_337 = l_Lean_MessageData_ofSyntax(x_334); +x_338 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_338, 0, x_336); +lean_ctor_set(x_338, 1, x_337); +x_339 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___closed__17; +x_340 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_340, 0, x_338); +lean_ctor_set(x_340, 1, x_339); +lean_inc_ref(x_335); +x_341 = l_Lean_MessageData_ofExpr(x_335); +x_342 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_342, 0, x_340); +lean_ctor_set(x_342, 1, x_341); +x_315 = x_342; +goto block_324; +} +} +block_324: +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; +x_316 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_316, 0, x_314); +lean_ctor_set(x_316, 1, x_315); +x_317 = l_Lean_addTrace___redArg(x_297, x_304, x_33, x_313, x_303, x_316); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_318 = lean_apply_7(x_317, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_318) == 0) +{ +lean_object* x_319; lean_object* x_320; +x_319 = lean_ctor_get(x_318, 0); +lean_inc(x_319); +lean_dec_ref(x_318); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_320 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_302, x_1, x_2, x_3, x_319, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_320; +goto block_28; +} +else +{ +lean_object* x_321; lean_object* x_322; lean_object* x_323; +lean_dec(x_302); +x_321 = lean_ctor_get(x_318, 0); +lean_inc(x_321); +if (lean_is_exclusive(x_318)) { + lean_ctor_release(x_318, 0); + x_322 = x_318; +} else { + lean_dec_ref(x_318); + x_322 = lean_box(0); +} +lean_inc(x_321); +if (lean_is_scalar(x_322)) { + x_323 = lean_alloc_ctor(1, 1, 0); +} else { + x_323 = x_322; +} +lean_ctor_set(x_323, 0, x_321); +x_20 = x_323; +x_21 = x_321; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +else +{ +lean_object* x_343; lean_object* x_344; lean_object* x_345; +lean_dec(x_302); +lean_dec_ref(x_297); +lean_dec_ref(x_33); +x_343 = lean_ctor_get(x_307, 0); +lean_inc(x_343); +if (lean_is_exclusive(x_307)) { + lean_ctor_release(x_307, 0); + x_344 = x_307; +} else { + lean_dec_ref(x_307); + x_344 = lean_box(0); +} +lean_inc(x_343); +if (lean_is_scalar(x_344)) { + x_345 = lean_alloc_ctor(1, 1, 0); +} else { + x_345 = x_344; +} +lean_ctor_set(x_345, 0, x_343); +x_20 = x_345; +x_21 = x_343; +x_22 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; +lean_dec_ref(x_297); +lean_dec_ref(x_33); +x_346 = lean_ctor_get(x_301, 0); +lean_inc(x_346); +if (lean_is_exclusive(x_301)) { + lean_ctor_release(x_301, 0); + x_347 = x_301; +} else { + lean_dec_ref(x_301); + x_347 = lean_box(0); +} +lean_inc(x_346); +if (lean_is_scalar(x_347)) { + x_348 = lean_alloc_ctor(1, 1, 0); +} else { + x_348 = x_347; +} +lean_ctor_set(x_348, 0, x_346); +x_20 = x_348; +x_21 = x_346; +x_22 = lean_box(0); +goto block_25; +} +} +} +else +{ +lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; +x_349 = lean_ctor_get(x_34, 0); +lean_inc(x_349); +lean_dec(x_34); +x_350 = lean_ctor_get(x_349, 0); +lean_inc_ref(x_350); +x_351 = lean_ctor_get(x_349, 2); +lean_inc(x_351); +x_352 = lean_ctor_get(x_349, 3); +lean_inc(x_352); +x_353 = lean_ctor_get(x_349, 4); +lean_inc(x_353); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + lean_ctor_release(x_349, 1); + lean_ctor_release(x_349, 2); + lean_ctor_release(x_349, 3); + lean_ctor_release(x_349, 4); + x_354 = x_349; +} else { + lean_dec_ref(x_349); + x_354 = lean_box(0); +} +x_355 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__9)); +x_356 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__10)); +lean_inc_ref(x_350); +x_357 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_357, 0, x_350); +x_358 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_358, 0, x_350); +x_359 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_359, 0, x_357); +lean_ctor_set(x_359, 1, x_358); +x_360 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_360, 0, x_353); +x_361 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_361, 0, x_352); +x_362 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_362, 0, x_351); +if (lean_is_scalar(x_354)) { + x_363 = lean_alloc_ctor(0, 5, 0); +} else { + x_363 = x_354; +} +lean_ctor_set(x_363, 0, x_359); +lean_ctor_set(x_363, 1, x_355); +lean_ctor_set(x_363, 2, x_362); +lean_ctor_set(x_363, 3, x_361); +lean_ctor_set(x_363, 4, x_360); +x_364 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_364, 0, x_363); +lean_ctor_set(x_364, 1, x_356); +x_365 = l_ReaderT_instMonad___redArg(x_364); +x_366 = lean_ctor_get(x_365, 0); +lean_inc_ref(x_366); +if (lean_is_exclusive(x_365)) { + lean_ctor_release(x_365, 0); + lean_ctor_release(x_365, 1); + x_367 = x_365; +} else { + lean_dec_ref(x_365); + x_367 = lean_box(0); +} +x_368 = lean_ctor_get(x_366, 0); +lean_inc_ref(x_368); +x_369 = lean_ctor_get(x_366, 2); +lean_inc(x_369); +x_370 = lean_ctor_get(x_366, 3); +lean_inc(x_370); +x_371 = lean_ctor_get(x_366, 4); +lean_inc(x_371); +if (lean_is_exclusive(x_366)) { + lean_ctor_release(x_366, 0); + lean_ctor_release(x_366, 1); + lean_ctor_release(x_366, 2); + lean_ctor_release(x_366, 3); + lean_ctor_release(x_366, 4); + x_372 = x_366; +} else { + lean_dec_ref(x_366); + x_372 = lean_box(0); +} +x_373 = lean_array_fget_borrowed(x_1, x_4); +x_374 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__11)); +x_375 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__12)); +lean_inc_ref(x_368); +x_376 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__0), 6, 1); +lean_closure_set(x_376, 0, x_368); +x_377 = lean_alloc_closure((void*)(l_ReaderT_instFunctorOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_377, 0, x_368); +x_378 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_378, 0, x_376); +lean_ctor_set(x_378, 1, x_377); +x_379 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__1), 6, 1); +lean_closure_set(x_379, 0, x_371); +x_380 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__3), 6, 1); +lean_closure_set(x_380, 0, x_370); +x_381 = lean_alloc_closure((void*)(l_ReaderT_instApplicativeOfMonad___redArg___lam__4), 6, 1); +lean_closure_set(x_381, 0, x_369); +if (lean_is_scalar(x_372)) { + x_382 = lean_alloc_ctor(0, 5, 0); +} else { + x_382 = x_372; +} +lean_ctor_set(x_382, 0, x_378); +lean_ctor_set(x_382, 1, x_374); +lean_ctor_set(x_382, 2, x_381); +lean_ctor_set(x_382, 3, x_380); +lean_ctor_set(x_382, 4, x_379); +if (lean_is_scalar(x_367)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_367; +} +lean_ctor_set(x_383, 0, x_382); +lean_ctor_set(x_383, 1, x_375); +x_384 = l_ReaderT_instMonad___redArg(x_383); +x_385 = l_ReaderT_instMonad___redArg(x_384); +x_386 = l_Lean_Expr_fvarId_x21(x_373); +x_387 = lean_unsigned_to_nat(100u); +x_388 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_388, 0, x_386); +lean_closure_set(x_388, 1, x_387); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_5); +x_389 = l_Lean_Elab_Tactic_Do_liftSimpM___redArg(x_388, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_389) == 0) +{ +lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; +x_390 = lean_ctor_get(x_389, 0); +lean_inc(x_390); +lean_dec_ref(x_389); +x_391 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn___closed__4_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_)); +x_392 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18; +x_393 = ((lean_object*)(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__25)); +lean_inc_ref(x_385); +x_394 = l_Lean_isTracingEnabledFor___redArg(x_385, x_392, x_393, x_391); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_395 = lean_apply_7(x_394, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_395) == 0) +{ +lean_object* x_396; uint8_t x_397; +x_396 = lean_ctor_get(x_395, 0); +lean_inc(x_396); +lean_dec_ref(x_395); +x_397 = lean_unbox(x_396); +lean_dec(x_396); +if (x_397 == 0) +{ +lean_object* x_398; lean_object* x_399; +lean_dec_ref(x_385); +lean_dec_ref(x_33); +x_398 = lean_box(0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_399 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_390, x_1, x_2, x_3, x_398, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_399; +goto block_28; +} +else +{ +lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; +x_400 = lean_ctor_get(x_390, 2); +x_401 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29; +x_402 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31; +switch (lean_obj_tag(x_400)) { +case 0: +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; +x_413 = lean_ctor_get(x_400, 0); +x_414 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33; +lean_inc(x_413); +x_415 = l_Lean_MessageData_ofName(x_413); +x_416 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_416, 0, x_414); +lean_ctor_set(x_416, 1, x_415); +x_403 = x_416; +goto block_412; +} +case 1: +{ +lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; +x_417 = lean_ctor_get(x_400, 0); +x_418 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35; +lean_inc(x_417); +x_419 = l_Lean_mkFVar(x_417); +x_420 = l_Lean_MessageData_ofExpr(x_419); +x_421 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_421, 0, x_418); +lean_ctor_set(x_421, 1, x_420); +x_403 = x_421; +goto block_412; +} +default: +{ +lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_422 = lean_ctor_get(x_400, 1); +x_423 = lean_ctor_get(x_400, 2); +x_424 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37; +lean_inc(x_422); +x_425 = l_Lean_MessageData_ofSyntax(x_422); +x_426 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_426, 0, x_424); +lean_ctor_set(x_426, 1, x_425); +x_427 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_Do_elabConfig_spec__0_spec__0___closed__17; +x_428 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_428, 0, x_426); +lean_ctor_set(x_428, 1, x_427); +lean_inc_ref(x_423); +x_429 = l_Lean_MessageData_ofExpr(x_423); +x_430 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_430, 0, x_428); +lean_ctor_set(x_430, 1, x_429); +x_403 = x_430; +goto block_412; +} +} +block_412: +{ +lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_404 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_404, 0, x_402); +lean_ctor_set(x_404, 1, x_403); +x_405 = l_Lean_addTrace___redArg(x_385, x_392, x_33, x_401, x_391, x_404); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +x_406 = lean_apply_7(x_405, x_5, x_6, x_7, x_8, x_9, x_10, lean_box(0)); +if (lean_obj_tag(x_406) == 0) +{ +lean_object* x_407; lean_object* x_408; +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +lean_dec_ref(x_406); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc_ref(x_3); +lean_inc(x_2); +x_408 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__1(x_4, x_390, x_1, x_2, x_3, x_407, x_5, x_6, x_7, x_8, x_9, x_10); +x_26 = x_408; +goto block_28; +} +else +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; +lean_dec(x_390); +x_409 = lean_ctor_get(x_406, 0); +lean_inc(x_409); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_410 = x_406; +} else { + lean_dec_ref(x_406); + x_410 = lean_box(0); +} +lean_inc(x_409); +if (lean_is_scalar(x_410)) { + x_411 = lean_alloc_ctor(1, 1, 0); +} else { + x_411 = x_410; +} +lean_ctor_set(x_411, 0, x_409); +x_20 = x_411; +x_21 = x_409; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +lean_dec(x_390); +lean_dec_ref(x_385); +lean_dec_ref(x_33); +x_431 = lean_ctor_get(x_395, 0); +lean_inc(x_431); +if (lean_is_exclusive(x_395)) { + lean_ctor_release(x_395, 0); + x_432 = x_395; +} else { + lean_dec_ref(x_395); + x_432 = lean_box(0); +} +lean_inc(x_431); +if (lean_is_scalar(x_432)) { + x_433 = lean_alloc_ctor(1, 1, 0); +} else { + x_433 = x_432; +} +lean_ctor_set(x_433, 0, x_431); +x_20 = x_433; +x_21 = x_431; +x_22 = lean_box(0); +goto block_25; +} +} +else +{ +lean_object* x_434; lean_object* x_435; lean_object* x_436; +lean_dec_ref(x_385); +lean_dec_ref(x_33); +x_434 = lean_ctor_get(x_389, 0); +lean_inc(x_434); +if (lean_is_exclusive(x_389)) { + lean_ctor_release(x_389, 0); + x_435 = x_389; +} else { + lean_dec_ref(x_389); + x_435 = lean_box(0); +} +lean_inc(x_434); +if (lean_is_scalar(x_435)) { + x_436 = lean_alloc_ctor(1, 1, 0); +} else { + x_436 = x_435; +} +lean_ctor_set(x_436, 0, x_434); +x_20 = x_436; +x_21 = x_434; +x_22 = lean_box(0); +goto block_25; +} +} +} +block_19: +{ +if (x_15 == 0) +{ +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec_ref(x_14); +lean_dec_ref(x_13); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_add(x_4, x_16); +lean_dec(x_4); +x_4 = x_17; +goto _start; +} +else +{ +lean_dec_ref(x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_13; +} +} +else +{ +lean_dec_ref(x_14); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_13; +} +} +block_25: +{ +uint8_t x_23; +x_23 = l_Lean_Exception_isInterrupt(x_21); +if (x_23 == 0) +{ +uint8_t x_24; +lean_inc_ref(x_21); +x_24 = l_Lean_Exception_isRuntime(x_21); +x_12 = lean_box(0); +x_13 = x_20; +x_14 = x_21; +x_15 = x_24; +goto block_19; +} +else +{ +x_12 = lean_box(0); +x_13 = x_20; +x_14 = x_21; +x_15 = x_23; +goto block_19; +} +} +block_28: +{ +if (lean_obj_tag(x_26) == 0) +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_20 = x_26; +x_21 = x_27; +x_22 = lean_box(0); +goto block_25; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__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) { +_start: +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_7); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_ctor_get(x_7, 1); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_add(x_1, x_16); +x_18 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_15, x_2); +lean_ctor_set(x_7, 1, x_18); +x_19 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(x_3, x_4, x_5, x_17, x_7, x_8, x_9, x_10, x_11, x_12); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; +x_20 = lean_ctor_get(x_7, 0); +x_21 = lean_ctor_get(x_7, 1); +x_22 = lean_ctor_get(x_7, 2); +x_23 = lean_ctor_get(x_7, 3); +x_24 = lean_ctor_get(x_7, 4); +x_25 = lean_ctor_get(x_7, 5); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_7); +x_26 = lean_unsigned_to_nat(1u); +x_27 = lean_nat_add(x_1, x_26); +x_28 = l_Lean_Elab_Tactic_Do_SpecAttr_SpecTheorems_add(x_21, x_2); +x_29 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_29, 0, x_20); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_29, 2, x_22); +lean_ctor_set(x_29, 3, x_23); +lean_ctor_set(x_29, 4, x_24); +lean_ctor_set(x_29, 5, x_25); +x_30 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(x_3, x_4, x_5, x_27, x_29, x_8, x_9, x_10, x_11, x_12); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__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___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___lam__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); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___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_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop(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_15; +x_15 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___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, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop(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_ref(x_4); +lean_dec_ref(x_3); +return x_15; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_match__1_splitter___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_dec(x_2); +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_1, 1); +lean_inc_ref(x_5); +lean_dec_ref(x_1); +x_6 = lean_apply_2(x_3, x_4, x_5); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_dec_ref(x_1); +x_9 = lean_apply_2(x_2, x_7, x_8); +return x_9; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_match__1_splitter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_match__1_splitter___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0(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) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg(x_1, x_2, x_3, x_11, x_4, x_5, x_6, x_7, x_8, x_9); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0___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_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec_ref(x_1); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +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; +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +lean_dec_ref(x_1); +x_6 = lean_ctor_get(x_2, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_2, 1); +lean_inc(x_7); +lean_dec_ref(x_2); +x_8 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg___lam__0___boxed), 10, 2); +lean_closure_set(x_8, 0, x_3); +lean_closure_set(x_8, 1, x_4); +x_9 = lean_apply_2(x_6, lean_box(0), x_8); +x_10 = lean_apply_1(x_7, lean_box(0)); +x_11 = lean_apply_4(x_5, lean_box(0), lean_box(0), x_9, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Do_withLocalSpecs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_Tactic_Do_withLocalSpecs___redArg(x_3, x_4, x_5, x_6); +return x_7; +} +} lean_object* initialize_Lean_Elab_Tactic_Simp(uint8_t builtin); lean_object* initialize_Lean_Elab_Tactic_Do_Attr(uint8_t builtin); +lean_object* initialize_Init_Omega(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Elab_Tactic_Do_VCGen_Basic(uint8_t builtin) { lean_object * res; @@ -10671,6 +12834,9 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Tactic_Do_Attr(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Omega(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); if (builtin) {res = l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_initFn_00___x40_Lean_Elab_Tactic_Do_VCGen_Basic_540456248____hygCtx___hyg_2_(); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -10791,6 +12957,46 @@ l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19 = _init_l_Lean_Elab_Tactic_Do_m lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__19); l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21 = _init_l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21(); lean_mark_persistent(l_Lean_Elab_Tactic_Do_mkSpecContext___closed__21); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__3); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__4); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__5); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__6); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__7); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__8); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__13); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__14); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__15); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__16); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__17); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__18); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__26); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__27); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__28); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__29); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__31); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__33); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__35); +l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37 = _init_l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Do_VCGen_Basic_0__Lean_Elab_Tactic_Do_withLocalSpecs_loop___redArg___closed__37); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Tactic/Grind/Main.c b/stage0/stdlib/Lean/Elab/Tactic/Grind/Main.c index 98c0411f83..4473d0e816 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Grind/Main.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Grind/Main.c @@ -535,9 +535,8 @@ LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00__private_Lean_Elab_Tactic_ static const lean_string_object l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 28, .m_capacity = 28, .m_length = 27, .m_data = "unknown `grind` attribute `"}; static const lean_object* l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__1___closed__0 = (const lean_object*)&l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__1___closed__0_value; static lean_object* l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__1___closed__1; -lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*); +lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_io_error_to_string(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___lam__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 const lean_string_object l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "grind"}; @@ -1096,6 +1095,7 @@ lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); lean_object* l_Array_append___redArg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_io_error_to_string(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalGrindTraceCore___lam__1(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*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalGrindTraceCore___lam__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalGrindTraceCore___lam__2(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*, lean_object*); @@ -9173,7 +9173,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Ta _start: { lean_object* x_13; -x_13 = l_Lean_Meta_Grind_getExtension_x3f(x_1); +x_13 = l_Lean_Meta_Grind_getExtension_x3f(x_1, x_10, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -9309,6 +9309,7 @@ else { uint8_t x_38; lean_dec(x_11); +lean_dec_ref(x_10); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_7); @@ -9320,40 +9321,17 @@ lean_dec(x_1); x_38 = !lean_is_exclusive(x_13); if (x_38 == 0) { -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_39 = lean_ctor_get(x_13, 0); -x_40 = lean_ctor_get(x_10, 5); -lean_inc(x_40); -lean_dec_ref(x_10); -x_41 = lean_io_error_to_string(x_39); -x_42 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_42, 0, x_41); -x_43 = l_Lean_MessageData_ofFormat(x_42); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_40); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_13, 0, x_44); return x_13; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_45 = lean_ctor_get(x_13, 0); -lean_inc(x_45); +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_13, 0); +lean_inc(x_39); lean_dec(x_13); -x_46 = lean_ctor_get(x_10, 5); -lean_inc(x_46); -lean_dec_ref(x_10); -x_47 = lean_io_error_to_string(x_45); -x_48 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_48, 0, x_47); -x_49 = l_Lean_MessageData_ofFormat(x_48); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_46); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_51, 0, x_50); -return x_51; +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +return x_40; } } } @@ -9909,9 +9887,9 @@ else lean_object* x_92; x_92 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_92, 0, x_88); -x_16 = x_82; -x_17 = x_72; -x_18 = x_77; +x_16 = x_77; +x_17 = x_82; +x_18 = x_72; x_19 = x_92; x_20 = x_73; x_21 = x_74; @@ -9925,9 +9903,9 @@ else lean_object* x_93; lean_dec(x_84); x_93 = lean_box(0); -x_16 = x_82; -x_17 = x_72; -x_18 = x_77; +x_16 = x_77; +x_17 = x_82; +x_18 = x_72; x_19 = x_93; x_20 = x_73; x_21 = x_74; @@ -10068,9 +10046,9 @@ else lean_object* x_148; x_148 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_148, 0, x_144); -x_5 = x_138; -x_6 = x_128; -x_7 = x_133; +x_5 = x_133; +x_6 = x_138; +x_7 = x_128; x_8 = x_148; x_9 = x_129; x_10 = x_130; @@ -10084,9 +10062,9 @@ else lean_object* x_149; lean_dec(x_140); x_149 = lean_box(0); -x_5 = x_138; -x_6 = x_128; -x_7 = x_133; +x_5 = x_133; +x_6 = x_138; +x_7 = x_128; x_8 = x_149; x_9 = x_129; x_10 = x_130; @@ -10101,21 +10079,21 @@ goto block_15; block_15: { lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_12 = l_Lean_Syntax_getArgs(x_5); -lean_dec(x_5); -x_13 = 0; -x_14 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go(x_6, x_7, x_12, x_8, x_13, x_9, x_10); +x_12 = l_Lean_Syntax_getArgs(x_6); lean_dec(x_6); +x_13 = 0; +x_14 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go(x_7, x_5, x_12, x_8, x_13, x_9, x_10); +lean_dec(x_7); return x_14; } block_26: { lean_object* x_23; uint8_t x_24; lean_object* x_25; -x_23 = l_Lean_Syntax_getArgs(x_16); -lean_dec(x_16); -x_24 = 1; -x_25 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go(x_17, x_18, x_23, x_19, x_24, x_20, x_21); +x_23 = l_Lean_Syntax_getArgs(x_17); lean_dec(x_17); +x_24 = 1; +x_25 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindPattern_go(x_18, x_16, x_23, x_19, x_24, x_20, x_21); +lean_dec(x_18); return x_25; } block_37: @@ -12185,8 +12163,8 @@ if (x_46 == 0) uint8_t x_47; lean_inc(x_45); x_47 = l_Lean_Exception_isRuntime(x_45); -x_16 = x_31; -x_17 = lean_box(0); +x_16 = lean_box(0); +x_17 = x_31; x_18 = x_45; x_19 = x_30; x_20 = x_47; @@ -12194,8 +12172,8 @@ goto block_23; } else { -x_16 = x_31; -x_17 = lean_box(0); +x_16 = lean_box(0); +x_17 = x_31; x_18 = x_45; x_19 = x_30; x_20 = x_46; @@ -12221,7 +12199,7 @@ lean_object* x_21; lean_dec_ref(x_18); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_19); -lean_ctor_set(x_21, 1, x_16); +lean_ctor_set(x_21, 1, x_17); x_10 = x_21; x_11 = lean_box(0); goto block_15; @@ -12230,7 +12208,7 @@ else { lean_object* x_22; lean_dec_ref(x_19); -lean_dec_ref(x_16); +lean_dec_ref(x_17); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); @@ -13771,7 +13749,7 @@ goto _start; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_mkGrindParams(lean_object* x_1, uint8_t 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: { -uint8_t x_12; lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_116; uint8_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +uint8_t x_12; lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_116; uint8_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_127; uint8_t x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; if (x_2 == 0) { lean_object* x_169; @@ -14184,22 +14162,22 @@ return x_124; block_143: { lean_object* x_136; -lean_inc(x_129); -lean_inc_ref(x_130); +lean_inc(x_132); +lean_inc_ref(x_131); lean_inc(x_133); lean_inc_ref(x_134); -x_136 = l_Lean_LibrarySuggestions_select(x_4, x_135, x_134, x_133, x_130, x_129); +x_136 = l_Lean_LibrarySuggestions_select(x_4, x_135, x_134, x_133, x_131, x_132); if (lean_obj_tag(x_136) == 0) { lean_object* x_137; lean_object* x_138; x_137 = lean_ctor_get(x_136, 0); lean_inc(x_137); lean_dec_ref(x_136); -lean_inc(x_129); -lean_inc_ref(x_130); +lean_inc(x_132); +lean_inc_ref(x_131); lean_inc(x_133); lean_inc_ref(x_134); -x_138 = l_Lean_Elab_Tactic_elabGrindSuggestions(x_131, x_137, x_134, x_133, x_130, x_129); +x_138 = l_Lean_Elab_Tactic_elabGrindSuggestions(x_129, x_137, x_134, x_133, x_131, x_132); lean_dec(x_137); if (lean_obj_tag(x_138) == 0) { @@ -14207,13 +14185,13 @@ lean_object* x_139; x_139 = lean_ctor_get(x_138, 0); lean_inc(x_139); lean_dec_ref(x_138); -x_116 = x_127; -x_117 = x_132; +x_116 = x_128; +x_117 = x_130; x_118 = x_139; x_119 = x_134; x_120 = x_133; -x_121 = x_130; -x_122 = x_129; +x_121 = x_131; +x_122 = x_132; x_123 = lean_box(0); goto block_126; } @@ -14221,8 +14199,8 @@ else { lean_dec_ref(x_134); lean_dec(x_133); -lean_dec_ref(x_130); -lean_dec(x_129); +lean_dec(x_132); +lean_dec_ref(x_131); return x_138; } } @@ -14231,9 +14209,9 @@ else uint8_t x_140; lean_dec_ref(x_134); lean_dec(x_133); +lean_dec(x_132); lean_dec_ref(x_131); -lean_dec_ref(x_130); -lean_dec(x_129); +lean_dec_ref(x_129); x_140 = !lean_is_exclusive(x_136); if (x_140 == 0) { @@ -14306,12 +14284,12 @@ lean_ctor_set(x_165, 0, x_164); lean_ctor_set(x_165, 1, x_162); lean_ctor_set(x_165, 2, x_161); lean_ctor_set(x_165, 3, x_163); -x_127 = x_154; -x_128 = lean_box(0); -x_129 = x_150; -x_130 = x_149; -x_131 = x_159; -x_132 = x_156; +x_127 = lean_box(0); +x_128 = x_154; +x_129 = x_159; +x_130 = x_156; +x_131 = x_149; +x_132 = x_150; x_133 = x_148; x_134 = x_147; x_135 = x_165; @@ -14328,12 +14306,12 @@ lean_ctor_set(x_167, 0, x_166); lean_ctor_set(x_167, 1, x_162); lean_ctor_set(x_167, 2, x_161); lean_ctor_set(x_167, 3, x_163); -x_127 = x_154; -x_128 = lean_box(0); -x_129 = x_150; -x_130 = x_149; -x_131 = x_159; -x_132 = x_156; +x_127 = lean_box(0); +x_128 = x_154; +x_129 = x_159; +x_130 = x_156; +x_131 = x_149; +x_132 = x_150; x_133 = x_148; x_134 = x_147; x_135 = x_167; @@ -16513,7 +16491,7 @@ return x_7; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_logWarningAt___at___00Lean_Elab_Tactic_evalGrindCore_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t 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_50; uint8_t x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -16548,15 +16526,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_12); +lean_ctor_set(x_26, 1, x_16); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_15); -lean_ctor_set(x_27, 1, x_13); -lean_ctor_set(x_27, 2, x_16); -lean_ctor_set(x_27, 3, x_11); +lean_ctor_set(x_27, 0, x_12); +lean_ctor_set(x_27, 1, x_11); +lean_ctor_set(x_27, 2, x_14); +lean_ctor_set(x_27, 3, x_13); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -16593,15 +16571,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_12); +lean_ctor_set(x_42, 1, x_16); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_15); -lean_ctor_set(x_43, 1, x_13); -lean_ctor_set(x_43, 2, x_16); -lean_ctor_set(x_43, 3, x_11); +lean_ctor_set(x_43, 0, x_12); +lean_ctor_set(x_43, 1, x_11); +lean_ctor_set(x_43, 2, x_14); +lean_ctor_set(x_43, 3, x_13); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_14); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_10); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_10); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_15); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -16631,25 +16609,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_55); -x_62 = l_Lean_FileMap_toPosition(x_55, x_56); -lean_dec(x_56); -x_63 = l_Lean_FileMap_toPosition(x_55, x_57); +lean_inc_ref(x_56); +x_62 = l_Lean_FileMap_toPosition(x_56, x_53); +lean_dec(x_53); +x_63 = l_Lean_FileMap_toPosition(x_56, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabGrindConfig_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_51 == 0) +if (x_54 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_52; -x_11 = x_65; -x_12 = x_61; -x_13 = x_62; -x_14 = x_53; -x_15 = x_54; -x_16 = x_64; +x_10 = x_51; +x_11 = x_62; +x_12 = x_52; +x_13 = x_65; +x_14 = x_64; +x_15 = x_55; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -16666,7 +16644,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_54); +lean_dec_ref(x_52); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -16675,13 +16653,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_52; -x_11 = x_65; -x_12 = x_61; -x_13 = x_62; -x_14 = x_53; -x_15 = x_54; -x_16 = x_64; +x_10 = x_51; +x_11 = x_62; +x_12 = x_52; +x_13 = x_65; +x_14 = x_64; +x_15 = x_55; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -16695,24 +16673,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_55); -x_69 = l_Lean_FileMap_toPosition(x_55, x_56); -lean_dec(x_56); -x_70 = l_Lean_FileMap_toPosition(x_55, x_57); +lean_inc_ref(x_56); +x_69 = l_Lean_FileMap_toPosition(x_56, x_53); +lean_dec(x_53); +x_70 = l_Lean_FileMap_toPosition(x_56, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabGrindConfig_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_51 == 0) +if (x_54 == 0) { lean_dec_ref(x_50); -x_10 = x_52; -x_11 = x_72; -x_12 = x_68; -x_13 = x_69; -x_14 = x_53; -x_15 = x_54; -x_16 = x_71; +x_10 = x_51; +x_11 = x_69; +x_12 = x_52; +x_13 = x_72; +x_14 = x_71; +x_15 = x_55; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -16729,7 +16707,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_54); +lean_dec_ref(x_52); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -16738,13 +16716,13 @@ return x_75; } else { -x_10 = x_52; -x_11 = x_72; -x_12 = x_68; -x_13 = x_69; -x_14 = x_53; -x_15 = x_54; -x_16 = x_71; +x_10 = x_51; +x_11 = x_69; +x_12 = x_52; +x_13 = x_72; +x_14 = x_71; +x_15 = x_55; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -16756,18 +16734,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_80, x_81); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_80, x_78); lean_dec(x_80); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; -x_51 = x_79; -x_52 = x_78; -x_53 = x_81; -x_54 = x_82; +x_51 = x_78; +x_52 = x_79; +x_53 = x_84; +x_54 = x_81; x_55 = x_83; -x_56 = x_84; +x_56 = x_82; x_57 = x_84; goto block_76; } @@ -16778,12 +16756,12 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; -x_51 = x_79; -x_52 = x_78; -x_53 = x_81; -x_54 = x_82; +x_51 = x_78; +x_52 = x_79; +x_53 = x_84; +x_54 = x_81; x_55 = x_83; -x_56 = x_84; +x_56 = x_82; x_57 = x_86; goto block_76; } @@ -16791,20 +16769,20 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_93); -lean_dec(x_93); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_90); +x_95 = l_Lean_replaceRef(x_1, x_92); +lean_dec(x_92); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_89); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; -x_78 = x_94; -x_79 = x_89; +x_78 = x_89; +x_79 = x_90; x_80 = x_95; -x_81 = x_90; -x_82 = x_91; -x_83 = x_92; +x_81 = x_91; +x_82 = x_93; +x_83 = x_94; x_84 = x_97; goto block_87; } @@ -16815,12 +16793,12 @@ x_98 = lean_ctor_get(x_96, 0); lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; -x_78 = x_94; -x_79 = x_89; +x_78 = x_89; +x_79 = x_90; x_80 = x_95; -x_81 = x_90; -x_82 = x_91; -x_83 = x_92; +x_81 = x_91; +x_82 = x_93; +x_83 = x_94; x_84 = x_98; goto block_87; } @@ -16829,23 +16807,23 @@ block_108: { if (x_107 == 0) { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; -x_92 = x_104; -x_93 = x_103; +x_88 = x_101; +x_89 = x_106; +x_90 = x_102; +x_91 = x_104; +x_92 = x_103; +x_93 = x_105; x_94 = x_3; goto block_99; } else { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; -x_92 = x_104; -x_93 = x_103; +x_88 = x_101; +x_89 = x_106; +x_90 = x_102; +x_91 = x_104; +x_92 = x_103; +x_93 = x_105; x_94 = x_100; goto block_99; } @@ -16872,11 +16850,11 @@ if (x_119 == 0) lean_inc_ref(x_111); lean_inc(x_113); lean_inc_ref(x_110); -x_101 = x_114; +x_101 = x_117; x_102 = x_110; x_103 = x_113; -x_104 = x_111; -x_105 = x_117; +x_104 = x_114; +x_105 = x_111; x_106 = x_109; x_107 = x_119; goto block_108; @@ -16889,11 +16867,11 @@ x_121 = l_Lean_Option_get___at___00Lean_Elab_addMacroStack___at___00Lean_throwEr lean_inc_ref(x_111); lean_inc(x_113); lean_inc_ref(x_110); -x_101 = x_114; +x_101 = x_117; x_102 = x_110; x_103 = x_113; -x_104 = x_111; -x_105 = x_117; +x_104 = x_114; +x_105 = x_111; x_106 = x_109; x_107 = x_121; goto block_108; @@ -18433,18 +18411,18 @@ if (lean_is_scalar(x_14)) { lean_ctor_set_tag(x_64, 1); } lean_ctor_set(x_64, 0, x_60); -x_20 = x_47; -x_21 = x_52; -x_22 = x_45; -x_23 = x_53; -x_24 = lean_box(0); -x_25 = x_49; -x_26 = x_44; -x_27 = x_64; -x_28 = x_50; -x_29 = x_51; -x_30 = x_48; -x_31 = x_46; +x_20 = lean_box(0); +x_21 = x_48; +x_22 = x_53; +x_23 = x_51; +x_24 = x_46; +x_25 = x_64; +x_26 = x_45; +x_27 = x_50; +x_28 = x_49; +x_29 = x_47; +x_30 = x_44; +x_31 = x_52; x_32 = x_41; goto block_39; } @@ -18456,18 +18434,18 @@ lean_object* x_65; lean_dec(x_56); lean_dec(x_14); x_65 = lean_box(0); -x_20 = x_47; -x_21 = x_52; -x_22 = x_45; -x_23 = x_53; -x_24 = lean_box(0); -x_25 = x_49; -x_26 = x_44; -x_27 = x_65; -x_28 = x_50; -x_29 = x_51; -x_30 = x_48; -x_31 = x_46; +x_20 = lean_box(0); +x_21 = x_48; +x_22 = x_53; +x_23 = x_51; +x_24 = x_46; +x_25 = x_65; +x_26 = x_45; +x_27 = x_50; +x_28 = x_49; +x_29 = x_47; +x_30 = x_44; +x_31 = x_52; x_32 = x_12; goto block_39; } @@ -18548,22 +18526,22 @@ goto block_66; block_39: { lean_object* x_33; +lean_inc(x_22); +lean_inc_ref(x_31); lean_inc(x_23); +lean_inc_ref(x_27); +lean_inc(x_28); lean_inc_ref(x_21); -lean_inc(x_29); -lean_inc_ref(x_28); -lean_inc(x_25); -lean_inc_ref(x_30); -x_33 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindConfig_x27___redArg(x_19, x_32, x_31, x_30, x_25, x_28, x_29, x_21, x_23); +x_33 = l___private_Lean_Elab_Tactic_Grind_Main_0__Lean_Elab_Tactic_elabGrindConfig_x27___redArg(x_19, x_32, x_24, x_21, x_28, x_27, x_23, x_31, x_22); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); lean_dec_ref(x_33); -x_35 = l_Lean_Elab_Tactic_evalGrindCore(x_1, x_34, x_26, x_22, x_27, x_31, x_20, x_30, x_25, x_28, x_29, x_21, x_23); -lean_dec(x_22); +x_35 = l_Lean_Elab_Tactic_evalGrindCore(x_1, x_34, x_30, x_26, x_25, x_24, x_29, x_21, x_28, x_27, x_23, x_31, x_22); lean_dec(x_26); +lean_dec(x_30); lean_dec(x_1); return x_35; } @@ -18571,16 +18549,16 @@ else { uint8_t x_36; lean_dec_ref(x_31); -lean_dec_ref(x_30); +lean_dec(x_30); lean_dec(x_29); -lean_dec_ref(x_28); -lean_dec(x_27); +lean_dec(x_28); +lean_dec_ref(x_27); lean_dec(x_26); lean_dec(x_25); +lean_dec_ref(x_24); lean_dec(x_23); lean_dec(x_22); lean_dec_ref(x_21); -lean_dec(x_20); lean_dec(x_1); x_36 = !lean_is_exclusive(x_33); if (x_36 == 0) @@ -20937,9 +20915,9 @@ block_29: { lean_object* x_27; x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_15); +lean_ctor_set(x_27, 0, x_16); lean_ctor_set(x_27, 1, x_4); -x_3 = x_16; +x_3 = x_15; x_4 = x_27; x_5 = x_17; x_6 = x_18; @@ -20988,8 +20966,8 @@ if (x_44 == 0) { uint8_t x_45; x_45 = 1; -x_15 = x_38; -x_16 = x_37; +x_15 = x_37; +x_16 = x_38; x_17 = x_45; x_18 = x_6; x_19 = x_7; @@ -21004,8 +20982,8 @@ goto block_29; } else { -x_15 = x_38; -x_16 = x_37; +x_15 = x_37; +x_16 = x_38; x_17 = x_5; x_18 = x_6; x_19 = x_7; @@ -21053,8 +21031,8 @@ lean_inc(x_49); x_50 = lean_ctor_get(x_3, 1); lean_inc_ref(x_50); lean_dec_ref(x_3); -x_15 = x_50; -x_16 = x_49; +x_15 = x_49; +x_16 = x_50; x_17 = x_5; x_18 = x_6; x_19 = x_7; @@ -21657,7 +21635,7 @@ return x_18; } else { -lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t 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; lean_object* x_34; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t 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_64; lean_object* x_65; uint8_t x_66; +lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; uint8_t 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; lean_object* x_34; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t 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_64; lean_object* x_65; uint8_t x_66; x_19 = lean_unsigned_to_nat(1u); x_20 = l_Lean_Syntax_getArg(x_2, x_19); x_64 = ((lean_object*)(l_Lean_Elab_Tactic_evalGrind___closed__3)); @@ -21765,15 +21743,15 @@ if (x_84 == 0) x_21 = x_69; x_22 = x_71; x_23 = x_70; -x_24 = x_72; -x_25 = x_81; -x_26 = x_73; -x_27 = x_74; -x_28 = x_75; -x_29 = x_76; -x_30 = x_77; -x_31 = x_79; -x_32 = x_80; +x_24 = x_73; +x_25 = x_72; +x_26 = x_75; +x_27 = x_76; +x_28 = x_77; +x_29 = x_78; +x_30 = x_81; +x_31 = x_80; +x_32 = x_79; x_33 = x_83; x_34 = lean_box(0); goto block_48; @@ -21789,15 +21767,15 @@ if (x_84 == 0) x_21 = x_69; x_22 = x_71; x_23 = x_70; -x_24 = x_72; -x_25 = x_81; -x_26 = x_73; -x_27 = x_74; -x_28 = x_75; -x_29 = x_76; -x_30 = x_77; -x_31 = x_79; -x_32 = x_80; +x_24 = x_73; +x_25 = x_72; +x_26 = x_75; +x_27 = x_76; +x_28 = x_77; +x_29 = x_78; +x_30 = x_81; +x_31 = x_80; +x_32 = x_79; x_33 = x_83; x_34 = lean_box(0); goto block_48; @@ -21807,19 +21785,19 @@ else size_t x_86; size_t x_87; lean_object* x_88; x_86 = 0; x_87 = lean_usize_of_nat(x_82); -lean_inc_ref(x_75); -lean_inc_ref(x_72); -x_88 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_evalGrindTraceCore_spec__2(x_81, x_86, x_87, x_83, x_77, x_70, x_71, x_74, x_72, x_80, x_75, x_76); +lean_inc_ref(x_71); +lean_inc_ref(x_70); +x_88 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_evalGrindTraceCore_spec__2(x_81, x_86, x_87, x_83, x_77, x_75, x_78, x_76, x_70, x_79, x_71, x_80); x_49 = x_69; x_50 = x_70; x_51 = x_71; x_52 = x_72; -x_53 = x_81; -x_54 = x_73; -x_55 = x_74; -x_56 = x_75; -x_57 = x_76; -x_58 = x_77; +x_53 = x_73; +x_54 = x_75; +x_55 = x_76; +x_56 = x_77; +x_57 = x_81; +x_58 = x_78; x_59 = x_79; x_60 = x_80; x_61 = x_88; @@ -21831,19 +21809,19 @@ else size_t x_89; size_t x_90; lean_object* x_91; x_89 = 0; x_90 = lean_usize_of_nat(x_82); -lean_inc_ref(x_75); -lean_inc_ref(x_72); -x_91 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_evalGrindTraceCore_spec__2(x_81, x_89, x_90, x_83, x_77, x_70, x_71, x_74, x_72, x_80, x_75, x_76); +lean_inc_ref(x_71); +lean_inc_ref(x_70); +x_91 = l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Elab_Tactic_evalGrindTraceCore_spec__2(x_81, x_89, x_90, x_83, x_77, x_75, x_78, x_76, x_70, x_79, x_71, x_80); x_49 = x_69; x_50 = x_70; x_51 = x_71; x_52 = x_72; -x_53 = x_81; -x_54 = x_73; -x_55 = x_74; -x_56 = x_75; -x_57 = x_76; -x_58 = x_77; +x_53 = x_73; +x_54 = x_75; +x_55 = x_76; +x_56 = x_77; +x_57 = x_81; +x_58 = x_78; x_59 = x_79; x_60 = x_80; x_61 = x_91; @@ -21853,12 +21831,12 @@ goto block_63; } block_109: { -if (lean_obj_tag(x_97) == 1) +if (lean_obj_tag(x_102) == 1) { lean_object* x_106; lean_object* x_107; -x_106 = lean_ctor_get(x_97, 0); +x_106 = lean_ctor_get(x_102, 0); lean_inc(x_106); -lean_dec_ref(x_97); +lean_dec_ref(x_102); x_107 = l_Lean_Syntax_TSepArray_getElems___redArg(x_106); lean_dec(x_106); x_69 = x_93; @@ -21866,33 +21844,33 @@ x_70 = x_95; x_71 = x_94; x_72 = x_96; x_73 = x_105; -x_74 = x_98; -x_75 = x_99; -x_76 = x_100; -x_77 = x_101; -x_78 = lean_box(0); -x_79 = x_103; -x_80 = x_104; +x_74 = lean_box(0); +x_75 = x_98; +x_76 = x_99; +x_77 = x_100; +x_78 = x_101; +x_79 = x_104; +x_80 = x_103; x_81 = x_107; goto block_92; } else { lean_object* x_108; -lean_dec(x_97); +lean_dec(x_102); x_108 = l_Lean_Elab_Tactic_evalGrindCore___closed__3; x_69 = x_93; x_70 = x_95; x_71 = x_94; x_72 = x_96; x_73 = x_105; -x_74 = x_98; -x_75 = x_99; -x_76 = x_100; -x_77 = x_101; -x_78 = lean_box(0); -x_79 = x_103; -x_80 = x_104; +x_74 = lean_box(0); +x_75 = x_98; +x_76 = x_99; +x_77 = x_100; +x_78 = x_101; +x_79 = x_104; +x_80 = x_103; x_81 = x_108; goto block_92; } @@ -21926,16 +21904,16 @@ lean_ctor_set_uint8(x_122, sizeof(void*)*11 + 27, x_8); if (lean_obj_tag(x_110) == 0) { x_93 = x_124; -x_94 = x_114; -x_95 = x_113; -x_96 = x_116; -x_97 = x_111; -x_98 = x_115; -x_99 = x_118; -x_100 = x_119; -x_101 = x_112; -x_102 = lean_box(0); -x_103 = x_122; +x_94 = x_118; +x_95 = x_116; +x_96 = x_122; +x_97 = lean_box(0); +x_98 = x_113; +x_99 = x_115; +x_100 = x_112; +x_101 = x_114; +x_102 = x_111; +x_103 = x_119; x_104 = x_117; x_105 = x_124; goto block_109; @@ -21944,16 +21922,16 @@ else { lean_dec_ref(x_110); x_93 = x_124; -x_94 = x_114; -x_95 = x_113; -x_96 = x_116; -x_97 = x_111; -x_98 = x_115; -x_99 = x_118; -x_100 = x_119; -x_101 = x_112; -x_102 = lean_box(0); -x_103 = x_122; +x_94 = x_118; +x_95 = x_116; +x_96 = x_122; +x_97 = lean_box(0); +x_98 = x_113; +x_99 = x_115; +x_100 = x_112; +x_101 = x_114; +x_102 = x_111; +x_103 = x_119; x_104 = x_117; x_105 = x_66; goto block_109; @@ -22059,16 +22037,16 @@ lean_ctor_set_uint8(x_164, sizeof(void*)*11 + 30, x_161); if (lean_obj_tag(x_110) == 0) { x_93 = x_163; -x_94 = x_114; -x_95 = x_113; -x_96 = x_116; -x_97 = x_111; -x_98 = x_115; -x_99 = x_118; -x_100 = x_119; -x_101 = x_112; -x_102 = lean_box(0); -x_103 = x_164; +x_94 = x_118; +x_95 = x_116; +x_96 = x_164; +x_97 = lean_box(0); +x_98 = x_113; +x_99 = x_115; +x_100 = x_112; +x_101 = x_114; +x_102 = x_111; +x_103 = x_119; x_104 = x_117; x_105 = x_163; goto block_109; @@ -22077,16 +22055,16 @@ else { lean_dec_ref(x_110); x_93 = x_163; -x_94 = x_114; -x_95 = x_113; -x_96 = x_116; -x_97 = x_111; -x_98 = x_115; -x_99 = x_118; -x_100 = x_119; -x_101 = x_112; -x_102 = lean_box(0); -x_103 = x_164; +x_94 = x_118; +x_95 = x_116; +x_96 = x_164; +x_97 = lean_box(0); +x_98 = x_113; +x_99 = x_115; +x_100 = x_112; +x_101 = x_114; +x_102 = x_111; +x_103 = x_119; x_104 = x_117; x_105 = x_66; goto block_109; @@ -22204,23 +22182,23 @@ goto block_168; block_48: { lean_object* x_35; -x_35 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_23, x_24, x_32, x_28, x_29); +x_35 = l_Lean_Elab_Tactic_getMainGoal___redArg(x_26, x_23, x_32, x_22, x_31); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); lean_dec_ref(x_35); -lean_inc(x_29); -lean_inc_ref(x_28); -lean_inc(x_32); -lean_inc_ref(x_24); -lean_inc(x_27); +lean_inc(x_31); lean_inc_ref(x_22); +lean_inc(x_32); +lean_inc_ref(x_23); +lean_inc(x_27); +lean_inc_ref(x_29); lean_inc(x_36); -lean_inc_ref(x_31); -x_37 = l_Lean_Elab_Tactic_mkGrindParams(x_31, x_26, x_25, x_36, x_22, x_27, x_24, x_32, x_28, x_29); -lean_dec_ref(x_25); +lean_inc_ref(x_25); +x_37 = l_Lean_Elab_Tactic_mkGrindParams(x_25, x_24, x_30, x_36, x_29, x_27, x_23, x_32, x_22, x_31); +lean_dec_ref(x_30); if (lean_obj_tag(x_37) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; @@ -22237,7 +22215,7 @@ lean_closure_set(x_40, 4, x_4); lean_closure_set(x_40, 5, x_5); lean_closure_set(x_40, 6, x_38); lean_closure_set(x_40, 7, x_19); -x_41 = l_Lean_Meta_Grind_withProtectedMCtx___at___00Lean_Elab_Tactic_grind_spec__1___redArg(x_31, x_36, x_40, x_30, x_23, x_22, x_27, x_24, x_32, x_28, x_29); +x_41 = l_Lean_Meta_Grind_withProtectedMCtx___at___00Lean_Elab_Tactic_grind_spec__1___redArg(x_25, x_36, x_40, x_28, x_26, x_29, x_27, x_23, x_32, x_22, x_31); return x_41; } else @@ -22246,13 +22224,13 @@ uint8_t x_42; lean_dec(x_36); lean_dec_ref(x_33); lean_dec(x_32); -lean_dec_ref(x_31); -lean_dec_ref(x_30); -lean_dec(x_29); +lean_dec(x_31); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec(x_27); -lean_dec_ref(x_24); -lean_dec(x_23); +lean_dec(x_26); +lean_dec_ref(x_25); +lean_dec_ref(x_23); lean_dec_ref(x_22); lean_dec(x_20); lean_dec_ref(x_5); @@ -22280,14 +22258,14 @@ else uint8_t x_45; lean_dec_ref(x_33); lean_dec(x_32); -lean_dec_ref(x_31); +lean_dec(x_31); lean_dec_ref(x_30); -lean_dec(x_29); +lean_dec_ref(x_29); lean_dec_ref(x_28); lean_dec(x_27); +lean_dec(x_26); lean_dec_ref(x_25); -lean_dec_ref(x_24); -lean_dec(x_23); +lean_dec_ref(x_23); lean_dec_ref(x_22); lean_dec(x_20); lean_dec_ref(x_5); @@ -22321,15 +22299,15 @@ lean_dec_ref(x_61); x_21 = x_49; x_22 = x_51; x_23 = x_50; -x_24 = x_52; -x_25 = x_53; +x_24 = x_53; +x_25 = x_52; x_26 = x_54; x_27 = x_55; x_28 = x_56; -x_29 = x_57; -x_30 = x_58; -x_31 = x_59; -x_32 = x_60; +x_29 = x_58; +x_30 = x_57; +x_31 = x_60; +x_32 = x_59; x_33 = x_62; x_34 = lean_box(0); goto block_48; @@ -22337,15 +22315,15 @@ goto block_48; else { lean_dec(x_60); -lean_dec_ref(x_59); +lean_dec(x_59); lean_dec_ref(x_58); -lean_dec(x_57); +lean_dec_ref(x_57); lean_dec_ref(x_56); lean_dec(x_55); -lean_dec_ref(x_53); +lean_dec(x_54); lean_dec_ref(x_52); lean_dec_ref(x_51); -lean_dec(x_50); +lean_dec_ref(x_50); lean_dec(x_20); lean_dec_ref(x_5); lean_dec_ref(x_4); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Grind/Param.c b/stage0/stdlib/Lean/Elab/Tactic/Grind/Param.c index a14bdce73d..2650ab0ee1 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Grind/Param.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Grind/Param.c @@ -489,9 +489,8 @@ lean_object* l_Lean_Meta_Grind_SymbolPriorities_insert(lean_object*, lean_object lean_object* l_Lean_Meta_Grind_mkInjectiveTheorem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_TSyntax_getId(lean_object*); -lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*); +lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_getPrefix(lean_object*); -lean_object* lean_io_error_to_string(lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -9925,7 +9924,7 @@ return x_12; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logWarning___at___00Lean_checkPrivateInPublic___at___00Lean_resolveGlobalName___at___00__private_Lean_ResolveName_0__Lean_resolveLocalName_loop___at___00Lean_resolveLocalName___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__5_spec__8_spec__13_spec__16_spec__18_spec__20_spec__21___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; uint8_t 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_50; uint8_t x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; uint8_t 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_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; uint8_t x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -9960,15 +9959,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_13); +lean_ctor_set(x_26, 1, x_16); x_27 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_27, 0, x_15); -lean_ctor_set(x_27, 1, x_16); -lean_ctor_set(x_27, 2, x_12); -lean_ctor_set(x_27, 3, x_10); +lean_ctor_set(x_27, 1, x_11); +lean_ctor_set(x_27, 2, x_10); +lean_ctor_set(x_27, 3, x_12); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_11); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_14); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_13); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -10005,15 +10004,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_13); +lean_ctor_set(x_42, 1, x_16); x_43 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_43, 0, x_15); -lean_ctor_set(x_43, 1, x_16); -lean_ctor_set(x_43, 2, x_12); -lean_ctor_set(x_43, 3, x_10); +lean_ctor_set(x_43, 1, x_11); +lean_ctor_set(x_43, 2, x_10); +lean_ctor_set(x_43, 3, x_12); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_11); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_14); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_13); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -10043,25 +10042,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_56); -x_62 = l_Lean_FileMap_toPosition(x_56, x_52); -lean_dec(x_52); -x_63 = l_Lean_FileMap_toPosition(x_56, x_57); +lean_inc_ref(x_53); +x_62 = l_Lean_FileMap_toPosition(x_53, x_51); +lean_dec(x_51); +x_63 = l_Lean_FileMap_toPosition(x_53, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_logAt___at___00Lean_log___at___00Lean_logWarning___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_warnRedundantEMatchArg_spec__0_spec__0_spec__1___closed__0)); -if (x_51 == 0) +if (x_52 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_65; -x_11 = x_53; -x_12 = x_64; -x_13 = x_61; -x_14 = x_54; -x_15 = x_55; -x_16 = x_62; +x_10 = x_64; +x_11 = x_62; +x_12 = x_65; +x_13 = x_56; +x_14 = x_55; +x_15 = x_54; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -10078,7 +10077,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_55); +lean_dec_ref(x_54); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -10087,13 +10086,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_65; -x_11 = x_53; -x_12 = x_64; -x_13 = x_61; -x_14 = x_54; -x_15 = x_55; -x_16 = x_62; +x_10 = x_64; +x_11 = x_62; +x_12 = x_65; +x_13 = x_56; +x_14 = x_55; +x_15 = x_54; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -10107,24 +10106,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_56); -x_69 = l_Lean_FileMap_toPosition(x_56, x_52); -lean_dec(x_52); -x_70 = l_Lean_FileMap_toPosition(x_56, x_57); +lean_inc_ref(x_53); +x_69 = l_Lean_FileMap_toPosition(x_53, x_51); +lean_dec(x_51); +x_70 = l_Lean_FileMap_toPosition(x_53, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_logAt___at___00Lean_log___at___00Lean_logWarning___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_warnRedundantEMatchArg_spec__0_spec__0_spec__1___closed__0)); -if (x_51 == 0) +if (x_52 == 0) { lean_dec_ref(x_50); -x_10 = x_72; -x_11 = x_53; -x_12 = x_71; -x_13 = x_68; -x_14 = x_54; -x_15 = x_55; -x_16 = x_69; +x_10 = x_71; +x_11 = x_69; +x_12 = x_72; +x_13 = x_56; +x_14 = x_55; +x_15 = x_54; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -10141,7 +10140,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_55); +lean_dec_ref(x_54); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -10150,13 +10149,13 @@ return x_75; } else { -x_10 = x_72; -x_11 = x_53; -x_12 = x_71; -x_13 = x_68; -x_14 = x_54; -x_15 = x_55; -x_16 = x_69; +x_10 = x_71; +x_11 = x_69; +x_12 = x_72; +x_13 = x_56; +x_14 = x_55; +x_15 = x_54; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -10168,18 +10167,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_78, x_80); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_78, x_82); lean_dec(x_78); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; -x_51 = x_79; -x_52 = x_84; +x_51 = x_84; +x_52 = x_79; x_53 = x_80; -x_54 = x_81; -x_55 = x_83; -x_56 = x_82; +x_54 = x_83; +x_55 = x_82; +x_56 = x_81; x_57 = x_84; goto block_76; } @@ -10190,12 +10189,12 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; -x_51 = x_79; -x_52 = x_84; +x_51 = x_84; +x_52 = x_79; x_53 = x_80; -x_54 = x_81; -x_55 = x_83; -x_56 = x_82; +x_54 = x_83; +x_55 = x_82; +x_56 = x_81; x_57 = x_86; goto block_76; } @@ -10203,9 +10202,9 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_90); -lean_dec(x_90); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_91); +x_95 = l_Lean_replaceRef(x_1, x_93); +lean_dec(x_93); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_92); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; @@ -10213,10 +10212,10 @@ x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; x_78 = x_95; x_79 = x_89; -x_80 = x_91; +x_80 = x_90; x_81 = x_94; -x_82 = x_93; -x_83 = x_92; +x_82 = x_92; +x_83 = x_91; x_84 = x_97; goto block_87; } @@ -10229,10 +10228,10 @@ lean_dec_ref(x_96); x_77 = x_88; x_78 = x_95; x_79 = x_89; -x_80 = x_91; +x_80 = x_90; x_81 = x_94; -x_82 = x_93; -x_83 = x_92; +x_82 = x_92; +x_83 = x_91; x_84 = x_98; goto block_87; } @@ -10244,8 +10243,8 @@ if (x_107 == 0) x_88 = x_102; x_89 = x_101; x_90 = x_103; -x_91 = x_106; -x_92 = x_105; +x_91 = x_105; +x_92 = x_106; x_93 = x_104; x_94 = x_3; goto block_99; @@ -10255,8 +10254,8 @@ else x_88 = x_102; x_89 = x_101; x_90 = x_103; -x_91 = x_106; -x_92 = x_105; +x_91 = x_105; +x_92 = x_106; x_93 = x_104; x_94 = x_100; goto block_99; @@ -10282,12 +10281,12 @@ x_119 = l_Lean_instBEqMessageSeverity_beq(x_3, x_118); if (x_119 == 0) { lean_inc_ref(x_110); -lean_inc_ref(x_111); lean_inc(x_113); +lean_inc_ref(x_111); x_101 = x_114; x_102 = x_117; -x_103 = x_113; -x_104 = x_111; +x_103 = x_111; +x_104 = x_113; x_105 = x_110; x_106 = x_109; x_107 = x_119; @@ -10299,12 +10298,12 @@ lean_object* x_120; uint8_t x_121; x_120 = l_Lean_warningAsError; x_121 = l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_logWarning___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_warnRedundantEMatchArg_spec__0_spec__0_spec__1_spec__5(x_112, x_120); lean_inc_ref(x_110); -lean_inc_ref(x_111); lean_inc(x_113); +lean_inc_ref(x_111); x_101 = x_114; x_102 = x_117; -x_103 = x_113; -x_104 = x_111; +x_103 = x_111; +x_104 = x_113; x_105 = x_110; x_106 = x_109; x_107 = x_121; @@ -10778,9 +10777,9 @@ block_25: { lean_object* x_23; x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_13); +lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_4); -x_3 = x_14; +x_3 = x_13; x_4 = x_23; x_5 = x_15; x_6 = x_16; @@ -10827,8 +10826,8 @@ if (x_40 == 0) { uint8_t x_41; x_41 = 1; -x_13 = x_34; -x_14 = x_33; +x_13 = x_33; +x_14 = x_34; x_15 = x_41; x_16 = x_6; x_17 = x_7; @@ -10841,8 +10840,8 @@ goto block_25; } else { -x_13 = x_34; -x_14 = x_33; +x_13 = x_33; +x_14 = x_34; x_15 = x_5; x_16 = x_6; x_17 = x_7; @@ -10888,8 +10887,8 @@ lean_inc(x_45); x_46 = lean_ctor_get(x_3, 1); lean_inc_ref(x_46); lean_dec_ref(x_3); -x_13 = x_46; -x_14 = x_45; +x_13 = x_45; +x_14 = x_46; x_15 = x_5; x_16 = x_6; x_17 = x_7; @@ -11893,7 +11892,7 @@ goto block_476; } else { -lean_object* x_490; lean_object* x_491; uint8_t x_492; uint8_t x_561; +lean_object* x_490; lean_object* x_491; uint8_t x_492; uint8_t x_550; x_490 = lean_ctor_get(x_488, 0); lean_inc(x_490); if (lean_is_exclusive(x_488)) { @@ -11903,21 +11902,21 @@ if (lean_is_exclusive(x_488)) { lean_dec_ref(x_488); x_491 = lean_box(0); } -x_561 = l_Lean_Exception_isInterrupt(x_490); -if (x_561 == 0) +x_550 = l_Lean_Exception_isInterrupt(x_490); +if (x_550 == 0) { -uint8_t x_562; +uint8_t x_551; lean_inc(x_490); -x_562 = l_Lean_Exception_isRuntime(x_490); -x_492 = x_562; -goto block_560; +x_551 = l_Lean_Exception_isRuntime(x_490); +x_492 = x_551; +goto block_549; } else { -x_492 = x_561; -goto block_560; +x_492 = x_550; +goto block_549; } -block_560: +block_549: { if (x_492 == 0) { @@ -11937,7 +11936,7 @@ lean_dec_ref(x_494); if (lean_obj_tag(x_495) == 0) { lean_object* x_496; -x_496 = l_Lean_Meta_Grind_getExtension_x3f(x_493); +x_496 = l_Lean_Meta_Grind_getExtension_x3f(x_493, x_12, x_13); if (lean_obj_tag(x_496) == 0) { uint8_t x_497; @@ -12145,6 +12144,7 @@ uint8_t x_533; lean_dec(x_493); lean_dec(x_490); lean_dec(x_13); +lean_dec_ref(x_12); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); @@ -12156,88 +12156,65 @@ lean_dec_ref(x_1); x_533 = !lean_is_exclusive(x_496); if (x_533 == 0) { -lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; -x_534 = lean_ctor_get(x_496, 0); -x_535 = lean_ctor_get(x_12, 5); -lean_inc(x_535); -lean_dec_ref(x_12); -x_536 = lean_io_error_to_string(x_534); -x_537 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_537, 0, x_536); -x_538 = l_Lean_MessageData_ofFormat(x_537); -x_539 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_539, 0, x_535); -lean_ctor_set(x_539, 1, x_538); -lean_ctor_set(x_496, 0, x_539); return x_496; } else { -lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; -x_540 = lean_ctor_get(x_496, 0); -lean_inc(x_540); +lean_object* x_534; lean_object* x_535; +x_534 = lean_ctor_get(x_496, 0); +lean_inc(x_534); lean_dec(x_496); -x_541 = lean_ctor_get(x_12, 5); -lean_inc(x_541); -lean_dec_ref(x_12); -x_542 = lean_io_error_to_string(x_540); -x_543 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_543, 0, x_542); -x_544 = l_Lean_MessageData_ofFormat(x_543); -x_545 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_545, 0, x_541); -lean_ctor_set(x_545, 1, x_544); -x_546 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_546, 0, x_545); -return x_546; +x_535 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_535, 0, x_534); +return x_535; } } } else { -lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; uint8_t x_553; +lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; uint8_t x_542; lean_dec_ref(x_495); lean_dec(x_493); lean_dec(x_490); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_547 = l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam___closed__19; +x_536 = l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam___closed__19; lean_inc(x_4); -x_548 = l_Lean_MessageData_ofSyntax(x_4); -x_549 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_549, 0, x_547); -lean_ctor_set(x_549, 1, x_548); -x_550 = l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam___closed__21; -x_551 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_551, 0, x_549); -lean_ctor_set(x_551, 1, x_550); -x_552 = l_Lean_throwErrorAt___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__3___redArg(x_4, x_551, x_8, x_9, x_10, x_11, x_12, x_13); +x_537 = l_Lean_MessageData_ofSyntax(x_4); +x_538 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_538, 0, x_536); +lean_ctor_set(x_538, 1, x_537); +x_539 = l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam___closed__21; +x_540 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_540, 0, x_538); +lean_ctor_set(x_540, 1, x_539); +x_541 = l_Lean_throwErrorAt___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__3___redArg(x_4, x_540, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_13); lean_dec(x_11); lean_dec_ref(x_10); lean_dec(x_9); lean_dec(x_4); -x_553 = !lean_is_exclusive(x_552); -if (x_553 == 0) +x_542 = !lean_is_exclusive(x_541); +if (x_542 == 0) { -return x_552; +return x_541; } else { -lean_object* x_554; lean_object* x_555; -x_554 = lean_ctor_get(x_552, 0); -lean_inc(x_554); -lean_dec(x_552); -x_555 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_555, 0, x_554); -return x_555; +lean_object* x_543; lean_object* x_544; +x_543 = lean_ctor_get(x_541, 0); +lean_inc(x_543); +lean_dec(x_541); +x_544 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_544, 0, x_543); +return x_544; } } } else { -uint8_t x_556; +uint8_t x_545; lean_dec(x_493); lean_dec(x_490); lean_dec(x_13); @@ -12250,26 +12227,26 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_556 = !lean_is_exclusive(x_494); -if (x_556 == 0) +x_545 = !lean_is_exclusive(x_494); +if (x_545 == 0) { return x_494; } else { -lean_object* x_557; lean_object* x_558; -x_557 = lean_ctor_get(x_494, 0); -lean_inc(x_557); +lean_object* x_546; lean_object* x_547; +x_546 = lean_ctor_get(x_494, 0); +lean_inc(x_546); lean_dec(x_494); -x_558 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_558, 0, x_557); -return x_558; +x_547 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_547, 0, x_546); +return x_547; } } } else { -lean_object* x_559; +lean_object* x_548; lean_dec(x_13); lean_dec_ref(x_12); lean_dec(x_11); @@ -12281,12 +12258,12 @@ lean_dec(x_3); lean_dec(x_2); lean_dec_ref(x_1); if (lean_is_scalar(x_491)) { - x_559 = lean_alloc_ctor(1, 1, 0); + x_548 = lean_alloc_ctor(1, 1, 0); } else { - x_559 = x_491; + x_548 = x_491; } -lean_ctor_set(x_559, 0, x_490); -return x_559; +lean_ctor_set(x_548, 0, x_490); +return x_548; } } } @@ -12540,14 +12517,14 @@ lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean x_87 = lean_ctor_get(x_86, 0); lean_inc(x_87); lean_dec_ref(x_86); -lean_inc(x_74); +lean_inc(x_75); x_88 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_88, 0, x_74); +lean_ctor_set(x_88, 0, x_75); x_89 = l_Lean_Meta_Grind_Theorems_find___redArg(x_87, x_88); lean_dec_ref(x_88); x_90 = lean_box(0); -x_91 = l_List_filterTR_loop___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__1(x_75, x_89, x_90); -lean_dec(x_75); +x_91 = l_List_filterTR_loop___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__1(x_74, x_89, x_90); +lean_dec(x_74); x_92 = l_List_isEmpty___redArg(x_91); if (x_92 == 0) { @@ -12558,7 +12535,7 @@ lean_dec(x_80); lean_dec_ref(x_79); lean_dec(x_78); lean_dec_ref(x_77); -lean_dec(x_74); +lean_dec(x_75); lean_dec(x_2); x_93 = l_List_forIn_x27_loop___at___00__private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam_spec__2___redArg(x_91, x_76); return x_93; @@ -12570,7 +12547,7 @@ lean_dec(x_91); lean_dec_ref(x_76); x_94 = l___private_Lean_Elab_Tactic_Grind_Param_0__Lean_Elab_Tactic_processParam___closed__1; x_95 = 0; -x_96 = l_Lean_MessageData_ofConstName(x_74, x_95); +x_96 = l_Lean_MessageData_ofConstName(x_75, x_95); x_97 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_97, 0, x_94); lean_ctor_set(x_97, 1, x_96); @@ -12961,8 +12938,8 @@ lean_dec_ref(x_198); if (lean_obj_tag(x_199) == 0) { lean_dec_ref(x_199); -x_74 = x_173; -x_75 = x_180; +x_74 = x_180; +x_75 = x_173; x_76 = x_1; x_77 = x_8; x_78 = x_9; @@ -13004,8 +12981,8 @@ return x_202; } else { -x_74 = x_173; -x_75 = x_180; +x_74 = x_180; +x_75 = x_173; x_76 = x_1; x_77 = x_8; x_78 = x_9; @@ -13779,8 +13756,8 @@ lean_dec_ref(x_361); if (lean_obj_tag(x_362) == 0) { lean_dec_ref(x_362); -x_74 = x_173; -x_75 = x_343; +x_74 = x_343; +x_75 = x_173; x_76 = x_1; x_77 = x_8; x_78 = x_9; @@ -13823,8 +13800,8 @@ return x_365; } else { -x_74 = x_173; -x_75 = x_343; +x_74 = x_343; +x_75 = x_173; x_76 = x_1; x_77 = x_8; x_78 = x_9; @@ -18643,7 +18620,7 @@ lean_inc(x_39); lean_inc_ref(x_38); lean_inc(x_37); lean_inc_ref(x_36); -x_43 = l_Lean_Elab_Tactic_elabGrindParams(x_33, x_2, x_3, x_31, x_32, x_36, x_37, x_38, x_39, x_40, x_41); +x_43 = l_Lean_Elab_Tactic_elabGrindParams(x_33, x_2, x_3, x_32, x_31, x_36, x_37, x_38, x_39, x_40, x_41); if (lean_obj_tag(x_43) == 0) { lean_object* x_44; lean_object* x_45; uint8_t x_46; @@ -19756,8 +19733,8 @@ uint8_t x_275; x_275 = 1; if (x_3 == 0) { -x_31 = x_274; -x_32 = x_275; +x_31 = x_275; +x_32 = x_274; x_33 = x_1; x_34 = x_5; x_35 = x_6; @@ -19786,8 +19763,8 @@ x_281 = l___private_Init_Data_Array_Basic_0__Array_mapMUnsafe_map___at___00Lean_ x_282 = lean_box(0); lean_ctor_set(x_1, 8, x_282); lean_ctor_set(x_1, 1, x_281); -x_31 = x_274; -x_32 = x_275; +x_31 = x_275; +x_32 = x_274; x_33 = x_1; x_34 = x_5; x_35 = x_6; @@ -19834,8 +19811,8 @@ lean_ctor_set(x_295, 5, x_288); lean_ctor_set(x_295, 6, x_289); lean_ctor_set(x_295, 7, x_290); lean_ctor_set(x_295, 8, x_294); -x_31 = x_274; -x_32 = x_275; +x_31 = x_275; +x_32 = x_274; x_33 = x_295; x_34 = x_5; x_35 = x_6; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Simp.c b/stage0/stdlib/Lean/Elab/Tactic/Simp.c index cd74b48e5b..f65d26da5f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Simp.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Simp.c @@ -415,7 +415,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_r LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_resolveSimpIdTheorem_x3f_isSimproc_x3f___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_resolveSimpIdTheorem_x3f_isSimproc_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_resolveSimpIdTheorem_x3f_isSimproc_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object*); +lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_getSimprocExtension_x3f(lean_object*); lean_object* lean_io_error_to_string(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_resolveSimpIdTheorem_x3f___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -6762,7 +6762,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_r _start: { lean_object* x_9; -x_9 = l_Lean_Meta_getSimpExtension_x3f(x_1); +x_9 = l_Lean_Meta_getSimpExtension_x3f(x_1, x_6, x_7); if (lean_obj_tag(x_9) == 0) { uint8_t x_10; @@ -6956,38 +6956,17 @@ lean_dec(x_1); x_50 = !lean_is_exclusive(x_9); if (x_50 == 0) { -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_51 = lean_ctor_get(x_9, 0); -x_52 = lean_ctor_get(x_6, 5); -x_53 = lean_io_error_to_string(x_51); -x_54 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = l_Lean_MessageData_ofFormat(x_54); -lean_inc(x_52); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_52); -lean_ctor_set(x_56, 1, x_55); -lean_ctor_set(x_9, 0, x_56); return x_9; } else { -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; -x_57 = lean_ctor_get(x_9, 0); -lean_inc(x_57); +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_9, 0); +lean_inc(x_51); lean_dec(x_9); -x_58 = lean_ctor_get(x_6, 5); -x_59 = lean_io_error_to_string(x_57); -x_60 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_60, 0, x_59); -x_61 = l_Lean_MessageData_ofFormat(x_60); -lean_inc(x_58); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_58); -lean_ctor_set(x_62, 1, x_61); -x_63 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_63, 0, x_62); -return x_63; +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +return x_52; } } } @@ -7651,7 +7630,7 @@ block_35: if (x_30 == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_dec_ref(x_28); +lean_dec_ref(x_29); x_31 = l_Lean_TSyntax_getId(x_1); lean_dec(x_1); x_32 = lean_erase_macro_scopes(x_31); @@ -7675,7 +7654,7 @@ lean_dec(x_3); lean_dec_ref(x_2); lean_dec(x_1); x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_28); +lean_ctor_set(x_34, 0, x_29); return x_34; } } @@ -7688,15 +7667,15 @@ if (x_38 == 0) uint8_t x_39; lean_inc_ref(x_36); x_39 = l_Lean_Exception_isRuntime(x_36); -x_28 = x_36; -x_29 = lean_box(0); +x_28 = lean_box(0); +x_29 = x_36; x_30 = x_39; goto block_35; } else { -x_28 = x_36; -x_29 = lean_box(0); +x_28 = lean_box(0); +x_29 = x_36; x_30 = x_38; goto block_35; } @@ -11810,7 +11789,7 @@ return x_7; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_logErrorAt___at___00Lean_Elab_logException___at___00__private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_elabSimpArg_spec__1_spec__2_spec__7___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t 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_50; uint8_t x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; uint8_t 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_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -11845,15 +11824,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_16); +lean_ctor_set(x_26, 1, x_12); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_13); -lean_ctor_set(x_27, 1, x_12); +lean_ctor_set(x_27, 0, x_15); +lean_ctor_set(x_27, 1, x_10); lean_ctor_set(x_27, 2, x_11); -lean_ctor_set(x_27, 3, x_15); +lean_ctor_set(x_27, 3, x_16); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_10); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_14); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_13); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -11890,15 +11869,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_16); +lean_ctor_set(x_42, 1, x_12); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_13); -lean_ctor_set(x_43, 1, x_12); +lean_ctor_set(x_43, 0, x_15); +lean_ctor_set(x_43, 1, x_10); lean_ctor_set(x_43, 2, x_11); -lean_ctor_set(x_43, 3, x_15); +lean_ctor_set(x_43, 3, x_16); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_10); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_14); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_14); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_13); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -11928,25 +11907,25 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); -lean_inc_ref(x_55); -x_62 = l_Lean_FileMap_toPosition(x_55, x_52); -lean_dec(x_52); -x_63 = l_Lean_FileMap_toPosition(x_55, x_57); +lean_inc_ref(x_56); +x_62 = l_Lean_FileMap_toPosition(x_56, x_51); +lean_dec(x_51); +x_63 = l_Lean_FileMap_toPosition(x_56, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabSimpConfigCore_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_53 == 0) +if (x_52 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_51; +x_10 = x_62; x_11 = x_64; -x_12 = x_62; -x_13 = x_54; -x_14 = x_56; -x_15 = x_65; -x_16 = x_61; +x_12 = x_61; +x_13 = x_53; +x_14 = x_54; +x_15 = x_55; +x_16 = x_65; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -11963,7 +11942,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_54); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -11972,13 +11951,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_51; +x_10 = x_62; x_11 = x_64; -x_12 = x_62; -x_13 = x_54; -x_14 = x_56; -x_15 = x_65; -x_16 = x_61; +x_12 = x_61; +x_13 = x_53; +x_14 = x_54; +x_15 = x_55; +x_16 = x_65; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -11992,24 +11971,24 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -lean_inc_ref(x_55); -x_69 = l_Lean_FileMap_toPosition(x_55, x_52); -lean_dec(x_52); -x_70 = l_Lean_FileMap_toPosition(x_55, x_57); +lean_inc_ref(x_56); +x_69 = l_Lean_FileMap_toPosition(x_56, x_51); +lean_dec(x_51); +x_70 = l_Lean_FileMap_toPosition(x_56, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabSimpConfigCore_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_53 == 0) +if (x_52 == 0) { lean_dec_ref(x_50); -x_10 = x_51; +x_10 = x_69; x_11 = x_71; -x_12 = x_69; -x_13 = x_54; -x_14 = x_56; -x_15 = x_72; -x_16 = x_68; +x_12 = x_68; +x_13 = x_53; +x_14 = x_54; +x_15 = x_55; +x_16 = x_72; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -12026,7 +12005,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_54); +lean_dec_ref(x_55); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -12035,13 +12014,13 @@ return x_75; } else { -x_10 = x_51; +x_10 = x_69; x_11 = x_71; -x_12 = x_69; -x_13 = x_54; -x_14 = x_56; -x_15 = x_72; -x_16 = x_68; +x_12 = x_68; +x_13 = x_53; +x_14 = x_54; +x_15 = x_55; +x_16 = x_72; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -12053,18 +12032,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_83, x_78); -lean_dec(x_83); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_78, x_81); +lean_dec(x_78); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; -x_51 = x_78; -x_52 = x_84; +x_51 = x_84; +x_52 = x_80; x_53 = x_79; -x_54 = x_80; -x_55 = x_81; -x_56 = x_82; +x_54 = x_81; +x_55 = x_82; +x_56 = x_83; x_57 = x_84; goto block_76; } @@ -12075,12 +12054,12 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; -x_51 = x_78; -x_52 = x_84; +x_51 = x_84; +x_52 = x_80; x_53 = x_79; -x_54 = x_80; -x_55 = x_81; -x_56 = x_82; +x_54 = x_81; +x_55 = x_82; +x_56 = x_83; x_57 = x_86; goto block_76; } @@ -12088,20 +12067,20 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_89); -lean_dec(x_89); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_90); +x_95 = l_Lean_replaceRef(x_1, x_90); +lean_dec(x_90); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_91); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; -x_78 = x_90; -x_79 = x_91; -x_80 = x_92; -x_81 = x_93; -x_82 = x_94; -x_83 = x_95; +x_78 = x_95; +x_79 = x_94; +x_80 = x_89; +x_81 = x_91; +x_82 = x_92; +x_83 = x_93; x_84 = x_97; goto block_87; } @@ -12112,12 +12091,12 @@ x_98 = lean_ctor_get(x_96, 0); lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; -x_78 = x_90; -x_79 = x_91; -x_80 = x_92; -x_81 = x_93; -x_82 = x_94; -x_83 = x_95; +x_78 = x_95; +x_79 = x_94; +x_80 = x_89; +x_81 = x_91; +x_82 = x_92; +x_83 = x_93; x_84 = x_98; goto block_87; } @@ -12126,23 +12105,23 @@ block_108: { if (x_107 == 0) { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; +x_88 = x_104; +x_89 = x_102; +x_90 = x_101; +x_91 = x_106; x_92 = x_103; -x_93 = x_104; +x_93 = x_105; x_94 = x_3; goto block_99; } else { -x_88 = x_105; -x_89 = x_101; -x_90 = x_106; -x_91 = x_102; +x_88 = x_104; +x_89 = x_102; +x_90 = x_101; +x_91 = x_106; x_92 = x_103; -x_93 = x_104; +x_93 = x_105; x_94 = x_100; goto block_99; } @@ -12172,8 +12151,8 @@ lean_inc(x_113); x_101 = x_113; x_102 = x_114; x_103 = x_110; -x_104 = x_111; -x_105 = x_117; +x_104 = x_117; +x_105 = x_111; x_106 = x_109; x_107 = x_119; goto block_108; @@ -12189,8 +12168,8 @@ lean_inc(x_113); x_101 = x_113; x_102 = x_114; x_103 = x_110; -x_104 = x_111; -x_105 = x_117; +x_104 = x_117; +x_105 = x_111; x_106 = x_109; x_107 = x_121; goto block_108; @@ -15834,7 +15813,7 @@ block_36: lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; size_t x_33; size_t x_34; x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_25); -lean_ctor_set(x_29, 1, x_26); +lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_21, x_29); x_31 = lean_box(x_28); if (lean_is_scalar(x_23)) { @@ -15857,25 +15836,25 @@ x_39 = lean_unbox(x_22); lean_dec(x_22); if (x_39 == 0) { -if (lean_obj_tag(x_37) == 6) +if (lean_obj_tag(x_38) == 6) { -x_26 = x_37; -x_27 = lean_box(0); +x_26 = lean_box(0); +x_27 = x_38; x_28 = x_19; goto block_36; } else { -x_26 = x_37; -x_27 = lean_box(0); +x_26 = lean_box(0); +x_27 = x_38; x_28 = x_3; goto block_36; } } else { -x_26 = x_37; -x_27 = lean_box(0); +x_26 = lean_box(0); +x_27 = x_38; x_28 = x_19; goto block_36; } @@ -15900,8 +15879,8 @@ lean_object* x_43; x_43 = lean_ctor_get(x_42, 0); lean_inc(x_43); lean_dec_ref(x_42); -x_37 = x_43; -x_38 = lean_box(0); +x_37 = lean_box(0); +x_38 = x_43; goto block_40; } else @@ -15913,8 +15892,8 @@ lean_dec(x_22); x_44 = lean_ctor_get(x_42, 0); lean_inc(x_44); lean_dec_ref(x_42); -x_26 = x_44; -x_27 = lean_box(0); +x_26 = lean_box(0); +x_27 = x_44; x_28 = x_3; goto block_36; } @@ -15924,8 +15903,8 @@ lean_object* x_45; x_45 = lean_ctor_get(x_42, 0); lean_inc(x_45); lean_dec_ref(x_42); -x_37 = x_45; -x_38 = lean_box(0); +x_37 = lean_box(0); +x_38 = x_45; goto block_40; } } @@ -19595,10 +19574,10 @@ goto block_127; block_56: { lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_mk_empty_array_with_capacity(x_15); +x_30 = lean_mk_empty_array_with_capacity(x_18); lean_inc_ref(x_30); x_31 = lean_array_push(x_30, x_20); -x_32 = l_Lean_Meta_Simp_mkContext___redArg(x_16, x_31, x_18, x_25, x_27, x_28); +x_32 = l_Lean_Meta_Simp_mkContext___redArg(x_16, x_31, x_17, x_25, x_27, x_28); if (lean_obj_tag(x_32) == 0) { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; @@ -19627,7 +19606,7 @@ lean_dec(x_39); x_43 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_43, 0, x_40); lean_ctor_set(x_43, 1, x_41); -lean_ctor_set(x_43, 2, x_17); +lean_ctor_set(x_43, 2, x_15); lean_ctor_set(x_43, 3, x_42); lean_ctor_set(x_37, 0, x_43); return x_37; @@ -19648,7 +19627,7 @@ lean_dec(x_44); x_48 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_48, 0, x_45); lean_ctor_set(x_48, 1, x_46); -lean_ctor_set(x_48, 2, x_17); +lean_ctor_set(x_48, 2, x_15); lean_ctor_set(x_48, 3, x_47); x_49 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_49, 0, x_48); @@ -19658,7 +19637,7 @@ return x_49; else { uint8_t x_50; -lean_dec(x_17); +lean_dec(x_15); x_50 = !lean_is_exclusive(x_37); if (x_50 == 0) { @@ -19689,7 +19668,7 @@ lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); lean_dec_ref(x_19); -lean_dec(x_17); +lean_dec(x_15); x_53 = !lean_is_exclusive(x_32); if (x_53 == 0) { @@ -19735,10 +19714,10 @@ lean_dec_ref(x_73); x_75 = lean_ctor_get_uint8(x_74, sizeof(void*)*3 + 27); if (x_75 == 0) { -x_15 = x_71; +x_15 = x_57; x_16 = x_74; -x_17 = x_57; -x_18 = x_70; +x_17 = x_70; +x_18 = x_71; x_19 = x_59; x_20 = x_58; x_21 = x_60; @@ -19766,10 +19745,10 @@ lean_object* x_77; x_77 = lean_ctor_get(x_76, 0); lean_inc(x_77); lean_dec_ref(x_76); -x_15 = x_71; +x_15 = x_57; x_16 = x_74; -x_17 = x_57; -x_18 = x_70; +x_17 = x_70; +x_18 = x_71; x_19 = x_59; x_20 = x_77; x_21 = x_60; @@ -21478,7 +21457,7 @@ return x_4; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logWarning___at___00Lean_checkPrivateInPublic___at___00Lean_resolveGlobalName___at___00Lean_unresolveNameGlobal___at___00Lean_unresolveNameGlobalAvoidingLocals___at___00Lean_Elab_Tactic_mkSimpOnly_spec__0_spec__1_spec__10_spec__20_spec__25_spec__26_spec__27(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; lean_object* x_51; uint8_t x_52; uint8_t x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; uint8_t x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; lean_object* x_11; uint8_t x_12; uint8_t x_13; 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_50; uint8_t x_51; uint8_t x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_77; uint8_t x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -21513,15 +21492,15 @@ lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_22); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_11); +lean_ctor_set(x_26, 1, x_16); x_27 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_27, 0, x_10); -lean_ctor_set(x_27, 1, x_16); -lean_ctor_set(x_27, 2, x_12); -lean_ctor_set(x_27, 3, x_14); +lean_ctor_set(x_27, 0, x_15); +lean_ctor_set(x_27, 1, x_11); +lean_ctor_set(x_27, 2, x_14); +lean_ctor_set(x_27, 3, x_10); lean_ctor_set(x_27, 4, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_13); +lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_13); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_12); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -21558,15 +21537,15 @@ lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_22); x_42 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_11); +lean_ctor_set(x_42, 1, x_16); x_43 = lean_alloc_ctor(0, 5, 3); -lean_ctor_set(x_43, 0, x_10); -lean_ctor_set(x_43, 1, x_16); -lean_ctor_set(x_43, 2, x_12); -lean_ctor_set(x_43, 3, x_14); +lean_ctor_set(x_43, 0, x_15); +lean_ctor_set(x_43, 1, x_11); +lean_ctor_set(x_43, 2, x_14); +lean_ctor_set(x_43, 3, x_10); lean_ctor_set(x_43, 4, x_42); -lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_15); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_13); +lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_13); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_12); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -21597,24 +21576,24 @@ if (x_60 == 0) lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); lean_inc_ref(x_54); -x_62 = l_Lean_FileMap_toPosition(x_54, x_56); -lean_dec(x_56); +x_62 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); x_63 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabSimpConfigCore_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_52 == 0) +if (x_51 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); -x_10 = x_51; -x_11 = x_61; -x_12 = x_64; -x_13 = x_53; -x_14 = x_65; -x_15 = x_55; -x_16 = x_62; +x_10 = x_65; +x_11 = x_62; +x_12 = x_52; +x_13 = x_55; +x_14 = x_64; +x_15 = x_56; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -21631,7 +21610,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_51); +lean_dec_ref(x_56); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -21640,13 +21619,13 @@ return x_59; else { lean_free_object(x_59); -x_10 = x_51; -x_11 = x_61; -x_12 = x_64; -x_13 = x_53; -x_14 = x_65; -x_15 = x_55; -x_16 = x_62; +x_10 = x_65; +x_11 = x_62; +x_12 = x_52; +x_13 = x_55; +x_14 = x_64; +x_15 = x_56; +x_16 = x_61; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -21661,23 +21640,23 @@ x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); lean_inc_ref(x_54); -x_69 = l_Lean_FileMap_toPosition(x_54, x_56); -lean_dec(x_56); +x_69 = l_Lean_FileMap_toPosition(x_54, x_53); +lean_dec(x_53); x_70 = l_Lean_FileMap_toPosition(x_54, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Elab_Tactic_elabSimpConfigCore_spec__0_spec__0_spec__3___redArg___closed__1)); -if (x_52 == 0) +if (x_51 == 0) { lean_dec_ref(x_50); -x_10 = x_51; -x_11 = x_68; -x_12 = x_71; -x_13 = x_53; -x_14 = x_72; -x_15 = x_55; -x_16 = x_69; +x_10 = x_72; +x_11 = x_69; +x_12 = x_52; +x_13 = x_55; +x_14 = x_71; +x_15 = x_56; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -21694,7 +21673,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_51); +lean_dec_ref(x_56); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -21703,13 +21682,13 @@ return x_75; } else { -x_10 = x_51; -x_11 = x_68; -x_12 = x_71; -x_13 = x_53; -x_14 = x_72; -x_15 = x_55; -x_16 = x_69; +x_10 = x_72; +x_11 = x_69; +x_12 = x_52; +x_13 = x_55; +x_14 = x_71; +x_15 = x_56; +x_16 = x_68; x_17 = x_7; x_18 = x_8; x_19 = lean_box(0); @@ -21721,18 +21700,18 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_82, x_83); -lean_dec(x_82); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_81, x_82); +lean_dec(x_81); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; x_51 = x_78; -x_52 = x_79; -x_53 = x_80; -x_54 = x_81; -x_55 = x_83; -x_56 = x_84; +x_52 = x_80; +x_53 = x_84; +x_54 = x_79; +x_55 = x_82; +x_56 = x_83; x_57 = x_84; goto block_76; } @@ -21744,11 +21723,11 @@ lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; x_51 = x_78; -x_52 = x_79; -x_53 = x_80; -x_54 = x_81; -x_55 = x_83; -x_56 = x_84; +x_52 = x_80; +x_53 = x_84; +x_54 = x_79; +x_55 = x_82; +x_56 = x_83; x_57 = x_86; goto block_76; } @@ -21756,19 +21735,19 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_91); -lean_dec(x_91); -x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_93); +x_95 = l_Lean_replaceRef(x_1, x_90); +lean_dec(x_90); +x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_92); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; x_78 = x_89; -x_79 = x_90; +x_79 = x_91; x_80 = x_94; -x_81 = x_92; -x_82 = x_95; +x_81 = x_95; +x_82 = x_92; x_83 = x_93; x_84 = x_97; goto block_87; @@ -21781,10 +21760,10 @@ lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; x_78 = x_89; -x_79 = x_90; +x_79 = x_91; x_80 = x_94; -x_81 = x_92; -x_82 = x_95; +x_81 = x_95; +x_82 = x_92; x_83 = x_93; x_84 = x_98; goto block_87; @@ -21798,8 +21777,8 @@ x_88 = x_104; x_89 = x_101; x_90 = x_102; x_91 = x_103; -x_92 = x_105; -x_93 = x_106; +x_92 = x_106; +x_93 = x_105; x_94 = x_3; goto block_99; } @@ -21809,8 +21788,8 @@ x_88 = x_104; x_89 = x_101; x_90 = x_102; x_91 = x_103; -x_92 = x_105; -x_93 = x_106; +x_92 = x_106; +x_93 = x_105; x_94 = x_100; goto block_99; } @@ -21834,14 +21813,14 @@ x_118 = 1; x_119 = l_Lean_instBEqMessageSeverity_beq(x_3, x_118); if (x_119 == 0) { +lean_inc_ref(x_110); lean_inc_ref(x_111); lean_inc(x_113); -lean_inc_ref(x_110); -x_101 = x_110; -x_102 = x_114; -x_103 = x_113; +x_101 = x_114; +x_102 = x_113; +x_103 = x_111; x_104 = x_117; -x_105 = x_111; +x_105 = x_110; x_106 = x_109; x_107 = x_119; goto block_108; @@ -21851,14 +21830,14 @@ else lean_object* x_120; uint8_t x_121; x_120 = l_Lean_warningAsError; x_121 = l_Lean_Option_get___at___00Lean_Elab_addMacroStack___at___00Lean_throwError___at___00Lean_Elab_Tactic_elabSimpConfigCore_spec__1_spec__5_spec__10(x_112, x_120); +lean_inc_ref(x_110); lean_inc_ref(x_111); lean_inc(x_113); -lean_inc_ref(x_110); -x_101 = x_110; -x_102 = x_114; -x_103 = x_113; +x_101 = x_114; +x_102 = x_113; +x_103 = x_111; x_104 = x_117; -x_105 = x_111; +x_105 = x_110; x_106 = x_109; x_107 = x_121; goto block_108; @@ -23070,8 +23049,8 @@ lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_5); lean_dec_ref(x_4); -x_50 = x_58; -x_51 = x_59; +x_50 = x_59; +x_51 = x_58; x_52 = x_80; x_53 = lean_box(0); goto block_55; @@ -23089,8 +23068,8 @@ lean_inc(x_82); lean_dec_ref(x_81); x_83 = lean_unbox(x_82); lean_dec(x_82); -x_50 = x_58; -x_51 = x_59; +x_50 = x_59; +x_51 = x_58; x_52 = x_83; x_53 = lean_box(0); goto block_55; @@ -23340,18 +23319,18 @@ block_55: { if (x_52 == 0) { -lean_dec(x_50); -x_43 = x_51; +lean_dec(x_51); +x_43 = x_50; x_44 = lean_box(0); goto block_49; } else { lean_object* x_54; -lean_dec(x_51); +lean_dec(x_50); lean_dec(x_1); x_54 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_54, 0, x_50); +lean_ctor_set(x_54, 0, x_51); return x_54; } } @@ -24166,9 +24145,9 @@ block_21: { lean_object* x_19; x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_4); -x_3 = x_12; +x_3 = x_11; x_4 = x_19; x_5 = x_13; x_6 = x_14; @@ -24213,8 +24192,8 @@ if (x_36 == 0) { uint8_t x_37; x_37 = 1; -x_11 = x_30; -x_12 = x_29; +x_11 = x_29; +x_12 = x_30; x_13 = x_37; x_14 = x_6; x_15 = x_7; @@ -24225,8 +24204,8 @@ goto block_21; } else { -x_11 = x_30; -x_12 = x_29; +x_11 = x_29; +x_12 = x_30; x_13 = x_5; x_14 = x_6; x_15 = x_7; @@ -24270,8 +24249,8 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_3, 1); lean_inc_ref(x_42); lean_dec_ref(x_3); -x_11 = x_42; -x_12 = x_41; +x_11 = x_41; +x_12 = x_42; x_13 = x_5; x_14 = x_6; x_15 = x_7; @@ -25046,7 +25025,7 @@ lean_inc_ref(x_2); x_151 = lean_local_ctx_find(x_2, x_150); if (lean_obj_tag(x_151) == 1) { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_163; lean_object* x_164; uint8_t x_170; lean_object* x_171; lean_object* x_172; uint8_t x_175; +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_163; lean_object* x_164; lean_object* x_170; lean_object* x_171; uint8_t x_172; uint8_t x_175; x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); if (lean_is_exclusive(x_151)) { @@ -25096,15 +25075,15 @@ lean_dec(x_158); lean_dec(x_157); if (x_159 == 0) { -lean_dec(x_155); -lean_dec_ref(x_154); +lean_dec_ref(x_155); +lean_dec(x_154); lean_dec(x_153); goto block_40; } else { lean_object* x_160; lean_object* x_161; -x_160 = lean_array_push(x_154, x_155); +x_160 = lean_array_push(x_155, x_154); if (lean_is_scalar(x_153)) { x_161 = lean_alloc_ctor(1, 1, 0); } else { @@ -25118,7 +25097,7 @@ goto block_38; block_169: { lean_object* x_165; -x_165 = l_Lean_LocalContext_findFromUserName_x3f(x_2, x_164); +x_165 = l_Lean_LocalContext_findFromUserName_x3f(x_2, x_163); if (lean_obj_tag(x_165) == 0) { lean_object* x_166; lean_object* x_167; @@ -25144,27 +25123,27 @@ goto block_162; block_174: { uint8_t x_173; -x_173 = l_Lean_Name_hasMacroScopes(x_172); +x_173 = l_Lean_Name_hasMacroScopes(x_170); if (x_173 == 0) { -x_163 = x_171; -x_164 = x_172; +x_163 = x_170; +x_164 = x_171; goto block_169; } else { -if (x_170 == 0) +if (x_172 == 0) { -lean_dec(x_172); lean_dec_ref(x_171); +lean_dec(x_170); lean_dec(x_153); lean_dec(x_152); goto block_40; } else { -x_163 = x_171; -x_164 = x_172; +x_163 = x_170; +x_164 = x_171; goto block_169; } } @@ -25189,9 +25168,9 @@ lean_inc(x_177); x_178 = lean_is_inaccessible_user_name(x_177); if (x_178 == 0) { -x_170 = x_175; +x_170 = x_177; x_171 = x_176; -x_172 = x_177; +x_172 = x_175; goto block_174; } else @@ -25206,9 +25185,9 @@ goto block_40; } else { -x_170 = x_175; +x_170 = x_177; x_171 = x_176; -x_172 = x_177; +x_172 = x_175; goto block_174; } } @@ -25945,14 +25924,14 @@ goto block_38; block_169: { lean_object* x_165; -x_165 = l_Lean_LocalContext_findFromUserName_x3f(x_2, x_164); +x_165 = l_Lean_LocalContext_findFromUserName_x3f(x_2, x_163); if (lean_obj_tag(x_165) == 0) { lean_object* x_166; lean_object* x_167; x_166 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_Elab_Tactic_mkSimpOnly_spec__3_spec__5___closed__12; x_167 = l_panic___at___00Lean_Elab_Tactic_mkSimpOnly_spec__2(x_166); -x_154 = x_164; -x_155 = x_163; +x_154 = x_163; +x_155 = x_164; x_156 = x_167; goto block_162; } @@ -25962,8 +25941,8 @@ lean_object* x_168; x_168 = lean_ctor_get(x_165, 0); lean_inc(x_168); lean_dec_ref(x_165); -x_154 = x_164; -x_155 = x_163; +x_154 = x_163; +x_155 = x_164; x_156 = x_168; goto block_162; } @@ -25971,7 +25950,7 @@ goto block_162; block_174: { uint8_t x_173; -x_173 = l_Lean_Name_hasMacroScopes(x_172); +x_173 = l_Lean_Name_hasMacroScopes(x_171); if (x_173 == 0) { x_163 = x_171; @@ -25982,8 +25961,8 @@ else { if (x_170 == 0) { -lean_dec(x_172); -lean_dec_ref(x_171); +lean_dec_ref(x_172); +lean_dec(x_171); lean_dec(x_153); lean_dec(x_152); goto block_40; @@ -26017,8 +25996,8 @@ x_178 = lean_is_inaccessible_user_name(x_177); if (x_178 == 0) { x_170 = x_175; -x_171 = x_176; -x_172 = x_177; +x_171 = x_177; +x_172 = x_176; goto block_174; } else @@ -26034,8 +26013,8 @@ goto block_40; else { x_170 = x_175; -x_171 = x_176; -x_172 = x_177; +x_171 = x_177; +x_172 = x_176; goto block_174; } } @@ -29801,9 +29780,9 @@ block_33: if (x_24 == 0) { lean_object* x_25; -lean_dec_ref(x_23); -lean_dec(x_22); -lean_dec_ref(x_20); +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec(x_20); lean_dec(x_18); lean_dec(x_16); if (lean_is_scalar(x_17)) { @@ -29812,15 +29791,15 @@ if (lean_is_scalar(x_17)) { x_25 = x_17; lean_ctor_set_tag(x_25, 1); } -lean_ctor_set(x_25, 0, x_21); +lean_ctor_set(x_25, 0, x_23); return x_25; } else { lean_object* x_26; lean_dec(x_17); -x_26 = l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_withLoopChecking_go___at___00Lean_Elab_Tactic_evalSimp_spec__0___redArg(x_16, x_24, x_23, x_18, x_20, x_22); -lean_dec_ref(x_20); +x_26 = l___private_Lean_Elab_Tactic_Simp_0__Lean_Elab_Tactic_withLoopChecking_go___at___00Lean_Elab_Tactic_evalSimp_spec__0___redArg(x_16, x_24, x_22, x_20, x_21, x_18); +lean_dec_ref(x_21); if (lean_obj_tag(x_26) == 0) { uint8_t x_27; @@ -29831,7 +29810,7 @@ lean_object* x_28; x_28 = lean_ctor_get(x_26, 0); lean_dec(x_28); lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_26, 0, x_23); return x_26; } else @@ -29839,14 +29818,14 @@ else lean_object* x_29; lean_dec(x_26); x_29 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_29, 0, x_21); +lean_ctor_set(x_29, 0, x_23); return x_29; } } else { uint8_t x_30; -lean_dec_ref(x_21); +lean_dec_ref(x_23); x_30 = !lean_is_exclusive(x_26); if (x_30 == 0) { @@ -29883,9 +29862,9 @@ x_43 = l_Lean_MessageData_hasTag(x_5, x_42); x_18 = x_34; x_19 = lean_box(0); x_20 = x_35; -x_21 = x_38; -x_22 = x_36; -x_23 = x_37; +x_21 = x_36; +x_22 = x_37; +x_23 = x_38; x_24 = x_43; goto block_33; } @@ -29895,9 +29874,9 @@ lean_dec_ref(x_5); x_18 = x_34; x_19 = lean_box(0); x_20 = x_35; -x_21 = x_38; -x_22 = x_36; -x_23 = x_37; +x_21 = x_36; +x_22 = x_37; +x_23 = x_38; x_24 = x_41; goto block_33; } @@ -29906,8 +29885,8 @@ else { lean_object* x_44; lean_dec_ref(x_37); -lean_dec(x_36); -lean_dec_ref(x_35); +lean_dec_ref(x_36); +lean_dec(x_35); lean_dec(x_34); lean_dec(x_17); lean_dec(x_16); @@ -30477,9 +30456,9 @@ lean_dec(x_1); x_166 = lean_ctor_get(x_135, 0); lean_inc(x_166); lean_dec_ref(x_135); -x_34 = x_128; -x_35 = x_129; -x_36 = x_130; +x_34 = x_130; +x_35 = x_128; +x_36 = x_129; x_37 = x_127; x_38 = x_166; x_39 = lean_box(0); @@ -30494,9 +30473,9 @@ lean_dec(x_1); x_167 = lean_ctor_get(x_132, 0); lean_inc(x_167); lean_dec_ref(x_132); -x_34 = x_128; -x_35 = x_129; -x_36 = x_130; +x_34 = x_130; +x_35 = x_128; +x_36 = x_129; x_37 = x_127; x_38 = x_167; x_39 = lean_box(0); diff --git a/stage0/stdlib/Lean/Meta/ACLt.c b/stage0/stdlib/Lean/Meta/ACLt.c index cbdc2fb14a..801ec9f5d8 100644 --- a/stage0/stdlib/Lean/Meta/ACLt.c +++ b/stage0/stdlib/Lean/Meta/ACLt.c @@ -51,24 +51,34 @@ lean_object* l_Lean_Meta_getFunInfoNArgs(lean_object*, lean_object*, lean_object LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instInhabitedMetaM___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_closure_object l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_instInhabitedMetaM___lam__0___boxed, .m_arity = 5, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2___closed__0 = (const lean_object*)&l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2___closed__0_value; +static const lean_closure_object l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_instInhabitedMetaM___lam__0___boxed, .m_arity = 5, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___closed__0 = (const lean_object*)&l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___closed__0_value; lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedLocalDecl_default; +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lt(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "value is none"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2_value; +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "Option.get!"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1_value; +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 26, .m_capacity = 26, .m_length = 25, .m_data = "Init.Data.Option.BasicAux"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0_value; +lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3; lean_object* l_Lean_Expr_sort___override(lean_object*); static lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0; -static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0_value; +static const lean_ctor_object l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 0}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0 = (const lean_object*)&l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0_value; lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instInhabitedParamInfo_default; lean_object* lean_array_get_borrowed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l_Lean_Expr_getAppNumArgs(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); @@ -76,20 +86,21 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 34, .m_capacity = 34, .m_length = 33, .m_data = "unreachable code has been reached"}; -static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2_value; -static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 58, .m_capacity = 58, .m_length = 57, .m_data = "_private.Lean.Meta.ACLt.0.Lean.Meta.ACLt.main.lexSameCtor"}; -static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1_value; -static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 15, .m_capacity = 15, .m_length = 14, .m_data = "Lean.Meta.ACLt"}; -static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0_value; -lean_object* l_mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3; +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 34, .m_capacity = 34, .m_length = 33, .m_data = "unreachable code has been reached"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__6 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__6_value; +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 58, .m_capacity = 58, .m_length = 57, .m_data = "_private.Lean.Meta.ACLt.0.Lean.Meta.ACLt.main.lexSameCtor"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__5 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__5_value; +static const lean_string_object l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 15, .m_capacity = 15, .m_length = 14, .m_data = "Lean.Meta.ACLt"}; +static const lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__4 = (const lean_object*)&l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__4_value; +static lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__7; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); lean_object* l_Lean_Expr_bvarIdx_x21(lean_object*); +lean_object* l_Lean_FVarId_findDecl_x3f___redArg(lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); -uint8_t l_Lean_Name_lt(lean_object*, lean_object*); +lean_object* l_Lean_LocalDecl_index(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +uint8_t l_Lean_Name_lt(lean_object*, lean_object*); lean_object* l_Lean_Expr_sortLevel_x21(lean_object*); uint8_t l_Lean_Level_normLt(lean_object*, lean_object*); lean_object* l_Lean_Expr_constName_x21(lean_object*); @@ -108,31 +119,31 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lpo(u uint8_t lean_expr_eqv(lean_object*, lean_object*); uint8_t l_Lean_Expr_isMData(lean_object*); lean_object* l_Lean_Expr_mdataExpr_x21(lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg(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_array_fget_borrowed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_someChildGe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___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___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lpo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg___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_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg___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_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg___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_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg___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_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg___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_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___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_object*); -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8(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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___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_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7(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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___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_object*); +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(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_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___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_object*); LEAN_EXPORT lean_object* l_Lean_Meta_ACLt_main(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_ACLt_main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_acLt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -685,24 +696,33 @@ x_8 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo(x_1, x_2, return x_8; } } -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = ((lean_object*)(l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2___closed__0)); +x_7 = ((lean_object*)(l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___closed__0)); x_8 = lean_panic_fn(x_7, x_1); x_9 = lean_apply_5(x_8, x_2, x_3, x_4, x_5, lean_box(0)); return x_9; } } -LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__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_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3___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) { _start: { lean_object* x_7; -x_7 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(x_1, x_2, x_3, x_4, x_5); +x_7 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3(x_1, x_2, x_3, x_4, x_5); return x_7; } } +LEAN_EXPORT lean_object* l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_instInhabitedLocalDecl_default; +x_3 = lean_panic_fn(x_2, x_1); +return x_3; +} +} LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair(uint8_t 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) { _start: { @@ -829,6 +849,19 @@ return x_11; } } } +static lean_object* _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3() { +_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 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2)); +x_2 = lean_unsigned_to_nat(14u); +x_3 = lean_unsigned_to_nat(22u); +x_4 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1)); +x_5 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0)); +x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); +return x_6; +} +} static lean_object* _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0() { _start: { @@ -838,7 +871,7 @@ x_2 = l_Lean_Expr_sort___override(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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_13; lean_object* x_14; uint8_t x_19; @@ -863,7 +896,7 @@ x_21 = l_Lean_Meta_instInhabitedParamInfo_default; x_22 = lean_array_get_borrowed(x_21, x_2, x_6); x_23 = lean_ctor_get_uint8(x_22, sizeof(void*)*1 + 4); x_24 = lean_box(0); -x_25 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_25 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); if (x_23 == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; @@ -1160,7 +1193,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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: { uint8_t x_12; @@ -1227,7 +1260,7 @@ if (x_25 == 0) lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_free_object(x_22); lean_dec(x_19); -x_26 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_26 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); x_27 = lean_unsigned_to_nat(1u); x_28 = lean_nat_add(x_5, x_27); lean_dec(x_5); @@ -1264,7 +1297,7 @@ if (x_33 == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_19); -x_34 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_34 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); x_35 = lean_unsigned_to_nat(1u); x_36 = lean_nat_add(x_5, x_35); lean_dec(x_5); @@ -1371,7 +1404,7 @@ if (x_52 == 0) lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_dec(x_51); lean_dec(x_46); -x_53 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_53 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); x_54 = lean_unsigned_to_nat(1u); x_55 = lean_nat_add(x_5, x_54); lean_dec(x_5); @@ -1555,12 +1588,12 @@ lean_inc(x_34); lean_dec_ref(x_33); x_35 = lean_array_get_size(x_34); x_36 = lean_unsigned_to_nat(0u); -x_37 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_37 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); lean_inc(x_7); lean_inc_ref(x_6); lean_inc(x_5); lean_inc_ref(x_4); -x_38 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_35, x_34, x_24, x_28, x_1, x_36, x_37, x_4, x_5, x_6, x_7); +x_38 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(x_35, x_34, x_24, x_28, x_1, x_36, x_37, x_4, x_5, x_6, x_7); lean_dec(x_34); if (lean_obj_tag(x_38) == 0) { @@ -1577,7 +1610,7 @@ if (lean_obj_tag(x_41) == 0) { lean_object* x_42; lean_free_object(x_38); -x_42 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(x_29, x_24, x_28, x_1, x_35, x_37, x_4, x_5, x_6, x_7); +x_42 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_29, x_24, x_28, x_1, x_35, x_37, x_4, x_5, x_6, x_7); lean_dec_ref(x_28); lean_dec_ref(x_24); if (lean_obj_tag(x_42) == 0) @@ -1686,7 +1719,7 @@ lean_dec(x_56); if (lean_obj_tag(x_57) == 0) { lean_object* x_58; -x_58 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(x_29, x_24, x_28, x_1, x_35, x_37, x_4, x_5, x_6, x_7); +x_58 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_29, x_24, x_28, x_1, x_35, x_37, x_4, x_5, x_6, x_7); lean_dec_ref(x_28); lean_dec_ref(x_24); if (lean_obj_tag(x_58) == 0) @@ -1996,12 +2029,12 @@ lean_inc(x_106); lean_dec_ref(x_105); x_107 = lean_array_get_size(x_106); x_108 = lean_unsigned_to_nat(0u); -x_109 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_109 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); lean_inc(x_7); lean_inc_ref(x_6); lean_inc(x_5); lean_inc_ref(x_4); -x_110 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_107, x_106, x_96, x_100, x_1, x_108, x_109, x_4, x_5, x_6, x_7); +x_110 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(x_107, x_106, x_96, x_100, x_1, x_108, x_109, x_4, x_5, x_6, x_7); lean_dec(x_106); if (lean_obj_tag(x_110) == 0) { @@ -2022,7 +2055,7 @@ if (lean_obj_tag(x_113) == 0) { lean_object* x_114; lean_dec(x_112); -x_114 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(x_101, x_96, x_100, x_1, x_107, x_109, x_4, x_5, x_6, x_7); +x_114 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_101, x_96, x_100, x_1, x_107, x_109, x_4, x_5, x_6, x_7); lean_dec_ref(x_100); lean_dec_ref(x_96); if (lean_obj_tag(x_114) == 0) @@ -2281,15 +2314,15 @@ return x_11; } } } -static lean_object* _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3() { +static lean_object* _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__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 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__2)); +x_1 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__6)); x_2 = lean_unsigned_to_nat(27u); -x_3 = lean_unsigned_to_nat(149u); -x_4 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__1)); -x_5 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__0)); +x_3 = lean_unsigned_to_nat(152u); +x_4 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__5)); +x_5 = ((lean_object*)(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__4)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); return x_6; } @@ -2321,181 +2354,296 @@ return x_24; } case 1: { -lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; +lean_object* x_25; lean_object* x_26; lean_dec(x_7); lean_dec_ref(x_6); lean_dec(x_5); -lean_dec_ref(x_4); x_25 = lean_ctor_get(x_2, 0); lean_inc(x_25); lean_dec_ref(x_2); -x_26 = l_Lean_Expr_fvarId_x21(x_3); -lean_dec_ref(x_3); -x_27 = l_Lean_Name_lt(x_25, x_26); -lean_dec(x_26); -lean_dec(x_25); -x_28 = lean_box(x_27); -x_29 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_29, 0, x_28); -return x_29; -} -case 2: +lean_inc_ref(x_4); +x_26 = l_Lean_FVarId_findDecl_x3f___redArg(x_25, x_4); +if (lean_obj_tag(x_26) == 0) { -lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_30 = lean_ctor_get(x_2, 0); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +lean_dec_ref(x_26); +x_28 = l_Lean_Expr_fvarId_x21(x_3); +lean_dec_ref(x_3); +x_29 = l_Lean_FVarId_findDecl_x3f___redArg(x_28, x_4); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_39; +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -lean_dec_ref(x_2); -x_31 = l_Lean_Expr_mvarId_x21(x_3); -lean_dec_ref(x_3); -x_32 = l_Lean_Name_lt(x_30, x_31); -lean_dec(x_31); -lean_dec(x_30); -x_33 = lean_box(x_32); -x_34 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_34, 0, x_33); -return x_34; +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + x_31 = x_29; +} else { + lean_dec_ref(x_29); + x_31 = lean_box(0); } -case 3: +if (lean_obj_tag(x_27) == 0) { -lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_35 = lean_ctor_get(x_2, 0); -lean_inc(x_35); -lean_dec_ref(x_2); -x_36 = l_Lean_Expr_sortLevel_x21(x_3); -lean_dec_ref(x_3); -x_37 = l_Lean_Level_normLt(x_35, x_36); -lean_dec(x_36); -lean_dec(x_35); -x_38 = lean_box(x_37); -x_39 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_39, 0, x_38); -return x_39; -} -case 4: -{ -lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_40 = lean_ctor_get(x_2, 0); -lean_inc(x_40); -lean_dec_ref(x_2); -x_41 = l_Lean_Expr_constName_x21(x_3); -lean_dec_ref(x_3); -x_42 = l_Lean_Name_lt(x_40, x_41); -lean_dec(x_41); -lean_dec(x_40); -x_43 = lean_box(x_42); -x_44 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_44, 0, x_43); -return x_44; -} -case 5: -{ -lean_object* x_45; -x_45 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_45; -} -case 8: -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_46 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_46); -x_47 = lean_ctor_get(x_2, 3); -lean_inc_ref(x_47); -lean_dec_ref(x_2); -x_48 = l_Lean_Expr_letValue_x21(x_3); -x_49 = l_Lean_Expr_letBody_x21(x_3); -lean_dec_ref(x_3); -x_50 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair(x_1, x_46, x_47, x_48, x_49, x_4, x_5, x_6, x_7); -return x_50; -} -case 9: -{ -lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -x_51 = lean_ctor_get(x_2, 0); -lean_inc_ref(x_51); -lean_dec_ref(x_2); -x_52 = l_Lean_Expr_litValue_x21(x_3); -lean_dec_ref(x_3); -x_53 = l_Lean_Literal_lt(x_51, x_52); -lean_dec_ref(x_52); -lean_dec_ref(x_51); -x_54 = lean_box(x_53); -x_55 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_55, 0, x_54); -return x_55; -} -case 10: -{ -lean_object* x_56; lean_object* x_57; -lean_dec_ref(x_3); -lean_dec_ref(x_2); -x_56 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3; -x_57 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(x_56, x_4, x_5, x_6, x_7); -return x_57; -} -case 11: -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_58 = lean_ctor_get(x_2, 1); -lean_inc(x_58); -x_59 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_59); -lean_dec_ref(x_2); -x_60 = l_Lean_Expr_projIdx_x21(x_3); -x_61 = lean_nat_dec_eq(x_58, x_60); -if (x_61 == 0) -{ -uint8_t x_62; lean_object* x_63; lean_object* x_64; -lean_dec_ref(x_59); -lean_dec(x_7); -lean_dec_ref(x_6); -lean_dec(x_5); -lean_dec_ref(x_4); -lean_dec_ref(x_3); -x_62 = lean_nat_dec_lt(x_58, x_60); -lean_dec(x_60); -lean_dec(x_58); -x_63 = lean_box(x_62); -x_64 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_64, 0, x_63); -return x_64; +lean_object* x_45; lean_object* x_46; +x_45 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3; +x_46 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(x_45); +x_39 = x_46; +goto block_44; } else { -lean_object* x_65; lean_object* x_66; -lean_dec(x_60); -lean_dec(x_58); -x_65 = l_Lean_Expr_projExpr_x21(x_3); +lean_object* x_47; +x_47 = lean_ctor_get(x_27, 0); +lean_inc(x_47); +lean_dec_ref(x_27); +x_39 = x_47; +goto block_44; +} +block_38: +{ +lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; +x_34 = l_Lean_LocalDecl_index(x_33); +lean_dec_ref(x_33); +x_35 = lean_nat_dec_lt(x_32, x_34); +lean_dec(x_34); +lean_dec(x_32); +x_36 = lean_box(x_35); +if (lean_is_scalar(x_31)) { + x_37 = lean_alloc_ctor(0, 1, 0); +} else { + x_37 = x_31; +} +lean_ctor_set(x_37, 0, x_36); +return x_37; +} +block_44: +{ +lean_object* x_40; +x_40 = l_Lean_LocalDecl_index(x_39); +lean_dec_ref(x_39); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3; +x_42 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__2(x_41); +x_32 = x_40; +x_33 = x_42; +goto block_38; +} +else +{ +lean_object* x_43; +x_43 = lean_ctor_get(x_30, 0); +lean_inc(x_43); +lean_dec_ref(x_30); +x_32 = x_40; +x_33 = x_43; +goto block_38; +} +} +} +else +{ +uint8_t x_48; +lean_dec(x_27); +x_48 = !lean_is_exclusive(x_29); +if (x_48 == 0) +{ +return x_29; +} +else +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_29, 0); +lean_inc(x_49); +lean_dec(x_29); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +return x_50; +} +} +} +else +{ +uint8_t x_51; +lean_dec_ref(x_4); lean_dec_ref(x_3); -x_66 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lt(x_1, x_59, x_65, x_4, x_5, x_6, x_7); -return x_66; +x_51 = !lean_is_exclusive(x_26); +if (x_51 == 0) +{ +return x_26; +} +else +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_26, 0); +lean_inc(x_52); +lean_dec(x_26); +x_53 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_53, 0, x_52); +return x_53; +} +} +} +case 2: +{ +lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_54 = lean_ctor_get(x_2, 0); +lean_inc(x_54); +lean_dec_ref(x_2); +x_55 = l_Lean_Expr_mvarId_x21(x_3); +lean_dec_ref(x_3); +x_56 = l_Lean_Name_lt(x_54, x_55); +lean_dec(x_55); +lean_dec(x_54); +x_57 = lean_box(x_56); +x_58 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_58, 0, x_57); +return x_58; +} +case 3: +{ +lean_object* x_59; lean_object* x_60; uint8_t x_61; lean_object* x_62; lean_object* x_63; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_59 = lean_ctor_get(x_2, 0); +lean_inc(x_59); +lean_dec_ref(x_2); +x_60 = l_Lean_Expr_sortLevel_x21(x_3); +lean_dec_ref(x_3); +x_61 = l_Lean_Level_normLt(x_59, x_60); +lean_dec(x_60); +lean_dec(x_59); +x_62 = lean_box(x_61); +x_63 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_63, 0, x_62); +return x_63; +} +case 4: +{ +lean_object* x_64; lean_object* x_65; uint8_t x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_64 = lean_ctor_get(x_2, 0); +lean_inc(x_64); +lean_dec_ref(x_2); +x_65 = l_Lean_Expr_constName_x21(x_3); +lean_dec_ref(x_3); +x_66 = l_Lean_Name_lt(x_64, x_65); +lean_dec(x_65); +lean_dec(x_64); +x_67 = lean_box(x_66); +x_68 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_68, 0, x_67); +return x_68; +} +case 5: +{ +lean_object* x_69; +x_69 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_69; +} +case 8: +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_70 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_2, 3); +lean_inc_ref(x_71); +lean_dec_ref(x_2); +x_72 = l_Lean_Expr_letValue_x21(x_3); +x_73 = l_Lean_Expr_letBody_x21(x_3); +lean_dec_ref(x_3); +x_74 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair(x_1, x_70, x_71, x_72, x_73, x_4, x_5, x_6, x_7); +return x_74; +} +case 9: +{ +lean_object* x_75; lean_object* x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +x_75 = lean_ctor_get(x_2, 0); +lean_inc_ref(x_75); +lean_dec_ref(x_2); +x_76 = l_Lean_Expr_litValue_x21(x_3); +lean_dec_ref(x_3); +x_77 = l_Lean_Literal_lt(x_75, x_76); +lean_dec_ref(x_76); +lean_dec_ref(x_75); +x_78 = lean_box(x_77); +x_79 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_79, 0, x_78); +return x_79; +} +case 10: +{ +lean_object* x_80; lean_object* x_81; +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_80 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__7; +x_81 = l_panic___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor_spec__3(x_80, x_4, x_5, x_6, x_7); +return x_81; +} +case 11: +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_2, 1); +lean_inc(x_82); +x_83 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_83); +lean_dec_ref(x_2); +x_84 = l_Lean_Expr_projIdx_x21(x_3); +x_85 = lean_nat_dec_eq(x_82, x_84); +if (x_85 == 0) +{ +uint8_t x_86; lean_object* x_87; lean_object* x_88; +lean_dec_ref(x_83); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +x_86 = lean_nat_dec_lt(x_82, x_84); +lean_dec(x_84); +lean_dec(x_82); +x_87 = lean_box(x_86); +x_88 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_88, 0, x_87); +return x_88; +} +else +{ +lean_object* x_89; lean_object* x_90; +lean_dec(x_84); +lean_dec(x_82); +x_89 = l_Lean_Expr_projExpr_x21(x_3); +lean_dec_ref(x_3); +x_90 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lt(x_1, x_83, x_89, x_4, x_5, x_6, x_7); +return x_90; } } default: { -lean_object* x_67; lean_object* x_68; -x_67 = lean_ctor_get(x_2, 1); -lean_inc_ref(x_67); -x_68 = lean_ctor_get(x_2, 2); -lean_inc_ref(x_68); +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_91); +x_92 = lean_ctor_get(x_2, 2); +lean_inc_ref(x_92); lean_dec_ref(x_2); -x_9 = x_67; -x_10 = x_68; +x_9 = x_91; +x_10 = x_92; x_11 = x_4; x_12 = x_5; x_13 = x_6; @@ -2840,7 +2988,7 @@ return x_29; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_13; lean_object* x_14; uint8_t x_19; @@ -2866,7 +3014,7 @@ x_21 = l_Lean_Meta_instInhabitedParamInfo_default; x_22 = lean_array_get_borrowed(x_21, x_2, x_6); x_23 = lean_ctor_get_uint8(x_22, sizeof(void*)*1 + 4); x_24 = lean_box(0); -x_25 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_25 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); if (x_23 == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -2993,7 +3141,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(lean_object* x_1, lean_object* x_2, uint8_t 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: { uint8_t x_12; @@ -3055,7 +3203,7 @@ else lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_free_object(x_15); lean_dec(x_17); -x_22 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_22 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); x_23 = lean_unsigned_to_nat(1u); x_24 = lean_nat_add(x_5, x_23); lean_dec(x_5); @@ -3094,7 +3242,7 @@ else { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_dec(x_26); -x_32 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_32 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); x_33 = lean_unsigned_to_nat(1u); x_34 = lean_nat_add(x_5, x_33); lean_dec(x_5); @@ -3132,7 +3280,7 @@ return x_38; } } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(uint8_t 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_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11(uint8_t 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) { _start: { if (lean_obj_tag(x_3) == 5) @@ -3170,13 +3318,13 @@ lean_inc(x_19); lean_dec_ref(x_18); x_20 = lean_array_get_size(x_19); x_21 = lean_unsigned_to_nat(0u); -x_22 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___closed__0)); +x_22 = ((lean_object*)(l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___closed__0)); lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); lean_inc_ref(x_2); -x_23 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_20, x_19, x_4, x_1, x_2, x_21, x_22, x_6, x_7, x_8, x_9); +x_23 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg(x_20, x_19, x_4, x_1, x_2, x_21, x_22, x_6, x_7, x_8, x_9); lean_dec(x_19); if (lean_obj_tag(x_23) == 0) { @@ -3193,7 +3341,7 @@ if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_free_object(x_23); -x_27 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(x_17, x_4, x_1, x_2, x_20, x_22, x_6, x_7, x_8, x_9); +x_27 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_17, x_4, x_1, x_2, x_20, x_22, x_6, x_7, x_8, x_9); lean_dec_ref(x_4); if (lean_obj_tag(x_27) == 0) { @@ -3302,7 +3450,7 @@ lean_dec(x_45); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; -x_47 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(x_17, x_4, x_1, x_2, x_20, x_22, x_6, x_7, x_8, x_9); +x_47 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_17, x_4, x_1, x_2, x_20, x_22, x_6, x_7, x_8, x_9); lean_dec_ref(x_4); if (lean_obj_tag(x_47) == 0) { @@ -3464,7 +3612,7 @@ x_25 = lean_mk_array(x_24, x_23); x_26 = lean_unsigned_to_nat(1u); x_27 = lean_nat_sub(x_24, x_26); lean_dec(x_24); -x_28 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(x_1, x_3, x_2, x_25, x_27, x_4, x_5, x_6, x_7); +x_28 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11(x_1, x_3, x_2, x_25, x_27, x_4, x_5, x_6, x_7); return x_28; } case 6: @@ -3698,12 +3846,12 @@ x_12 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltPair(x_11, x_2, x_3, return x_12; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_3); -x_13 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_1, x_2, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_2); lean_dec(x_1); return x_13; @@ -3727,12 +3875,12 @@ x_10 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lt(x_9, x_2, x_3, x_4, return x_10; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg___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) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_4); -x_14 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg(x_1, x_2, x_3, x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); @@ -3748,33 +3896,33 @@ x_10 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt(x_9, x_2, return x_10; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg___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: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_4); -x_13 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___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_EXPORT lean_object* l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11___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: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_1); -x_12 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_12 = l_Lean_Expr_withAppAux___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__11(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_12; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg___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_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg___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) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_5); -x_14 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); @@ -3782,15 +3930,6 @@ lean_dec(x_1); return x_14; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___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) { -_start: -{ -uint8_t x_9; lean_object* x_10; -x_9 = lean_unbox(x_1); -x_10 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor(x_9, x_2, x_3, x_4, x_5, x_6, x_7); -return x_10; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp___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) { _start: { @@ -3800,40 +3939,49 @@ x_10 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp(x_9, x_2, x_3, x_ return x_10; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +x_10 = l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor(x_9, x_2, x_3, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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_15; -x_15 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_10, x_11, x_12, x_13); +x_15 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_10, x_11, x_12, x_13); return x_15; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___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, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_4); -x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__5(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(x_1, x_2, x_3, x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t 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, lean_object* x_14) { _start: { lean_object* x_16; -x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14); +x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6___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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7___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, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; lean_object* x_17; x_16 = lean_unbox(x_5); -x_17 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__6(x_1, x_2, x_3, x_4, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_ltApp_spec__7(x_1, x_2, x_3, x_4, x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_4); lean_dec_ref(x_3); lean_dec_ref(x_2); @@ -3841,39 +3989,39 @@ lean_dec(x_1); return x_17; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8(lean_object* x_1, lean_object* x_2, uint8_t 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) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(lean_object* x_1, lean_object* x_2, uint8_t 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_15; -x_15 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_10, x_11, x_12, x_13); +x_15 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_1, x_2, x_3, x_4, x_7, x_8, x_10, x_11, x_12, x_13); return x_15; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8___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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___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, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_3); -x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__8(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(x_1, x_2, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec_ref(x_2); lean_dec(x_1); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_14) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t 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, lean_object* x_14) { _start: { lean_object* x_16; -x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14); +x_16 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___redArg(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_11, x_12, x_13, x_14); return x_16; } } -LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9___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, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10___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, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; lean_object* x_17; x_16 = lean_unbox(x_4); -x_17 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__9(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_WellFounded_opaqueFix_u2083___at___00__private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt_spec__10(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec_ref(x_3); lean_dec_ref(x_2); lean_dec(x_1); @@ -3937,10 +4085,12 @@ l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_config = _init_l___private_Lean_Met lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_config); l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo___closed__0 = _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo___closed__0(); lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_getParamsInfo___closed__0); -l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0 = _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0(); -lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0); l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3 = _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3(); lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__3); +l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0 = _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0(); +lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_allChildrenLt___closed__0); +l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__7 = _init_l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__7(); +lean_mark_persistent(l___private_Lean_Meta_ACLt_0__Lean_Meta_ACLt_main_lexSameCtor___closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Sym/Simp/ControlFlow.c b/stage0/stdlib/Lean/Meta/Sym/Simp/ControlFlow.c index f8f8daf41d..9fc28671b1 100644 --- a/stage0/stdlib/Lean/Meta/Sym/Simp/ControlFlow.c +++ b/stage0/stdlib/Lean/Meta/Sym/Simp/ControlFlow.c @@ -162,44 +162,44 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpDIte___lam__0___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_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpDIte(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_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpDIte___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "cond"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(130, 140, 200, 235, 144, 197, 118, 1)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1_value; -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "cond_false"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(98, 92, 93, 112, 12, 94, 108, 230)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3_value; -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "cond_true"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value),LEAN_SCALAR_PTR_LITERAL(159, 102, 104, 109, 28, 196, 37, 90)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5_value; -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = "cond_cond_congr"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_1),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value),LEAN_SCALAR_PTR_LITERAL(41, 228, 101, 80, 96, 119, 204, 25)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value; -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "cond_cond_eq_false"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_1),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value),LEAN_SCALAR_PTR_LITERAL(22, 101, 151, 22, 186, 118, 232, 224)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value; -static const lean_string_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "cond_cond_eq_true"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_1),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(52, 237, 153, 45, 203, 196, 217, 147)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "cond"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(130, 140, 200, 235, 144, 197, 118, 1)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "cond_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(98, 92, 93, 112, 12, 94, 108, 230)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "cond_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__4_value),LEAN_SCALAR_PTR_LITERAL(159, 102, 104, 109, 28, 196, 37, 90)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = "cond_cond_congr"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value_aux_1),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__6_value),LEAN_SCALAR_PTR_LITERAL(41, 228, 101, 80, 96, 119, 204, 25)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "cond_cond_eq_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value_aux_1),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__8_value),LEAN_SCALAR_PTR_LITERAL(22, 101, 151, 22, 186, 118, 232, 224)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "cond_cond_eq_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__9_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_0),((lean_object*)&l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpIte___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value_aux_1),((lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(52, 237, 153, 45, 203, 196, 217, 147)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11_value; lean_object* l_Lean_Meta_Sym_getBoolTrueExpr___redArg(lean_object*); uint8_t l___private_Lean_Meta_Sym_ExprPtr_0__Lean_Meta_Sym_isSameExpr_unsafe__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_Sym_getBoolFalseExpr___redArg(lean_object*); lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0(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_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___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_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond(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_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___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_Meta_Sym_Simp_simpCond___lam__0(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_Lean_Meta_Sym_Simp_simpCond___lam__0___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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpCond(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_Sym_Simp_simpCond___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* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpMatch_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpMatch_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); @@ -5295,7 +5295,7 @@ x_12 = l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpDIte return x_12; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0(uint8_t 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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0(uint8_t 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_16; uint8_t x_17; @@ -5395,7 +5395,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_ctor_get(x_25, 1); lean_inc_ref(x_27); x_28 = l_Lean_Expr_appFnCleanup___redArg(x_25); -x_29 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1)); +x_29 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1)); x_30 = l_Lean_Expr_isConstOf(x_28, x_29); if (x_30 == 0) { @@ -5494,7 +5494,7 @@ else { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_free_object(x_32); -x_42 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); +x_42 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); x_43 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_44 = l_Lean_mkConst(x_42, x_43); @@ -5533,7 +5533,7 @@ else { 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_free_object(x_32); -x_50 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); +x_50 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); x_51 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_52 = l_Lean_mkConst(x_50, x_51); @@ -5581,7 +5581,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean lean_free_object(x_32); lean_dec_ref(x_24); lean_dec_ref(x_6); -x_59 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); +x_59 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); x_60 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_61 = l_Lean_mkConst(x_59, x_60); @@ -5643,7 +5643,7 @@ else { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_free_object(x_32); -x_71 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); +x_71 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); x_72 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_73 = l_Lean_mkConst(x_71, x_72); @@ -5695,7 +5695,7 @@ lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean lean_free_object(x_32); lean_dec_ref(x_24); lean_dec_ref(x_6); -x_80 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); +x_80 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); x_81 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_82 = l_Lean_mkConst(x_80, x_81); @@ -5798,7 +5798,7 @@ return x_98; else { lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_99 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); +x_99 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__3)); x_100 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_101 = l_Lean_mkConst(x_99, x_100); @@ -5848,7 +5848,7 @@ else lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_dec_ref(x_24); lean_dec_ref(x_6); -x_108 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); +x_108 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__5)); x_109 = l_Lean_Expr_constLevels_x21(x_28); lean_dec_ref(x_28); x_110 = l_Lean_mkConst(x_108, x_109); @@ -5952,7 +5952,7 @@ if (x_131 == 0) { lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; x_132 = lean_ctor_get(x_130, 0); -x_133 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); +x_133 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); x_134 = l_Lean_Expr_replaceFn(x_2, x_133); x_135 = l_Lean_mkAppB(x_134, x_118, x_119); lean_ctor_set(x_32, 1, x_135); @@ -5967,7 +5967,7 @@ lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; x_136 = lean_ctor_get(x_130, 0); lean_inc(x_136); lean_dec(x_130); -x_137 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); +x_137 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); x_138 = l_Lean_Expr_replaceFn(x_2, x_137); x_139 = l_Lean_mkAppB(x_138, x_118, x_119); lean_ctor_set(x_32, 1, x_139); @@ -6016,7 +6016,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_144 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); +x_144 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); x_145 = l_Lean_Expr_replaceFn(x_2, x_144); x_146 = l_Lean_Expr_app___override(x_145, x_119); lean_ctor_set(x_32, 1, x_146); @@ -6056,7 +6056,7 @@ if (lean_is_exclusive(x_151)) { lean_dec_ref(x_151); x_153 = lean_box(0); } -x_154 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); +x_154 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); x_155 = l_Lean_Expr_replaceFn(x_2, x_154); x_156 = l_Lean_mkAppB(x_155, x_118, x_119); lean_ctor_set(x_32, 1, x_156); @@ -6109,7 +6109,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_161 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); +x_161 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); x_162 = l_Lean_Expr_replaceFn(x_2, x_161); x_163 = l_Lean_Expr_app___override(x_162, x_119); lean_ctor_set(x_32, 1, x_163); @@ -6170,7 +6170,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_168 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); +x_168 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); x_169 = l_Lean_Expr_replaceFn(x_2, x_168); x_170 = l_Lean_Expr_app___override(x_169, x_119); lean_ctor_set(x_32, 1, x_170); @@ -6229,7 +6229,7 @@ if (lean_is_exclusive(x_179)) { lean_dec_ref(x_179); x_181 = lean_box(0); } -x_182 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); +x_182 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); x_183 = l_Lean_Expr_replaceFn(x_2, x_182); x_184 = l_Lean_mkAppB(x_183, x_118, x_119); lean_ctor_set(x_32, 1, x_184); @@ -6282,7 +6282,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_189 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); +x_189 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); x_190 = l_Lean_Expr_replaceFn(x_2, x_189); x_191 = l_Lean_Expr_app___override(x_190, x_119); lean_ctor_set(x_32, 1, x_191); @@ -6347,7 +6347,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_196 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); +x_196 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); x_197 = l_Lean_Expr_replaceFn(x_2, x_196); x_198 = l_Lean_Expr_app___override(x_197, x_119); lean_ctor_set(x_32, 1, x_198); @@ -6459,7 +6459,7 @@ if (lean_is_exclusive(x_215)) { lean_dec_ref(x_215); x_217 = lean_box(0); } -x_218 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); +x_218 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__7)); x_219 = l_Lean_Expr_replaceFn(x_2, x_218); x_220 = l_Lean_mkAppB(x_219, x_203, x_204); x_221 = lean_alloc_ctor(1, 2, 1); @@ -6512,7 +6512,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_226 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); +x_226 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__9)); x_227 = l_Lean_Expr_replaceFn(x_2, x_226); x_228 = l_Lean_Expr_app___override(x_227, x_204); x_229 = lean_alloc_ctor(1, 2, 1); @@ -6577,7 +6577,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); lean_dec(x_3); -x_234 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); +x_234 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__11)); x_235 = l_Lean_Expr_replaceFn(x_2, x_234); x_236 = l_Lean_Expr_app___override(x_235, x_204); x_237 = lean_alloc_ctor(1, 2, 1); @@ -6665,16 +6665,16 @@ return x_14; } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpCond___lam__0___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) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_1); -x_14 = l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Meta_Sym_Simp_simpCond___lam__0(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_14; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond(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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpCond(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_12; lean_object* x_13; uint8_t x_14; @@ -6685,7 +6685,7 @@ if (x_14 == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_15 = lean_box(x_14); -x_16 = lean_alloc_closure((void*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___boxed), 12, 1); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___boxed), 12, 1); lean_closure_set(x_16, 0, x_15); x_17 = lean_nat_sub(x_12, x_13); lean_dec(x_12); @@ -6715,11 +6715,11 @@ return x_20; } } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpCond___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_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Meta_Sym_Simp_simpCond(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_12; } } @@ -7106,7 +7106,7 @@ x_18 = lean_name_eq(x_16, x_17); if (x_18 == 0) { lean_object* x_19; uint8_t x_20; -x_19 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1)); +x_19 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpCond___lam__0___closed__1)); x_20 = lean_name_eq(x_16, x_19); if (x_20 == 0) { @@ -7131,7 +7131,7 @@ else { lean_object* x_25; lean_dec(x_16); -x_25 = l___private_Lean_Meta_Sym_Simp_ControlFlow_0__Lean_Meta_Sym_Simp_simpCond(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_25 = l_Lean_Meta_Sym_Simp_simpCond(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_25; } } diff --git a/stage0/stdlib/Lean/Meta/Sym/Simp/Have.c b/stage0/stdlib/Lean/Meta/Sym/Simp/Have.c index 6f47d6c36a..a056496608 100644 --- a/stage0/stdlib/Lean/Meta/Sym/Simp/Have.c +++ b/stage0/stdlib/Lean/Meta/Sym/Simp/Have.c @@ -13,18 +13,18 @@ #ifdef __cplusplus extern "C" { #endif -static const lean_string_object l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "_inhabitedExprDummy"}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "_inhabitedExprDummy"}; +static const lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0 = (const lean_object*)&l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value; lean_object* l_Lean_Name_mkStr1(lean_object*); -static const lean_ctor_object l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value),LEAN_SCALAR_PTR_LITERAL(37, 247, 56, 151, 29, 116, 116, 243)}}; -static const lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1 = (const lean_object*)&l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__0_value),LEAN_SCALAR_PTR_LITERAL(37, 247, 56, 151, 29, 116, 116, 243)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1 = (const lean_object*)&l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1_value; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -static lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2; +static lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3; -static lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult; +static lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3; +static lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4; +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult; uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DTreeMap_Internal_Impl_contains___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DTreeMap_Internal_Impl_contains___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt_spec__0___redArg___boxed(lean_object*, lean_object*); @@ -181,9 +181,9 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalD LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___00Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go_spec__4_spec__4___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_EXPORT lean_object* l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go_spec__4(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_withLocalDeclD___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go_spec__4___boxed(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___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0; -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Sym_Simp_toBetaApp___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_toBetaApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_toBetaApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_consumeForallN(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); @@ -393,17 +393,17 @@ static const lean_closure_object l_Lean_Meta_Sym_Simp_simpLet___closed__0_value static const lean_object* l_Lean_Meta_Sym_Simp_simpLet___closed__0 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpLet___closed__0_value; LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpLet(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_Sym_Simp_simpLet___boxed(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* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = ((lean_object*)(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1)); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__1)); x_3 = l_Lean_Expr_const___override(x_2, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -412,13 +412,13 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3; +x_1 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3; x_2 = lean_box(0); -x_3 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2; +x_3 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2; x_4 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -429,19 +429,19 @@ lean_ctor_set(x_4, 5, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default() { _start: { lean_object* x_1; -x_1 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4; +x_1 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4; return x_1; } } -static lean_object* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult() { _start: { lean_object* x_1; -x_1 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_1 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; return x_1; } } @@ -1233,7 +1233,7 @@ lean_ctor_set(x_30, 1, x_38); lean_ctor_set(x_30, 0, x_42); lean_ctor_set(x_28, 1, x_39); x_46 = l_ReaderT_instMonad___redArg(x_28); -x_47 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_47 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; x_48 = l_instInhabitedOfMonad___redArg(x_46, x_47); x_49 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_49, 0, x_48); @@ -1278,7 +1278,7 @@ lean_ctor_set(x_64, 4, x_61); lean_ctor_set(x_28, 1, x_57); lean_ctor_set(x_28, 0, x_64); x_65 = l_ReaderT_instMonad___redArg(x_28); -x_66 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_66 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; x_67 = l_instInhabitedOfMonad___redArg(x_65, x_66); x_68 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_68, 0, x_67); @@ -1342,7 +1342,7 @@ x_86 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_78); x_87 = l_ReaderT_instMonad___redArg(x_86); -x_88 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_88 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; x_89 = l_instInhabitedOfMonad___redArg(x_87, x_88); x_90 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_90, 0, x_89); @@ -1451,7 +1451,7 @@ if (lean_is_scalar(x_108)) { lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_115); x_124 = l_ReaderT_instMonad___redArg(x_123); -x_125 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_125 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; x_126 = l_instInhabitedOfMonad___redArg(x_124, x_125); x_127 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_127, 0, x_126); @@ -1578,7 +1578,7 @@ if (lean_is_scalar(x_148)) { lean_ctor_set(x_163, 0, x_162); lean_ctor_set(x_163, 1, x_155); x_164 = l_ReaderT_instMonad___redArg(x_163); -x_165 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; +x_165 = l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default; x_166 = l_instInhabitedOfMonad___redArg(x_164, x_165); x_167 = lean_alloc_closure((void*)(l_instInhabitedForall___redArg___lam__0___boxed), 2, 1); lean_closure_set(x_167, 0, x_166); @@ -2660,7 +2660,7 @@ x_12 = l_Lean_Meta_withLocalDeclD___at___00__private_Lean_Meta_Sym_Simp_Have_0__ return x_12; } } -static lean_object* _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0() { +static lean_object* _init_l_Lean_Meta_Sym_Simp_toBetaApp___closed__0() { _start: { lean_object* x_1; lean_object* x_2; @@ -2669,22 +2669,22 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp(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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_toBetaApp(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) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0; +x_9 = l_Lean_Meta_Sym_Simp_toBetaApp___closed__0; x_10 = lean_box(1); lean_inc_ref(x_1); x_11 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go(x_1, x_1, x_9, x_9, x_9, x_9, x_9, x_9, x_10, x_2, x_3, x_4, x_5, x_6, x_7); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_toBetaApp___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) { _start: { lean_object* x_9; -x_9 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_9 = l_Lean_Meta_Sym_Simp_toBetaApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } } @@ -5853,7 +5853,7 @@ else { lean_object* x_23; lean_object* x_24; lean_object* x_25; x_23 = lean_unsigned_to_nat(0u); -x_24 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0; +x_24 = l_Lean_Meta_Sym_Simp_toBetaApp___closed__0; x_25 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toHave_go___redArg(x_1, x_3, x_2, x_24, x_23, x_5, x_6, x_7, x_8, x_9, x_10); return x_25; } @@ -7231,7 +7231,7 @@ lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_6); lean_inc_ref(x_1); -x_13 = l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp(x_1, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Meta_Sym_Simp_toBetaApp(x_1, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_13) == 0) { 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; lean_object* x_21; @@ -8486,16 +8486,16 @@ lean_dec_ref(res); res = initialize_Init_While(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult); +l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2 = _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__2); +l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3 = _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__3); +l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4 = _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default___closed__4); +l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default = _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult_default); +l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult = _init_l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_instInhabitedToBetaAppResult); l_Std_DTreeMap_Internal_Impl_Const_get_x21___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt_spec__1___redArg___closed__3 = _init_l_Std_DTreeMap_Internal_Impl_Const_get_x21___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt_spec__1___redArg___closed__3(); lean_mark_persistent(l_Std_DTreeMap_Internal_Impl_Const_get_x21___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt_spec__1___redArg___closed__3); l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt___closed__0 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_collectFVarIdsAt___closed__0(); @@ -8512,8 +8512,8 @@ l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go___lam__1_ lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go___lam__1___boxed__const__1); l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go___closed__7 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go___closed__7(); lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp_go___closed__7); -l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0 = _init_l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0(); -lean_mark_persistent(l___private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_toBetaApp___closed__0); +l_Lean_Meta_Sym_Simp_toBetaApp___closed__0 = _init_l_Lean_Meta_Sym_Simp_toBetaApp___closed__0(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_toBetaApp___closed__0); l_Lean_PersistentHashMap_empty___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_elimAuxApps_spec__0___closed__0 = _init_l_Lean_PersistentHashMap_empty___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_elimAuxApps_spec__0___closed__0(); lean_mark_persistent(l_Lean_PersistentHashMap_empty___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_elimAuxApps_spec__0___closed__0); l_Lean_PersistentHashMap_empty___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_elimAuxApps_spec__0___closed__1 = _init_l_Lean_PersistentHashMap_empty___at___00__private_Lean_Meta_Sym_Simp_Have_0__Lean_Meta_Sym_Simp_elimAuxApps_spec__0___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cbv.c b/stage0/stdlib/Lean/Meta/Tactic/Cbv.c index f4d3dc9d78..d4f0039fdf 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Cbv.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Cbv.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Cbv -// Imports: public import Lean.Meta.Tactic.Cbv.Main public import Lean.Meta.Tactic.Cbv.Util +// Imports: public import Lean.Meta.Tactic.Cbv.Main public import Lean.Meta.Tactic.Cbv.Util public import Lean.Meta.Tactic.Cbv.CbvEvalExt #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -207,6 +207,7 @@ return x_2; } lean_object* initialize_Lean_Meta_Tactic_Cbv_Main(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_Cbv_Util(uint8_t builtin); +lean_object* initialize_Lean_Meta_Tactic_Cbv_CbvEvalExt(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Cbv(uint8_t builtin) { lean_object * res; @@ -218,6 +219,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Cbv_Util(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Cbv_CbvEvalExt(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___private_Lean_Meta_Tactic_Cbv_0__Lean_initFn___closed__22_00___x40_Lean_Meta_Tactic_Cbv_4268171306____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_0__Lean_initFn___closed__22_00___x40_Lean_Meta_Tactic_Cbv_4268171306____hygCtx___hyg_2_(); lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_0__Lean_initFn___closed__22_00___x40_Lean_Meta_Tactic_Cbv_4268171306____hygCtx___hyg_2_); l___private_Lean_Meta_Tactic_Cbv_0__Lean_initFn___closed__24_00___x40_Lean_Meta_Tactic_Cbv_4268171306____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_0__Lean_initFn___closed__24_00___x40_Lean_Meta_Tactic_Cbv_4268171306____hygCtx___hyg_2_(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cbv/CbvEvalExt.c b/stage0/stdlib/Lean/Meta/Tactic/Cbv/CbvEvalExt.c new file mode 100644 index 0000000000..f482c2f34d --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/Cbv/CbvEvalExt.c @@ -0,0 +1,2612 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.Cbv.CbvEvalExt +// Imports: public import Lean.Data.NameMap public import Lean.ScopedEnvExtension public import Lean.Elab.InfoTree public import Lean.Meta.Sym.Simp.Theorems +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_Lean_Expr_getAppFn(lean_object*); +lean_object* l_Lean_Expr_constName_x3f(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_Theorem_declName(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_Theorem_declName___boxed(lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); +uint8_t lean_expr_eqv(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq___boxed(lean_object*, lean_object*); +static const lean_closure_object l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq___boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry___closed__0 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry___closed__0_value; +LEAN_EXPORT const lean_object* l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry___closed__0_value; +extern lean_object* l_Lean_Meta_Sym_Simp_instInhabitedTheorem_default; +static lean_object* l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry; +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___boxed(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_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "Eq"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__0_value; +lean_object* l_Lean_Name_mkStr1(lean_object*); +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(143, 37, 101, 248, 9, 246, 191, 223)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__1_value; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = "The conclusion "}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__2 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__2_value; +lean_object* l_Lean_stringToMessageData(lean_object*); +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = " of theorem "}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__4 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__4_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = " is not an equality"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__6 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__6_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 33, .m_capacity = 33, .m_length = 32, .m_data = "The left-hand side of a theorem "}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__8 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__8_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 37, .m_capacity = 37, .m_length = 36, .m_data = " is not an application of a constant"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__10 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__10_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11; +uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofExpr(lean_object*); +lean_object* l_Lean_Expr_appFn_x21(lean_object*); +lean_object* l_Lean_Expr_appArg_x21(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 24, .m_capacity = 24, .m_length = 23, .m_data = "A private declaration `"}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__7 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__7_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 79, .m_capacity = 79, .m_length = 78, .m_data = "` (from the current module) exists but would need to be public to access here."}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__9 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__9_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 23, .m_capacity = 23, .m_length = 22, .m_data = "A public declaration `"}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__11 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__11_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 68, .m_capacity = 68, .m_length = 67, .m_data = "` exists but is imported privately; consider adding `public import "}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__13 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__13_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "`."}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__15 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__15_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "` (from `"}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__17 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__17_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18; +static const lean_string_object l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 54, .m_capacity = 54, .m_length = 53, .m_data = "`) exists but would need to be public to access here."}; +static const lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__19 = (const lean_object*)&l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__19_value; +static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20; +uint8_t l_Lean_Name_isAnonymous(lean_object*); +lean_object* l_Lean_Environment_setExporting(lean_object*, uint8_t); +uint8_t l_Lean_Environment_contains(lean_object*, lean_object*, uint8_t); +extern lean_object* l_Lean_Options_empty; +lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); +lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); +lean_object* l_Lean_MessageData_note(lean_object*); +lean_object* l_Lean_Environment_header(lean_object*); +lean_object* l_Lean_EnvironmentHeader_moduleNames(lean_object*); +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_isPrivateName(lean_object*); +lean_object* l_Lean_MessageData_ofName(lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_unknownIdentifierMessageTag; +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "Unknown constant `"}; +static const lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__0 = (const lean_object*)&l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__0_value; +static lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1; +static const lean_string_object l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "`"}; +static const lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__2 = (const lean_object*)&l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__2_value; +static lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3; +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_findConstVal_x3f(lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_reverse___redArg(lean_object*); +lean_object* l_Lean_mkLevelParam(lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__1(lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 70, .m_capacity = 70, .m_length = 69, .m_data = " is not a theorem and thus cannot be marked with `cbv_eval` attribute"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__0 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__0_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1; +lean_object* l_Lean_mkConst(lean_object*, lean_object*); +lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_mkTheoremFromDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState_default; +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState; +static lean_object* l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0; +static lean_object* l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1; +lean_object* l_Lean_Meta_Sym_Simp_Theorems_insert(lean_object*, lean_object*); +lean_object* l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_NameMap_insert_spec__0___redArg(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry(lean_object*, lean_object*); +uint8_t l_Lean_instDecidableEqOLeanLevel(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object*); +static const lean_closure_object l_Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +static const lean_closure_object l_Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "cbvEvalExt"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(98, 239, 116, 42, 18, 181, 22, 235)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +static const lean_closure_object l_Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*5 + 0, .m_other = 5, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value),((lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value),((lean_object*)(((size_t)(1) << 1) | 1)),((lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value),((lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_ = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2__value; +lean_object* l_Lean_registerSimpleScopedEnvExtension___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_cbvEvalExt; +lean_object* l_Lean_ScopedEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1; +static lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2; +lean_object* lean_st_ref_take(lean_object*); +lean_object* l_Lean_ScopedEnvExtension_addCore___redArg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* lean_st_ref_set(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___boxed(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_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +extern lean_object* l_Lean_Meta_instInhabitedConfigWithKey___private__1; +lean_object* lean_st_mk_ref(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "Attribute `["}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +static const lean_string_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "]` cannot be erased"}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed, .m_arity = 7, .m_num_fixed = 1, .m_objs = {((lean_object*)(((size_t)(1) << 1) | 1))} }; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "cbvEvalAttr"}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(252, 249, 96, 5, 29, 29, 209, 26)}}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "cbv_eval"}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(48, 92, 200, 28, 152, 124, 247, 101)}}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_closure_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*1, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed, .m_arity = 5, .m_num_fixed = 1, .m_objs = {((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value)} }; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_string_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 81, .m_capacity = 81, .m_length = 80, .m_data = "Register a theorem as a rewrite rule for `cbv` evaluation of a given definition."}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__7_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 8, .m_other = 3, .m_tag = 0}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),LEAN_SCALAR_PTR_LITERAL(1, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__7_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__7_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +static const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__8_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 0}, .m_objs = {((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__7_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value),((lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value)}}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__8_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__8_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__value; +lean_object* l_Lean_registerBuiltinAttribute(lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_Theorem_declName(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = lean_ctor_get(x_1, 0); +x_3 = l_Lean_Expr_getAppFn(x_2); +x_4 = l_Lean_Expr_constName_x3f(x_3); +lean_dec_ref(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_Theorem_declName___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_Sym_Simp_Theorem_declName(x_1); +lean_dec_ref(x_1); +return x_2; +} +} +LEAN_EXPORT uint8_t l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_name_eq(x_3, x_5); +if (x_7 == 0) +{ +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_4, 0); +x_9 = lean_ctor_get(x_6, 0); +x_10 = lean_expr_eqv(x_8, x_9); +return x_10; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_Meta_Tactic_Cbv_instBEqCbvEvalEntry_beq(x_1, x_2); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Sym_Simp_instInhabitedTheorem_default; +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0; +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0(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) { +_start: +{ +lean_object* x_9; +x_9 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, lean_box(0)); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_alloc_closure((void*)(l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___lam__0___boxed), 8, 1); +lean_closure_set(x_9, 0, x_2); +x_10 = 0; +x_11 = lean_box(0); +x_12 = l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_box(0), x_10, x_11, x_1, x_9, x_3, x_10, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_12, 0); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg___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) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_3); +x_10 = l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg(x_1, x_2, x_9, x_4, x_5, x_6, x_7); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___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) { +_start: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_4); +x_11 = l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3(x_1, x_2, x_3, x_10, x_5, x_6, x_7, x_8); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +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; lean_object* x_14; lean_object* x_15; +x_7 = lean_st_ref_get(x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec(x_7); +x_9 = lean_st_ref_get(x_3); +x_10 = lean_ctor_get(x_9, 0); +lean_inc_ref(x_10); +lean_dec(x_9); +x_11 = lean_ctor_get(x_2, 2); +x_12 = lean_ctor_get(x_4, 2); +lean_inc_ref(x_12); +lean_inc_ref(x_11); +x_13 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_13, 0, x_8); +lean_ctor_set(x_13, 1, x_10); +lean_ctor_set(x_13, 2, x_11); +lean_ctor_set(x_13, 3, x_12); +x_14 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_1); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at___00Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2_spec__3(x_1, x_2, x_3, x_4, x_5); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_7); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__4)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__6)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__8)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__10)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__1)); +x_11 = lean_unsigned_to_nat(3u); +x_12 = l_Lean_Expr_isAppOfArity(x_4, x_10, x_11); +if (x_12 == 0) +{ +lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; +x_13 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3; +x_14 = l_Lean_MessageData_ofExpr(x_1); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +x_16 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5; +x_17 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_MessageData_ofExpr(x_2); +x_19 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +x_20 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7; +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_21, x_5, x_6, x_7, x_8); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec_ref(x_1); +x_23 = l_Lean_Expr_appFn_x21(x_4); +x_24 = l_Lean_Expr_appArg_x21(x_23); +lean_dec_ref(x_23); +x_25 = l_Lean_Expr_getAppFn(x_24); +lean_dec_ref(x_24); +x_26 = l_Lean_Expr_constName_x3f(x_25); +lean_dec_ref(x_25); +if (lean_obj_tag(x_26) == 1) +{ +uint8_t x_27; +lean_dec_ref(x_2); +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_ctor_set_tag(x_26, 0); +return x_26; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +else +{ +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_dec(x_26); +x_30 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9; +x_31 = l_Lean_MessageData_ofExpr(x_2); +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11; +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_34, x_5, x_6, x_7, x_8); +return x_35; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_4); +lean_dec_ref(x_3); +return x_10; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 2, x_2); +lean_ctor_set(x_3, 3, x_1); +lean_ctor_set(x_3, 4, x_1); +lean_ctor_set(x_3, 5, x_1); +lean_ctor_set(x_3, 6, x_1); +lean_ctor_set(x_3, 7, x_1); +lean_ctor_set(x_3, 8, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(32u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5() { +_start: +{ +size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = 5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3; +x_4 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4; +x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_3); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_2); +lean_ctor_set_usize(x_5, 4, x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(1); +x_2 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5; +x_3 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__7)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__9)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__11)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__13)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__15)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__17)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__19)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_st_ref_get(x_3); +x_6 = lean_ctor_get(x_5, 0); +lean_inc_ref(x_6); +lean_dec(x_5); +x_7 = l_Lean_Name_isAnonymous(x_2); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = lean_ctor_get_uint8(x_6, sizeof(void*)*8); +if (x_8 == 0) +{ +lean_object* x_9; +lean_dec_ref(x_6); +lean_dec(x_2); +x_9 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_9, 0, x_1); +return x_9; +} +else +{ +lean_object* x_10; uint8_t x_11; +lean_inc_ref(x_6); +x_10 = l_Lean_Environment_setExporting(x_6, x_7); +lean_inc(x_2); +lean_inc_ref(x_10); +x_11 = l_Lean_Environment_contains(x_10, x_2, x_8); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec_ref(x_10); +lean_dec_ref(x_6); +lean_dec(x_2); +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_1); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_13 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2; +x_14 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6; +x_15 = l_Lean_Options_empty; +x_16 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_16, 0, x_10); +lean_ctor_set(x_16, 1, x_13); +lean_ctor_set(x_16, 2, x_14); +lean_ctor_set(x_16, 3, x_15); +lean_inc(x_2); +x_17 = l_Lean_MessageData_ofConstName(x_2, x_7); +x_18 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Lean_Environment_getModuleIdxFor_x3f(x_6, x_2); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec_ref(x_6); +lean_dec(x_2); +x_20 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8; +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +x_22 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10; +x_23 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = l_Lean_MessageData_note(x_23); +x_25 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_24); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +else +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_19); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_ctor_get(x_19, 0); +x_29 = lean_box(0); +x_30 = l_Lean_Environment_header(x_6); +lean_dec_ref(x_6); +x_31 = l_Lean_EnvironmentHeader_moduleNames(x_30); +x_32 = lean_array_get(x_29, x_31, x_28); +lean_dec(x_28); +lean_dec_ref(x_31); +x_33 = l_Lean_isPrivateName(x_2); +lean_dec(x_2); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; 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; +x_34 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12; +x_35 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_18); +x_36 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14; +x_37 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +x_38 = l_Lean_MessageData_ofName(x_32); +x_39 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16; +x_41 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_MessageData_note(x_41); +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_1); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set_tag(x_19, 0); +lean_ctor_set(x_19, 0, x_43); +return x_19; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; 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; +x_44 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8; +x_45 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_18); +x_46 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18; +x_47 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +x_48 = l_Lean_MessageData_ofName(x_32); +x_49 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +x_50 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20; +x_51 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +x_52 = l_Lean_MessageData_note(x_51); +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set_tag(x_19, 0); +lean_ctor_set(x_19, 0, x_53); +return x_19; +} +} +else +{ +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_54 = lean_ctor_get(x_19, 0); +lean_inc(x_54); +lean_dec(x_19); +x_55 = lean_box(0); +x_56 = l_Lean_Environment_header(x_6); +lean_dec_ref(x_6); +x_57 = l_Lean_EnvironmentHeader_moduleNames(x_56); +x_58 = lean_array_get(x_55, x_57, x_54); +lean_dec(x_54); +lean_dec_ref(x_57); +x_59 = l_Lean_isPrivateName(x_2); +lean_dec(x_2); +if (x_59 == 0) +{ +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; lean_object* x_69; lean_object* x_70; +x_60 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12; +x_61 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_18); +x_62 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14; +x_63 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_MessageData_ofName(x_58); +x_65 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +x_66 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16; +x_67 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_68 = l_Lean_MessageData_note(x_67); +x_69 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_69, 0, x_1); +lean_ctor_set(x_69, 1, x_68); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_69); +return x_70; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_71 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8; +x_72 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_18); +x_73 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18; +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_73); +x_75 = l_Lean_MessageData_ofName(x_58); +x_76 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +x_77 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20; +x_78 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_78, 0, x_76); +lean_ctor_set(x_78, 1, x_77); +x_79 = l_Lean_MessageData_note(x_78); +x_80 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_80, 0, x_1); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_80); +return x_81; +} +} +} +} +} +} +else +{ +lean_object* x_82; +lean_dec_ref(x_6); +lean_dec(x_2); +x_82 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_82, 0, x_1); +return x_82; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg(x_1, x_2, x_3); +lean_dec(x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg(x_1, x_2, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_8, 0); +x_11 = l_Lean_unknownIdentifierMessageTag; +x_12 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +lean_ctor_set(x_8, 0, x_12); +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_13 = lean_ctor_get(x_8, 0); +lean_inc(x_13); +lean_dec(x_8); +x_14 = l_Lean_unknownIdentifierMessageTag; +x_15 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_5); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = lean_ctor_get(x_5, 5); +x_10 = l_Lean_replaceRef(x_1, x_9); +lean_dec(x_9); +lean_ctor_set(x_5, 5, x_10); +x_11 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_5); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_12 = lean_ctor_get(x_5, 0); +x_13 = lean_ctor_get(x_5, 1); +x_14 = lean_ctor_get(x_5, 2); +x_15 = lean_ctor_get(x_5, 3); +x_16 = lean_ctor_get(x_5, 4); +x_17 = lean_ctor_get(x_5, 5); +x_18 = lean_ctor_get(x_5, 6); +x_19 = lean_ctor_get(x_5, 7); +x_20 = lean_ctor_get(x_5, 8); +x_21 = lean_ctor_get(x_5, 9); +x_22 = lean_ctor_get(x_5, 10); +x_23 = lean_ctor_get(x_5, 11); +x_24 = lean_ctor_get_uint8(x_5, sizeof(void*)*14); +x_25 = lean_ctor_get(x_5, 12); +x_26 = lean_ctor_get_uint8(x_5, sizeof(void*)*14 + 1); +x_27 = lean_ctor_get(x_5, 13); +lean_inc(x_27); +lean_inc(x_25); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_5); +x_28 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +x_29 = lean_alloc_ctor(0, 14, 2); +lean_ctor_set(x_29, 0, x_12); +lean_ctor_set(x_29, 1, x_13); +lean_ctor_set(x_29, 2, x_14); +lean_ctor_set(x_29, 3, x_15); +lean_ctor_set(x_29, 4, x_16); +lean_ctor_set(x_29, 5, x_28); +lean_ctor_set(x_29, 6, x_18); +lean_ctor_set(x_29, 7, x_19); +lean_ctor_set(x_29, 8, x_20); +lean_ctor_set(x_29, 9, x_21); +lean_ctor_set(x_29, 10, x_22); +lean_ctor_set(x_29, 11, x_23); +lean_ctor_set(x_29, 12, x_25); +lean_ctor_set(x_29, 13, x_27); +lean_ctor_set_uint8(x_29, sizeof(void*)*14, x_24); +lean_ctor_set_uint8(x_29, sizeof(void*)*14 + 1, x_26); +x_30 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_2, x_3, x_4, x_29, x_6); +lean_dec_ref(x_29); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg(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) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = l_Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7(x_2, x_3, x_4, x_5, x_6, x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg(x_1, x_10, x_4, x_5, x_6, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_1); +return x_9; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_8 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1; +x_9 = 0; +lean_inc(x_2); +x_10 = l_Lean_MessageData_ofConstName(x_2, x_9); +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set(x_11, 1, x_10); +x_12 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3; +x_13 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_13, 0, x_11); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg(x_1, x_13, x_2, x_3, x_4, x_5, x_6); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_4, 5); +lean_inc(x_7); +x_8 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg(x_7, x_1, x_2, x_3, x_4, x_5); +lean_dec(x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; +x_7 = lean_st_ref_get(x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec(x_7); +x_9 = 0; +lean_inc(x_1); +x_10 = l_Lean_Environment_findConstVal_x3f(x_8, x_1, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; +x_11 = l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_5); +return x_11; +} +else +{ +uint8_t x_12; +lean_dec_ref(x_4); +lean_dec(x_1); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) +{ +lean_ctor_set_tag(x_10, 0); +return x_10; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___redArg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_mkLevelParam(x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = l_Lean_mkLevelParam(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__0)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; +lean_inc_ref(x_4); +lean_inc(x_1); +x_7 = l_Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0(x_1, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +lean_dec_ref(x_7); +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_box(0); +x_11 = l_List_mapTR_loop___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__1(x_9, x_10); +lean_inc(x_1); +x_12 = l_Lean_mkConst(x_1, x_11); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +lean_inc_ref(x_12); +x_13 = lean_infer_type(x_12, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_2); +lean_inc(x_14); +x_15 = l_Lean_Meta_isProp(x_14, x_2, x_3, x_4, x_5); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_40; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +lean_inc_ref(x_12); +lean_inc(x_14); +x_17 = lean_alloc_closure((void*)(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___boxed), 9, 2); +lean_closure_set(x_17, 0, x_14); +lean_closure_set(x_17, 1, x_12); +x_40 = lean_unbox(x_16); +lean_dec(x_16); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +lean_dec_ref(x_17); +lean_dec(x_14); +lean_dec(x_1); +x_41 = l_Lean_MessageData_ofExpr(x_12); +x_42 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1; +x_43 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +x_44 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_43, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) +{ +return x_44; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_44, 0); +lean_inc(x_46); +lean_dec(x_44); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +return x_47; +} +} +else +{ +lean_dec_ref(x_12); +x_18 = x_2; +x_19 = x_3; +x_20 = x_4; +x_21 = x_5; +x_22 = lean_box(0); +goto block_39; +} +block_39: +{ +uint8_t x_23; lean_object* x_24; +x_23 = 0; +lean_inc(x_21); +lean_inc_ref(x_20); +lean_inc(x_19); +lean_inc_ref(x_18); +x_24 = l_Lean_Meta_forallTelescope___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__3___redArg(x_14, x_17, x_23, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +lean_dec_ref(x_24); +x_26 = l_Lean_Meta_Sym_Simp_mkTheoremFromDecl(x_1, x_18, x_19, x_20, x_21); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_25); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_26, 0, x_29); +return x_26; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_26, 0); +lean_inc(x_30); +lean_dec(x_26); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_25); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +} +else +{ +uint8_t x_33; +lean_dec(x_25); +x_33 = !lean_is_exclusive(x_26); +if (x_33 == 0) +{ +return x_26; +} +else +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_26, 0); +lean_inc(x_34); +lean_dec(x_26); +x_35 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_35, 0, x_34); +return x_35; +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_21); +lean_dec_ref(x_20); +lean_dec(x_19); +lean_dec_ref(x_18); +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_24); +if (x_36 == 0) +{ +return x_24; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_24, 0); +lean_inc(x_37); +lean_dec(x_24); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +return x_38; +} +} +} +} +else +{ +uint8_t x_48; +lean_dec(x_14); +lean_dec_ref(x_12); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_48 = !lean_is_exclusive(x_15); +if (x_48 == 0) +{ +return x_15; +} +else +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_15, 0); +lean_inc(x_49); +lean_dec(x_15); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +return x_50; +} +} +} +else +{ +uint8_t x_51; +lean_dec_ref(x_12); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_51 = !lean_is_exclusive(x_13); +if (x_51 == 0) +{ +return x_13; +} +else +{ +lean_object* x_52; lean_object* x_53; +x_52 = lean_ctor_get(x_13, 0); +lean_inc(x_52); +lean_dec(x_13); +x_53 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_53, 0, x_52); +return x_53; +} +} +} +else +{ +uint8_t x_54; +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +x_54 = !lean_is_exclusive(x_7); +if (x_54 == 0) +{ +return x_7; +} +else +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_7, 0); +lean_inc(x_55); +lean_dec(x_7); +x_56 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_56, 0, x_55); +return x_56; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst(x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2___redArg(x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwError___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__2(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___redArg(x_2, x_3, x_4, x_5, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6(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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___redArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg(x_1, x_2, x_6); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8(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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___redArg(x_2, x_3, x_4, x_5, x_6, x_7); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8___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) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_7); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_2); +return x_9; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState_default() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(1); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(1); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_9; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc_ref(x_4); +lean_dec_ref(x_2); +x_9 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_1, x_3); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; +x_10 = l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1; +x_5 = x_10; +goto block_8; +} +else +{ +lean_object* x_11; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +lean_dec_ref(x_9); +x_5 = x_11; +goto block_8; +} +block_8: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Lean_Meta_Sym_Simp_Theorems_insert(x_5, x_4); +x_7 = l_Std_DTreeMap_Internal_Impl_insert___at___00Lean_NameMap_insert_spec__0___redArg(x_3, x_6, x_1); +return x_7; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(uint8_t x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_2, 1); +x_8 = l_Lean_Meta_Sym_Simp_Theorem_declName(x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; +lean_dec_ref(x_2); +x_9 = lean_box(0); +return x_9; +} +else +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_8); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; uint8_t x_13; +x_11 = lean_ctor_get(x_8, 0); +x_12 = 2; +x_13 = l_Lean_instDecidableEqOLeanLevel(x_1, x_12); +if (x_13 == 0) +{ +uint8_t x_14; +x_14 = l_Lean_isPrivateName(x_11); +lean_dec(x_11); +if (x_14 == 0) +{ +lean_ctor_set(x_8, 0, x_2); +return x_8; +} +else +{ +lean_free_object(x_8); +x_3 = x_13; +goto block_6; +} +} +else +{ +lean_free_object(x_8); +lean_dec(x_11); +x_3 = x_13; +goto block_6; +} +} +else +{ +lean_object* x_15; uint8_t x_16; uint8_t x_17; +x_15 = lean_ctor_get(x_8, 0); +lean_inc(x_15); +lean_dec(x_8); +x_16 = 2; +x_17 = l_Lean_instDecidableEqOLeanLevel(x_1, x_16); +if (x_17 == 0) +{ +uint8_t x_18; +x_18 = l_Lean_isPrivateName(x_15); +lean_dec(x_15); +if (x_18 == 0) +{ +lean_object* x_19; +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_2); +return x_19; +} +else +{ +x_3 = x_17; +goto block_6; +} +} +else +{ +lean_dec(x_15); +x_3 = x_17; +goto block_6; +} +} +} +block_6: +{ +if (x_3 == 0) +{ +lean_object* x_4; +lean_dec_ref(x_2); +x_4 = lean_box(0); +return x_4; +} +else +{ +lean_object* x_5; +x_5 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_5, 0, x_2); +return x_5; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_1); +x_4 = l_Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(x_3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(lean_object* x_1) { +_start: +{ +lean_inc(x_1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(x_1); +lean_dec(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_initFn___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_)); +x_3 = l_Lean_registerSimpleScopedEnvExtension___redArg(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2____boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +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; +x_4 = lean_st_ref_get(x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_5); +lean_dec(x_4); +x_6 = l_Lean_Meta_Tactic_Cbv_cbvEvalExt; +x_7 = lean_ctor_get(x_6, 1); +lean_inc_ref(x_7); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec_ref(x_7); +x_9 = lean_ctor_get(x_8, 2); +lean_inc(x_9); +lean_dec_ref(x_8); +x_10 = lean_box(1); +x_11 = l_Lean_ScopedEnvExtension_getState___redArg(x_10, x_6, x_5, x_9); +lean_dec(x_9); +x_12 = l_Std_DTreeMap_Internal_Impl_Const_get_x3f___at___00Lean_NameMap_find_x3f_spec__0___redArg(x_11, x_1); +lean_dec(x_11); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(x_1, x_3); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_5; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1; +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 6); +lean_inc(x_7); +lean_dec_ref(x_4); +x_8 = lean_st_ref_take(x_5); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_10 = lean_ctor_get(x_8, 0); +x_11 = lean_ctor_get(x_8, 5); +lean_dec(x_11); +x_12 = l_Lean_ScopedEnvExtension_addCore___redArg(x_10, x_1, x_2, x_3, x_7); +x_13 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2; +lean_ctor_set(x_8, 5, x_13); +lean_ctor_set(x_8, 0, x_12); +x_14 = lean_st_ref_set(x_5, x_8); +x_15 = lean_box(0); +x_16 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_16, 0, x_15); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; 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; lean_object* x_30; +x_17 = lean_ctor_get(x_8, 0); +x_18 = lean_ctor_get(x_8, 1); +x_19 = lean_ctor_get(x_8, 2); +x_20 = lean_ctor_get(x_8, 3); +x_21 = lean_ctor_get(x_8, 4); +x_22 = lean_ctor_get(x_8, 6); +x_23 = lean_ctor_get(x_8, 7); +x_24 = lean_ctor_get(x_8, 8); +lean_inc(x_24); +lean_inc(x_23); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_8); +x_25 = l_Lean_ScopedEnvExtension_addCore___redArg(x_17, x_1, x_2, x_3, x_7); +x_26 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2; +x_27 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_18); +lean_ctor_set(x_27, 2, x_19); +lean_ctor_set(x_27, 3, x_20); +lean_ctor_set(x_27, 4, x_21); +lean_ctor_set(x_27, 5, x_26); +lean_ctor_set(x_27, 6, x_22); +lean_ctor_set(x_27, 7, x_23); +lean_ctor_set(x_27, 8, x_24); +x_28 = lean_st_ref_set(x_5, x_27); +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_30, 0, x_29); +return x_30; +} +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_3); +x_8 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg(x_1, x_2, x_7, x_4, x_5); +lean_dec(x_5); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg(x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___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) { +_start: +{ +uint8_t x_10; lean_object* x_11; +x_10 = lean_unbox(x_6); +x_11 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0(x_1, x_2, x_3, x_4, x_5, x_10, x_7, x_8); +lean_dec(x_8); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(1); +x_2 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5; +x_3 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_1); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_2); +lean_ctor_set(x_3, 2, x_2); +lean_ctor_set(x_3, 3, x_1); +lean_ctor_set(x_3, 4, x_1); +lean_ctor_set(x_3, 5, x_1); +lean_ctor_set(x_3, 6, x_1); +lean_ctor_set(x_3, 7, x_1); +lean_ctor_set(x_3, 8, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_2 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +lean_ctor_set(x_2, 2, x_1); +lean_ctor_set(x_2, 3, x_1); +lean_ctor_set(x_2, 4, x_1); +lean_ctor_set(x_2, 5, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_2 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +lean_ctor_set(x_2, 2, x_1); +lean_ctor_set(x_2, 3, x_1); +lean_ctor_set(x_2, 4, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_8 = l_Lean_Meta_instInhabitedConfigWithKey___private__1; +x_9 = 0; +x_10 = lean_unsigned_to_nat(0u); +x_11 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5; +x_12 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_13 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_14 = lean_box(0); +x_15 = 1; +lean_inc(x_1); +x_16 = lean_alloc_ctor(0, 7, 4); +lean_ctor_set(x_16, 0, x_8); +lean_ctor_set(x_16, 1, x_1); +lean_ctor_set(x_16, 2, x_12); +lean_ctor_set(x_16, 3, x_13); +lean_ctor_set(x_16, 4, x_14); +lean_ctor_set(x_16, 5, x_10); +lean_ctor_set(x_16, 6, x_14); +lean_ctor_set_uint8(x_16, sizeof(void*)*7, x_9); +lean_ctor_set_uint8(x_16, sizeof(void*)*7 + 1, x_9); +lean_ctor_set_uint8(x_16, sizeof(void*)*7 + 2, x_9); +lean_ctor_set_uint8(x_16, sizeof(void*)*7 + 3, x_15); +x_17 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_18 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_19 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_20 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_20, 0, x_17); +lean_ctor_set(x_20, 1, x_18); +lean_ctor_set(x_20, 2, x_1); +lean_ctor_set(x_20, 3, x_11); +lean_ctor_set(x_20, 4, x_19); +x_21 = lean_st_mk_ref(x_20); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_21); +x_22 = l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst(x_2, x_16, x_21, x_5, x_6); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec_ref(x_22); +x_24 = lean_st_ref_get(x_21); +lean_dec(x_21); +lean_dec(x_24); +x_25 = l_Lean_Meta_Tactic_Cbv_cbvEvalExt; +x_26 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg(x_25, x_23, x_4, x_5, x_6); +lean_dec(x_6); +return x_26; +} +else +{ +uint8_t x_27; +lean_dec(x_21); +lean_dec(x_6); +lean_dec_ref(x_5); +x_27 = !lean_is_exclusive(x_22); +if (x_27 == 0) +{ +return x_22; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_22, 0); +lean_inc(x_28); +lean_dec(x_22); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_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) { +_start: +{ +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_4); +x_9 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(x_1, x_2, x_3, x_8, x_5, x_6); +lean_dec(x_3); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +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; +x_5 = lean_st_ref_get(x_3); +x_6 = lean_ctor_get(x_5, 0); +lean_inc_ref(x_6); +lean_dec(x_5); +x_7 = lean_ctor_get(x_2, 2); +x_8 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2; +x_9 = l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6; +lean_inc_ref(x_7); +x_10 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_10, 0, x_6); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_9); +lean_ctor_set(x_10, 3, x_7); +x_11 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_1); +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_ctor_get(x_2, 5); +x_6 = l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1_spec__1(x_1, x_2, x_3); +x_7 = !lean_is_exclusive(x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_5); +lean_ctor_set(x_9, 1, x_8); +lean_ctor_set_tag(x_6, 1); +lean_ctor_set(x_6, 0, x_9); +return x_6; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +lean_dec(x_6); +lean_inc(x_5); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_5); +lean_ctor_set(x_11, 1, x_10); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_6 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_7 = l_Lean_MessageData_ofName(x_1); +x_8 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_7); +x_9 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_; +x_10 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_9); +x_11 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg(x_10, x_3, x_4); +return x_11; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_6; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_() { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___closed__8_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_)); +x_3 = l_Lean_registerBuiltinAttribute(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2____boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___redArg(x_2, x_3, x_4); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_throwError___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_6; +} +} +lean_object* initialize_Lean_Data_NameMap(uint8_t builtin); +lean_object* initialize_Lean_ScopedEnvExtension(uint8_t builtin); +lean_object* initialize_Lean_Elab_InfoTree(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Simp_Theorems(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Cbv_CbvEvalExt(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Data_NameMap(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_ScopedEnvExtension(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Elab_InfoTree(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Simp_Theorems(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0 = _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default___closed__0); +l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default = _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry_default); +l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry = _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalEntry); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__3); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__5); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__7); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__9); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___lam__0___closed__11); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__0); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__1); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__2); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__3); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__4); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__5); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__6); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__8); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__10); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__12); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__14); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__16); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__18); +l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20 = _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20(); +lean_mark_persistent(l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2_spec__6_spec__7_spec__8___redArg___closed__20); +l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1 = _init_l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__1); +l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3 = _init_l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3(); +lean_mark_persistent(l_Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstVal___at___00Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst_spec__0_spec__0_spec__2___redArg___closed__3); +l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1 = _init_l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_mkCbvTheoremFromConst___closed__1); +l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState_default = _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState_default(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState_default); +l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState = _init_l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_instInhabitedCbvEvalState); +l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0 = _init_l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__0); +l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1 = _init_l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_CbvEvalState_addEntry___closed__1); +if (builtin) {res = l_Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_1729302285____hygCtx___hyg_2_(); +if (lean_io_result_is_error(res)) return res; +l_Lean_Meta_Tactic_Cbv_cbvEvalExt = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_cbvEvalExt); +lean_dec_ref(res); +}l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0 = _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__0); +l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1 = _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__1); +l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2 = _init_l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2__spec__0___redArg___closed__2); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__0_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__2_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__4_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__5_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__0___closed__6_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__1_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +lean_mark_persistent(l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn___lam__1___closed__3_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_); +if (builtin) {res = l___private_Lean_Meta_Tactic_Cbv_CbvEvalExt_0__Lean_Meta_Tactic_Cbv_initFn_00___x40_Lean_Meta_Tactic_Cbv_CbvEvalExt_2205273430____hygCtx___hyg_2_(); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cbv/ControlFlow.c b/stage0/stdlib/Lean/Meta/Tactic/Cbv/ControlFlow.c new file mode 100644 index 0000000000..6338bd7056 --- /dev/null +++ b/stage0/stdlib/Lean/Meta/Tactic/Cbv/ControlFlow.c @@ -0,0 +1,18350 @@ +// Lean compiler output +// Module: Lean.Meta.Tactic.Cbv.ControlFlow +// Imports: public import Lean.Meta.Sym.Simp.SimpM import Lean.Meta.Sym.Simp.Result import Lean.Meta.Sym.Simp.Rewrite import Lean.Meta.Sym.Simp.ControlFlow import Lean.Meta.Sym.AlphaShareBuilder import Lean.Meta.Sym.InstantiateS import Lean.Meta.Sym.InferType import Lean.Meta.Sym.Simp.App import Lean.Meta.SynthInstance import Lean.Meta.WHNF import Lean.Meta.AppBuilder import Init.Sym.Lemmas import Lean.Meta.Tactic.Cbv.TheoremsLookup +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Internal_Sym_share1___redArg(lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*); +lean_object* l_Lean_Meta_Sym_Internal_Sym_assertShared(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg___boxed(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_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(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_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0___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_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__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_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__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_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_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*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__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*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ite"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__0_value; +lean_object* l_Lean_Name_mkStr1(lean_object*); +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(15, 2, 151, 246, 61, 29, 192, 254)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__1_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Decidable"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(87, 187, 205, 215, 218, 218, 68, 60)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__3 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__3_value; +lean_object* l_Lean_mkConst(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "decide"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__5 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__5_value; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(87, 187, 205, 215, 218, 218, 68, 60)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__5_value),LEAN_SCALAR_PTR_LITERAL(16, 96, 65, 173, 152, 155, 4, 222)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "eq_false_of_decide"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__8 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__8_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__8_value),LEAN_SCALAR_PTR_LITERAL(171, 157, 112, 124, 91, 52, 64, 56)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__9 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__9_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "instDecidableFalse"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__11 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__11_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__11_value),LEAN_SCALAR_PTR_LITERAL(49, 216, 212, 175, 154, 176, 165, 174)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__12 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__12_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Lean"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__14 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__14_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "Sym"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__15 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__15_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 15, .m_capacity = 15, .m_length = 14, .m_data = "ite_cond_congr"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__16 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__16_value; +lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__14_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__15_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value_aux_1),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__16_value),LEAN_SCALAR_PTR_LITERAL(149, 115, 5, 135, 85, 70, 205, 95)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "ite_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__18 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__18_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__18_value),LEAN_SCALAR_PTR_LITERAL(217, 231, 214, 152, 207, 100, 121, 38)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "eq_true_of_decide"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__20 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__20_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__20_value),LEAN_SCALAR_PTR_LITERAL(10, 132, 193, 70, 136, 209, 66, 149)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__21 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__21_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "instDecidableTrue"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__23 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__23_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__23_value),LEAN_SCALAR_PTR_LITERAL(45, 239, 189, 64, 160, 216, 116, 23)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__24 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__24_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "ite_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__26 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__26_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__26_value),LEAN_SCALAR_PTR_LITERAL(28, 219, 17, 217, 43, 100, 109, 98)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "ite_cond_eq_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__28 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__28_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__28_value),LEAN_SCALAR_PTR_LITERAL(4, 35, 104, 204, 105, 138, 171, 217)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "ite_cond_eq_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__30 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__30_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__30_value),LEAN_SCALAR_PTR_LITERAL(217, 214, 153, 207, 191, 74, 245, 103)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31_value; +lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); +uint8_t l_Lean_Expr_isApp(lean_object*); +lean_object* l_Lean_Expr_appFnCleanup___redArg(lean_object*); +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +lean_object* lean_sym_simp(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_Sym_isTrueExpr___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_isFalseExpr___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_shareCommon___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_isBoolTrueExpr___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_isBoolFalseExpr___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_getFalseExpr___redArg(lean_object*); +lean_object* l_Lean_Expr_getBoundedAppFn(lean_object*, lean_object*); +lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_replaceFn(lean_object*, lean_object*); +lean_object* l_Lean_Expr_constLevels_x21(lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(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_Sym_getTrueExpr___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0(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_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___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* l_Lean_Expr_getAppNumArgs(lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_propagateOverApplied(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_Sym_Simp_simpIteCbv(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_Sym_Simp_simpIteCbv___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_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0(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_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___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 const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "dite"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__0 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__0_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__0_value),LEAN_SCALAR_PTR_LITERAL(137, 166, 197, 161, 68, 218, 116, 116)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__1 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__1_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "h"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__2 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__2_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(176, 181, 207, 77, 197, 87, 68, 121)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "Eq"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__4 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__4_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "mpr_prop"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__5 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__5_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__4_value),LEAN_SCALAR_PTR_LITERAL(143, 37, 101, 248, 9, 246, 191, 223)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__5_value),LEAN_SCALAR_PTR_LITERAL(169, 177, 76, 157, 211, 15, 217, 219)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +lean_object* l_Lean_mkBVar(lean_object*); +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "mpr_not"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__10 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__10_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__4_value),LEAN_SCALAR_PTR_LITERAL(143, 37, 101, 248, 9, 246, 191, 223)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__10_value),LEAN_SCALAR_PTR_LITERAL(121, 56, 250, 51, 9, 123, 141, 181)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "not_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__13 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__13_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__13_value),LEAN_SCALAR_PTR_LITERAL(155, 21, 178, 198, 97, 164, 246, 137)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__14 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__14_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = "dite_cond_congr"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__17 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__17_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__14_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__15_value),LEAN_SCALAR_PTR_LITERAL(31, 147, 176, 82, 87, 65, 127, 52)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value_aux_1),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__17_value),LEAN_SCALAR_PTR_LITERAL(72, 238, 116, 219, 106, 19, 52, 46)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "dite_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__19 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__19_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__19_value),LEAN_SCALAR_PTR_LITERAL(78, 119, 178, 178, 249, 126, 188, 7)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "True"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__21 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__21_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "intro"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__22 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__22_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__21_value),LEAN_SCALAR_PTR_LITERAL(78, 21, 103, 131, 118, 13, 187, 164)}}; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23_value_aux_0),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__22_value),LEAN_SCALAR_PTR_LITERAL(177, 152, 123, 219, 220, 182, 189, 250)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23_value; +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24; +static lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "dite_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__26 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__26_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__26_value),LEAN_SCALAR_PTR_LITERAL(65, 218, 189, 96, 14, 237, 238, 210)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 19, .m_capacity = 19, .m_length = 18, .m_data = "dite_cond_eq_false"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__28 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__28_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__28_value),LEAN_SCALAR_PTR_LITERAL(153, 159, 146, 90, 178, 85, 98, 212)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29_value; +static const lean_string_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "dite_cond_eq_true"}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__30 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__30_value; +static const lean_ctor_object l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__30_value),LEAN_SCALAR_PTR_LITERAL(13, 104, 142, 126, 111, 138, 152, 2)}}; +static const lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31 = (const lean_object*)&l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31_value; +lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); +lean_object* l_Lean_mkLambda(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_shareCommonInc___redArg(lean_object*, lean_object*); +lean_object* l_Lean_mkNot(lean_object*); +lean_object* l_Lean_Meta_mkOfEqFalseCore(lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkOfEqTrueCore(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0(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_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___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_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv(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_Sym_Simp_simpDIteCbv___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* l_Lean_Meta_Sym_Simp_dischargeNone___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_Meta_Sym_Simp_dischargeNone___boxed, .m_arity = 11, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0 = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0_value; +lean_object* l_Lean_Meta_Tactic_Cbv_getMatchTheorems(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_Theorems_rewrite(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___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(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_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___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 const lean_ctor_object l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*0 + 8, .m_other = 0, .m_tag = 0}, .m_objs = {LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0_value; +lean_object* l_Lean_Meta_reduceRecMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_mkEqRefl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher(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_Tactic_Cbv_reduceRecMatcher___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* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0(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_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___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* l_Lean_Expr_getAppFn(lean_object*); +lean_object* l_Lean_Expr_constName_x3f(lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_simpAppArgRange(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___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher(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_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_string_object l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "cond"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__0 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__0_value; +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__0_value),LEAN_SCALAR_PTR_LITERAL(130, 140, 200, 235, 144, 197, 118, 1)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__1 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__1_value; +static const lean_string_object l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "rec"}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__2 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__2_value; +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__2_value),LEAN_SCALAR_PTR_LITERAL(87, 187, 205, 215, 218, 218, 68, 60)}}; +static const lean_ctor_object l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3_value_aux_0),((lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__2_value),LEAN_SCALAR_PTR_LITERAL(158, 146, 92, 125, 27, 135, 153, 152)}}; +static const lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3 = (const lean_object*)&l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3_value; +static lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4; +uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_simpInterlaced(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_Sym_Simp_simpCond(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_Tactic_Cbv_simpControlCbv(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_Tactic_Cbv_simpControlCbv___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_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(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) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_15; uint8_t x_16; +x_15 = lean_st_ref_get(x_4); +x_16 = lean_ctor_get_uint8(x_15, sizeof(void*)*6); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec_ref(x_3); +x_10 = x_4; +x_11 = lean_box(0); +goto block_14; +} +else +{ +lean_object* x_17; +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc_ref(x_1); +x_17 = l_Lean_Meta_Sym_Internal_Sym_assertShared(x_1, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; +lean_dec_ref(x_17); +lean_inc(x_4); +lean_inc_ref(x_2); +x_18 = l_Lean_Meta_Sym_Internal_Sym_assertShared(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_18) == 0) +{ +lean_dec_ref(x_18); +x_10 = x_4; +x_11 = lean_box(0); +goto block_14; +} +else +{ +uint8_t x_19; +lean_dec(x_4); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +return x_18; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +lean_dec(x_18); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +lean_dec_ref(x_1); +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) +{ +return x_17; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_17, 0); +lean_inc(x_23); +lean_dec(x_17); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_23); +return x_24; +} +} +} +block_14: +{ +lean_object* x_12; lean_object* x_13; +x_12 = l_Lean_Expr_app___override(x_1, x_2); +x_13 = l_Lean_Meta_Sym_Internal_Sym_share1___redArg(x_12, x_10); +lean_dec(x_10); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg___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) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(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) { +_start: +{ +lean_object* x_14; +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +x_14 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_1, x_2, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec_ref(x_14); +x_16 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_15, x_3, x_7, x_8, x_9, x_10, x_11, x_12); +return x_16; +} +else +{ +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0___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_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__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, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_15; +lean_inc(x_13); +lean_inc_ref(x_12); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_15 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_1, x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_16, x_4, x_8, x_9, x_10, x_11, x_12, x_13); +return x_17; +} +else +{ +lean_dec(x_13); +lean_dec_ref(x_12); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_4); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__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, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__2(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_7); +lean_dec_ref(x_6); +lean_dec(x_5); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__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, lean_object* x_14) { +_start: +{ +lean_object* x_16; +lean_inc(x_14); +lean_inc_ref(x_13); +lean_inc(x_12); +lean_inc_ref(x_11); +lean_inc(x_10); +lean_inc_ref(x_9); +x_16 = l_Lean_Meta_Sym_Internal_mkAppS_u2083___at___00Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1_spec__2(x_1, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +lean_dec_ref(x_16); +x_18 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_17, x_5, x_9, x_10, x_11, x_12, x_13, x_14); +return x_18; +} +else +{ +lean_dec(x_14); +lean_dec_ref(x_13); +lean_dec(x_12); +lean_dec_ref(x_11); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec_ref(x_5); +return x_16; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__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, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +x_16 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__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, x_14); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +return x_16; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__3)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__6)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__9)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__12)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__21)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__24)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0(uint8_t 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_16; uint8_t x_17; +lean_inc_ref(x_2); +x_16 = l_Lean_Expr_cleanupAnnotations(x_2); +x_17 = l_Lean_Expr_isApp(x_16); +if (x_17 == 0) +{ +lean_dec_ref(x_16); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_16, 1); +lean_inc_ref(x_18); +x_19 = l_Lean_Expr_appFnCleanup___redArg(x_16); +x_20 = l_Lean_Expr_isApp(x_19); +if (x_20 == 0) +{ +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_ctor_get(x_19, 1); +lean_inc_ref(x_21); +x_22 = l_Lean_Expr_appFnCleanup___redArg(x_19); +x_23 = l_Lean_Expr_isApp(x_22); +if (x_23 == 0) +{ +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_24; uint8_t x_25; +x_24 = l_Lean_Expr_appFnCleanup___redArg(x_22); +x_25 = l_Lean_Expr_isApp(x_24); +if (x_25 == 0) +{ +lean_dec_ref(x_24); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_24, 1); +lean_inc_ref(x_26); +x_27 = l_Lean_Expr_appFnCleanup___redArg(x_24); +x_28 = l_Lean_Expr_isApp(x_27); +if (x_28 == 0) +{ +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_ctor_get(x_27, 1); +lean_inc_ref(x_29); +x_30 = l_Lean_Expr_appFnCleanup___redArg(x_27); +x_31 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__1)); +x_32 = l_Lean_Expr_isConstOf(x_30, x_31); +if (x_32 == 0) +{ +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_33; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_26); +x_33 = lean_sym_simp(x_26, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec_ref(x_33); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_36) == 0) +{ +uint8_t x_37; +x_37 = !lean_is_exclusive(x_36); +if (x_37 == 0) +{ +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_36, 0); +x_39 = lean_unbox(x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_free_object(x_36); +x_40 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_40) == 0) +{ +uint8_t x_41; +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) +{ +lean_object* x_42; uint8_t x_43; +x_42 = lean_ctor_get(x_40, 0); +x_43 = lean_unbox(x_42); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_free_object(x_40); +lean_dec(x_38); +x_44 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_45 = l_Lean_Expr_app___override(x_44, x_26); +x_46 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_47 = l_Lean_Meta_trySynthInstance(x_45, x_46, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_47) == 0) +{ +uint8_t x_48; +x_48 = !lean_is_exclusive(x_47); +if (x_48 == 0) +{ +lean_object* x_49; +x_49 = lean_ctor_get(x_47, 0); +if (lean_obj_tag(x_49) == 1) +{ +lean_object* x_50; lean_object* x_51; +lean_free_object(x_47); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_51 = l_Lean_Meta_Sym_shareCommon___redArg(x_50, x_7); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +lean_dec_ref(x_51); +x_53 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_52); +lean_inc_ref(x_26); +x_54 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_53, x_26, x_52, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +lean_dec_ref(x_54); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_56 = lean_sym_simp(x_55, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_56) == 0) +{ +uint8_t x_57; +x_57 = !lean_is_exclusive(x_56); +if (x_57 == 0) +{ +lean_object* x_58; +x_58 = lean_ctor_get(x_56, 0); +if (lean_obj_tag(x_58) == 0) +{ +uint8_t x_59; +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_59 = !lean_is_exclusive(x_58); +if (x_59 == 0) +{ +lean_ctor_set_uint8(x_58, 0, x_32); +return x_56; +} +else +{ +lean_object* x_60; +lean_dec(x_58); +x_60 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_60, 0, x_32); +lean_ctor_set(x_56, 0, x_60); +return x_56; +} +} +else +{ +uint8_t x_61; +lean_free_object(x_56); +x_61 = !lean_is_exclusive(x_58); +if (x_61 == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_58, 0); +x_63 = lean_ctor_get(x_58, 1); +x_64 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_62, x_6); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; uint8_t x_66; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +lean_dec_ref(x_64); +x_66 = lean_unbox(x_65); +if (x_66 == 0) +{ +lean_object* x_67; +lean_dec(x_42); +x_67 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_62, x_6); +lean_dec_ref(x_62); +if (lean_obj_tag(x_67) == 0) +{ +uint8_t x_68; +x_68 = !lean_is_exclusive(x_67); +if (x_68 == 0) +{ +lean_object* x_69; uint8_t x_70; +x_69 = lean_ctor_get(x_67, 0); +x_70 = lean_unbox(x_69); +lean_dec(x_69); +if (x_70 == 0) +{ +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +lean_ctor_set(x_67, 0, x_34); +return x_67; +} +else +{ +lean_object* x_71; +lean_free_object(x_67); +lean_free_object(x_34); +x_71 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +lean_dec_ref(x_71); +x_73 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_74 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_75 = lean_unsigned_to_nat(4u); +x_76 = l_Lean_Expr_getBoundedAppFn(x_75, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_72); +x_77 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_76, x_72, x_74, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_77) == 0) +{ +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; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +lean_dec_ref(x_77); +x_79 = l_Lean_mkApp3(x_73, x_26, x_52, x_63); +x_80 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_81 = l_Lean_Expr_replaceFn(x_2, x_80); +x_82 = l_Lean_mkApp3(x_81, x_72, x_74, x_79); +x_83 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_84 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_85 = l_Lean_mkConst(x_83, x_84); +lean_inc_ref(x_18); +x_86 = l_Lean_mkApp3(x_85, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_87 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_78, x_82, x_18, x_86, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_87) == 0) +{ +uint8_t x_88; +x_88 = !lean_is_exclusive(x_87); +if (x_88 == 0) +{ +lean_object* x_89; uint8_t x_90; +x_89 = lean_ctor_get(x_87, 0); +lean_ctor_set(x_58, 1, x_89); +lean_ctor_set(x_58, 0, x_18); +x_90 = lean_unbox(x_65); +lean_dec(x_65); +lean_ctor_set_uint8(x_58, sizeof(void*)*2, x_90); +lean_ctor_set(x_87, 0, x_58); +return x_87; +} +else +{ +lean_object* x_91; uint8_t x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_87, 0); +lean_inc(x_91); +lean_dec(x_87); +lean_ctor_set(x_58, 1, x_91); +lean_ctor_set(x_58, 0, x_18); +x_92 = lean_unbox(x_65); +lean_dec(x_65); +lean_ctor_set_uint8(x_58, sizeof(void*)*2, x_92); +x_93 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_93, 0, x_58); +return x_93; +} +} +else +{ +uint8_t x_94; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_18); +x_94 = !lean_is_exclusive(x_87); +if (x_94 == 0) +{ +return x_87; +} +else +{ +lean_object* x_95; lean_object* x_96; +x_95 = lean_ctor_get(x_87, 0); +lean_inc(x_95); +lean_dec(x_87); +x_96 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_96, 0, x_95); +return x_96; +} +} +} +else +{ +uint8_t x_97; +lean_dec(x_72); +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_97 = !lean_is_exclusive(x_77); +if (x_97 == 0) +{ +return x_77; +} +else +{ +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_77, 0); +lean_inc(x_98); +lean_dec(x_77); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +return x_99; +} +} +} +else +{ +uint8_t x_100; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_100 = !lean_is_exclusive(x_71); +if (x_100 == 0) +{ +return x_71; +} +else +{ +lean_object* x_101; lean_object* x_102; +x_101 = lean_ctor_get(x_71, 0); +lean_inc(x_101); +lean_dec(x_71); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_101); +return x_102; +} +} +} +} +else +{ +lean_object* x_103; uint8_t x_104; +x_103 = lean_ctor_get(x_67, 0); +lean_inc(x_103); +lean_dec(x_67); +x_104 = lean_unbox(x_103); +lean_dec(x_103); +if (x_104 == 0) +{ +lean_object* x_105; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +x_105 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_105, 0, x_34); +return x_105; +} +else +{ +lean_object* x_106; +lean_free_object(x_34); +x_106 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +lean_dec_ref(x_106); +x_108 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_109 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_110 = lean_unsigned_to_nat(4u); +x_111 = l_Lean_Expr_getBoundedAppFn(x_110, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_107); +x_112 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_111, x_107, x_109, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +lean_dec_ref(x_112); +x_114 = l_Lean_mkApp3(x_108, x_26, x_52, x_63); +x_115 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_116 = l_Lean_Expr_replaceFn(x_2, x_115); +x_117 = l_Lean_mkApp3(x_116, x_107, x_109, x_114); +x_118 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_119 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_120 = l_Lean_mkConst(x_118, x_119); +lean_inc_ref(x_18); +x_121 = l_Lean_mkApp3(x_120, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_122 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_113, x_117, x_18, x_121, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + x_124 = x_122; +} else { + lean_dec_ref(x_122); + x_124 = lean_box(0); +} +lean_ctor_set(x_58, 1, x_123); +lean_ctor_set(x_58, 0, x_18); +x_125 = lean_unbox(x_65); +lean_dec(x_65); +lean_ctor_set_uint8(x_58, sizeof(void*)*2, x_125); +if (lean_is_scalar(x_124)) { + x_126 = lean_alloc_ctor(0, 1, 0); +} else { + x_126 = x_124; +} +lean_ctor_set(x_126, 0, x_58); +return x_126; +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_18); +x_127 = lean_ctor_get(x_122, 0); +lean_inc(x_127); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + x_128 = x_122; +} else { + lean_dec_ref(x_122); + x_128 = lean_box(0); +} +if (lean_is_scalar(x_128)) { + x_129 = lean_alloc_ctor(1, 1, 0); +} else { + x_129 = x_128; +} +lean_ctor_set(x_129, 0, x_127); +return x_129; +} +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; +lean_dec(x_107); +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_130 = lean_ctor_get(x_112, 0); +lean_inc(x_130); +if (lean_is_exclusive(x_112)) { + lean_ctor_release(x_112, 0); + x_131 = x_112; +} else { + lean_dec_ref(x_112); + x_131 = lean_box(0); +} +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(1, 1, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_130); +return x_132; +} +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_133 = lean_ctor_get(x_106, 0); +lean_inc(x_133); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + x_134 = x_106; +} else { + lean_dec_ref(x_106); + x_134 = lean_box(0); +} +if (lean_is_scalar(x_134)) { + x_135 = lean_alloc_ctor(1, 1, 0); +} else { + x_135 = x_134; +} +lean_ctor_set(x_135, 0, x_133); +return x_135; +} +} +} +} +else +{ +uint8_t x_136; +lean_dec(x_65); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_136 = !lean_is_exclusive(x_67); +if (x_136 == 0) +{ +return x_67; +} +else +{ +lean_object* x_137; lean_object* x_138; +x_137 = lean_ctor_get(x_67, 0); +lean_inc(x_137); +lean_dec(x_67); +x_138 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_138, 0, x_137); +return x_138; +} +} +} +else +{ +lean_object* x_139; +lean_dec(x_65); +lean_dec_ref(x_62); +lean_free_object(x_34); +x_139 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_139) == 0) +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_140 = lean_ctor_get(x_139, 0); +lean_inc(x_140); +lean_dec_ref(x_139); +x_141 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_142 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_143 = lean_unsigned_to_nat(4u); +x_144 = l_Lean_Expr_getBoundedAppFn(x_143, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_140); +x_145 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_144, x_140, x_142, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_145) == 0) +{ +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_146 = lean_ctor_get(x_145, 0); +lean_inc(x_146); +lean_dec_ref(x_145); +x_147 = l_Lean_mkApp3(x_141, x_26, x_52, x_63); +x_148 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_149 = l_Lean_Expr_replaceFn(x_2, x_148); +x_150 = l_Lean_mkApp3(x_149, x_140, x_142, x_147); +x_151 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_152 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_153 = l_Lean_mkConst(x_151, x_152); +lean_inc_ref(x_21); +x_154 = l_Lean_mkApp3(x_153, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_155 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_146, x_150, x_21, x_154, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_155) == 0) +{ +uint8_t x_156; +x_156 = !lean_is_exclusive(x_155); +if (x_156 == 0) +{ +lean_object* x_157; uint8_t x_158; +x_157 = lean_ctor_get(x_155, 0); +lean_ctor_set(x_58, 1, x_157); +lean_ctor_set(x_58, 0, x_21); +x_158 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_58, sizeof(void*)*2, x_158); +lean_ctor_set(x_155, 0, x_58); +return x_155; +} +else +{ +lean_object* x_159; uint8_t x_160; lean_object* x_161; +x_159 = lean_ctor_get(x_155, 0); +lean_inc(x_159); +lean_dec(x_155); +lean_ctor_set(x_58, 1, x_159); +lean_ctor_set(x_58, 0, x_21); +x_160 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_58, sizeof(void*)*2, x_160); +x_161 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_161, 0, x_58); +return x_161; +} +} +else +{ +uint8_t x_162; +lean_free_object(x_58); +lean_dec(x_42); +lean_dec_ref(x_21); +x_162 = !lean_is_exclusive(x_155); +if (x_162 == 0) +{ +return x_155; +} +else +{ +lean_object* x_163; lean_object* x_164; +x_163 = lean_ctor_get(x_155, 0); +lean_inc(x_163); +lean_dec(x_155); +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_163); +return x_164; +} +} +} +else +{ +uint8_t x_165; +lean_dec(x_140); +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_165 = !lean_is_exclusive(x_145); +if (x_165 == 0) +{ +return x_145; +} +else +{ +lean_object* x_166; lean_object* x_167; +x_166 = lean_ctor_get(x_145, 0); +lean_inc(x_166); +lean_dec(x_145); +x_167 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_167, 0, x_166); +return x_167; +} +} +} +else +{ +uint8_t x_168; +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_168 = !lean_is_exclusive(x_139); +if (x_168 == 0) +{ +return x_139; +} +else +{ +lean_object* x_169; lean_object* x_170; +x_169 = lean_ctor_get(x_139, 0); +lean_inc(x_169); +lean_dec(x_139); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_169); +return x_170; +} +} +} +} +else +{ +uint8_t x_171; +lean_free_object(x_58); +lean_dec_ref(x_63); +lean_dec_ref(x_62); +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_171 = !lean_is_exclusive(x_64); +if (x_171 == 0) +{ +return x_64; +} +else +{ +lean_object* x_172; lean_object* x_173; +x_172 = lean_ctor_get(x_64, 0); +lean_inc(x_172); +lean_dec(x_64); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +return x_173; +} +} +} +else +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_174 = lean_ctor_get(x_58, 0); +x_175 = lean_ctor_get(x_58, 1); +lean_inc(x_175); +lean_inc(x_174); +lean_dec(x_58); +x_176 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_174, x_6); +if (lean_obj_tag(x_176) == 0) +{ +lean_object* x_177; uint8_t x_178; +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +lean_dec_ref(x_176); +x_178 = lean_unbox(x_177); +if (x_178 == 0) +{ +lean_object* x_179; +lean_dec(x_42); +x_179 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_174, x_6); +lean_dec_ref(x_174); +if (lean_obj_tag(x_179) == 0) +{ +lean_object* x_180; lean_object* x_181; uint8_t x_182; +x_180 = lean_ctor_get(x_179, 0); +lean_inc(x_180); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + x_181 = x_179; +} else { + lean_dec_ref(x_179); + x_181 = lean_box(0); +} +x_182 = lean_unbox(x_180); +lean_dec(x_180); +if (x_182 == 0) +{ +lean_object* x_183; +lean_dec(x_177); +lean_dec_ref(x_175); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_181)) { + x_183 = lean_alloc_ctor(0, 1, 0); +} else { + x_183 = x_181; +} +lean_ctor_set(x_183, 0, x_34); +return x_183; +} +else +{ +lean_object* x_184; +lean_dec(x_181); +lean_free_object(x_34); +x_184 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_184) == 0) +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +lean_dec_ref(x_184); +x_186 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_187 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_188 = lean_unsigned_to_nat(4u); +x_189 = l_Lean_Expr_getBoundedAppFn(x_188, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_185); +x_190 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_189, x_185, x_187, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_190) == 0) +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_191 = lean_ctor_get(x_190, 0); +lean_inc(x_191); +lean_dec_ref(x_190); +x_192 = l_Lean_mkApp3(x_186, x_26, x_52, x_175); +x_193 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_194 = l_Lean_Expr_replaceFn(x_2, x_193); +x_195 = l_Lean_mkApp3(x_194, x_185, x_187, x_192); +x_196 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_197 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_198 = l_Lean_mkConst(x_196, x_197); +lean_inc_ref(x_18); +x_199 = l_Lean_mkApp3(x_198, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_200 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_191, x_195, x_18, x_199, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_200) == 0) +{ +lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; +x_201 = lean_ctor_get(x_200, 0); +lean_inc(x_201); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + x_202 = x_200; +} else { + lean_dec_ref(x_200); + x_202 = lean_box(0); +} +x_203 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_203, 0, x_18); +lean_ctor_set(x_203, 1, x_201); +x_204 = lean_unbox(x_177); +lean_dec(x_177); +lean_ctor_set_uint8(x_203, sizeof(void*)*2, x_204); +if (lean_is_scalar(x_202)) { + x_205 = lean_alloc_ctor(0, 1, 0); +} else { + x_205 = x_202; +} +lean_ctor_set(x_205, 0, x_203); +return x_205; +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; +lean_dec(x_177); +lean_dec_ref(x_18); +x_206 = lean_ctor_get(x_200, 0); +lean_inc(x_206); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + x_207 = x_200; +} else { + lean_dec_ref(x_200); + x_207 = lean_box(0); +} +if (lean_is_scalar(x_207)) { + x_208 = lean_alloc_ctor(1, 1, 0); +} else { + x_208 = x_207; +} +lean_ctor_set(x_208, 0, x_206); +return x_208; +} +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; +lean_dec(x_185); +lean_dec(x_177); +lean_dec_ref(x_175); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_209 = lean_ctor_get(x_190, 0); +lean_inc(x_209); +if (lean_is_exclusive(x_190)) { + lean_ctor_release(x_190, 0); + x_210 = x_190; +} else { + lean_dec_ref(x_190); + x_210 = lean_box(0); +} +if (lean_is_scalar(x_210)) { + x_211 = lean_alloc_ctor(1, 1, 0); +} else { + x_211 = x_210; +} +lean_ctor_set(x_211, 0, x_209); +return x_211; +} +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; +lean_dec(x_177); +lean_dec_ref(x_175); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_212 = lean_ctor_get(x_184, 0); +lean_inc(x_212); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + x_213 = x_184; +} else { + lean_dec_ref(x_184); + x_213 = lean_box(0); +} +if (lean_is_scalar(x_213)) { + x_214 = lean_alloc_ctor(1, 1, 0); +} else { + x_214 = x_213; +} +lean_ctor_set(x_214, 0, x_212); +return x_214; +} +} +} +else +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; +lean_dec(x_177); +lean_dec_ref(x_175); +lean_dec(x_52); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_215 = lean_ctor_get(x_179, 0); +lean_inc(x_215); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + x_216 = x_179; +} else { + lean_dec_ref(x_179); + x_216 = lean_box(0); +} +if (lean_is_scalar(x_216)) { + x_217 = lean_alloc_ctor(1, 1, 0); +} else { + x_217 = x_216; +} +lean_ctor_set(x_217, 0, x_215); +return x_217; +} +} +else +{ +lean_object* x_218; +lean_dec(x_177); +lean_dec_ref(x_174); +lean_free_object(x_34); +x_218 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_218) == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +lean_dec_ref(x_218); +x_220 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_221 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_222 = lean_unsigned_to_nat(4u); +x_223 = l_Lean_Expr_getBoundedAppFn(x_222, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_219); +x_224 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_223, x_219, x_221, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_224) == 0) +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_225 = lean_ctor_get(x_224, 0); +lean_inc(x_225); +lean_dec_ref(x_224); +x_226 = l_Lean_mkApp3(x_220, x_26, x_52, x_175); +x_227 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_228 = l_Lean_Expr_replaceFn(x_2, x_227); +x_229 = l_Lean_mkApp3(x_228, x_219, x_221, x_226); +x_230 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_231 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_232 = l_Lean_mkConst(x_230, x_231); +lean_inc_ref(x_21); +x_233 = l_Lean_mkApp3(x_232, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_234 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_225, x_229, x_21, x_233, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_234) == 0) +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; uint8_t x_238; lean_object* x_239; +x_235 = lean_ctor_get(x_234, 0); +lean_inc(x_235); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_236 = x_234; +} else { + lean_dec_ref(x_234); + x_236 = lean_box(0); +} +x_237 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_237, 0, x_21); +lean_ctor_set(x_237, 1, x_235); +x_238 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_237, sizeof(void*)*2, x_238); +if (lean_is_scalar(x_236)) { + x_239 = lean_alloc_ctor(0, 1, 0); +} else { + x_239 = x_236; +} +lean_ctor_set(x_239, 0, x_237); +return x_239; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +lean_dec(x_42); +lean_dec_ref(x_21); +x_240 = lean_ctor_get(x_234, 0); +lean_inc(x_240); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_241 = x_234; +} else { + lean_dec_ref(x_234); + x_241 = lean_box(0); +} +if (lean_is_scalar(x_241)) { + x_242 = lean_alloc_ctor(1, 1, 0); +} else { + x_242 = x_241; +} +lean_ctor_set(x_242, 0, x_240); +return x_242; +} +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; +lean_dec(x_219); +lean_dec_ref(x_175); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_243 = lean_ctor_get(x_224, 0); +lean_inc(x_243); +if (lean_is_exclusive(x_224)) { + lean_ctor_release(x_224, 0); + x_244 = x_224; +} else { + lean_dec_ref(x_224); + x_244 = lean_box(0); +} +if (lean_is_scalar(x_244)) { + x_245 = lean_alloc_ctor(1, 1, 0); +} else { + x_245 = x_244; +} +lean_ctor_set(x_245, 0, x_243); +return x_245; +} +} +else +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; +lean_dec_ref(x_175); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_246 = lean_ctor_get(x_218, 0); +lean_inc(x_246); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + x_247 = x_218; +} else { + lean_dec_ref(x_218); + x_247 = lean_box(0); +} +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(1, 1, 0); +} else { + x_248 = x_247; +} +lean_ctor_set(x_248, 0, x_246); +return x_248; +} +} +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +lean_dec_ref(x_175); +lean_dec_ref(x_174); +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_249 = lean_ctor_get(x_176, 0); +lean_inc(x_249); +if (lean_is_exclusive(x_176)) { + lean_ctor_release(x_176, 0); + x_250 = x_176; +} else { + lean_dec_ref(x_176); + x_250 = lean_box(0); +} +if (lean_is_scalar(x_250)) { + x_251 = lean_alloc_ctor(1, 1, 0); +} else { + x_251 = x_250; +} +lean_ctor_set(x_251, 0, x_249); +return x_251; +} +} +} +} +else +{ +lean_object* x_252; +x_252 = lean_ctor_get(x_56, 0); +lean_inc(x_252); +lean_dec(x_56); +if (lean_obj_tag(x_252) == 0) +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_252)) { + x_253 = x_252; +} else { + lean_dec_ref(x_252); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(0, 0, 1); +} else { + x_254 = x_253; +} +lean_ctor_set_uint8(x_254, 0, x_32); +x_255 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_255, 0, x_254); +return x_255; +} +else +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_256 = lean_ctor_get(x_252, 0); +lean_inc_ref(x_256); +x_257 = lean_ctor_get(x_252, 1); +lean_inc_ref(x_257); +if (lean_is_exclusive(x_252)) { + lean_ctor_release(x_252, 0); + lean_ctor_release(x_252, 1); + x_258 = x_252; +} else { + lean_dec_ref(x_252); + x_258 = lean_box(0); +} +x_259 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_256, x_6); +if (lean_obj_tag(x_259) == 0) +{ +lean_object* x_260; uint8_t x_261; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +lean_dec_ref(x_259); +x_261 = lean_unbox(x_260); +if (x_261 == 0) +{ +lean_object* x_262; +lean_dec(x_42); +x_262 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_256, x_6); +lean_dec_ref(x_256); +if (lean_obj_tag(x_262) == 0) +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; +x_263 = lean_ctor_get(x_262, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + x_264 = x_262; +} else { + lean_dec_ref(x_262); + x_264 = lean_box(0); +} +x_265 = lean_unbox(x_263); +lean_dec(x_263); +if (x_265 == 0) +{ +lean_object* x_266; +lean_dec(x_260); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 0); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_34); +return x_266; +} +else +{ +lean_object* x_267; +lean_dec(x_264); +lean_free_object(x_34); +x_267 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_267) == 0) +{ +lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; +x_268 = lean_ctor_get(x_267, 0); +lean_inc(x_268); +lean_dec_ref(x_267); +x_269 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_270 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_271 = lean_unsigned_to_nat(4u); +x_272 = l_Lean_Expr_getBoundedAppFn(x_271, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_268); +x_273 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_272, x_268, x_270, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_273) == 0) +{ +lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_274 = lean_ctor_get(x_273, 0); +lean_inc(x_274); +lean_dec_ref(x_273); +x_275 = l_Lean_mkApp3(x_269, x_26, x_52, x_257); +x_276 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_277 = l_Lean_Expr_replaceFn(x_2, x_276); +x_278 = l_Lean_mkApp3(x_277, x_268, x_270, x_275); +x_279 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_280 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_281 = l_Lean_mkConst(x_279, x_280); +lean_inc_ref(x_18); +x_282 = l_Lean_mkApp3(x_281, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_283 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_274, x_278, x_18, x_282, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; uint8_t x_287; lean_object* x_288; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + x_285 = x_283; +} else { + lean_dec_ref(x_283); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_258)) { + x_286 = lean_alloc_ctor(1, 2, 1); +} else { + x_286 = x_258; +} +lean_ctor_set(x_286, 0, x_18); +lean_ctor_set(x_286, 1, x_284); +x_287 = lean_unbox(x_260); +lean_dec(x_260); +lean_ctor_set_uint8(x_286, sizeof(void*)*2, x_287); +if (lean_is_scalar(x_285)) { + x_288 = lean_alloc_ctor(0, 1, 0); +} else { + x_288 = x_285; +} +lean_ctor_set(x_288, 0, x_286); +return x_288; +} +else +{ +lean_object* x_289; lean_object* x_290; lean_object* x_291; +lean_dec(x_260); +lean_dec(x_258); +lean_dec_ref(x_18); +x_289 = lean_ctor_get(x_283, 0); +lean_inc(x_289); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + x_290 = x_283; +} else { + lean_dec_ref(x_283); + x_290 = lean_box(0); +} +if (lean_is_scalar(x_290)) { + x_291 = lean_alloc_ctor(1, 1, 0); +} else { + x_291 = x_290; +} +lean_ctor_set(x_291, 0, x_289); +return x_291; +} +} +else +{ +lean_object* x_292; lean_object* x_293; lean_object* x_294; +lean_dec(x_268); +lean_dec(x_260); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_292 = lean_ctor_get(x_273, 0); +lean_inc(x_292); +if (lean_is_exclusive(x_273)) { + lean_ctor_release(x_273, 0); + x_293 = x_273; +} else { + lean_dec_ref(x_273); + x_293 = lean_box(0); +} +if (lean_is_scalar(x_293)) { + x_294 = lean_alloc_ctor(1, 1, 0); +} else { + x_294 = x_293; +} +lean_ctor_set(x_294, 0, x_292); +return x_294; +} +} +else +{ +lean_object* x_295; lean_object* x_296; lean_object* x_297; +lean_dec(x_260); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_295 = lean_ctor_get(x_267, 0); +lean_inc(x_295); +if (lean_is_exclusive(x_267)) { + lean_ctor_release(x_267, 0); + x_296 = x_267; +} else { + lean_dec_ref(x_267); + x_296 = lean_box(0); +} +if (lean_is_scalar(x_296)) { + x_297 = lean_alloc_ctor(1, 1, 0); +} else { + x_297 = x_296; +} +lean_ctor_set(x_297, 0, x_295); +return x_297; +} +} +} +else +{ +lean_object* x_298; lean_object* x_299; lean_object* x_300; +lean_dec(x_260); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_298 = lean_ctor_get(x_262, 0); +lean_inc(x_298); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + x_299 = x_262; +} else { + lean_dec_ref(x_262); + x_299 = lean_box(0); +} +if (lean_is_scalar(x_299)) { + x_300 = lean_alloc_ctor(1, 1, 0); +} else { + x_300 = x_299; +} +lean_ctor_set(x_300, 0, x_298); +return x_300; +} +} +else +{ +lean_object* x_301; +lean_dec(x_260); +lean_dec_ref(x_256); +lean_free_object(x_34); +x_301 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_301) == 0) +{ +lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +lean_dec_ref(x_301); +x_303 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_304 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_305 = lean_unsigned_to_nat(4u); +x_306 = l_Lean_Expr_getBoundedAppFn(x_305, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_302); +x_307 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_306, x_302, x_304, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_307) == 0) +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; +x_308 = lean_ctor_get(x_307, 0); +lean_inc(x_308); +lean_dec_ref(x_307); +x_309 = l_Lean_mkApp3(x_303, x_26, x_52, x_257); +x_310 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_311 = l_Lean_Expr_replaceFn(x_2, x_310); +x_312 = l_Lean_mkApp3(x_311, x_302, x_304, x_309); +x_313 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_314 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_315 = l_Lean_mkConst(x_313, x_314); +lean_inc_ref(x_21); +x_316 = l_Lean_mkApp3(x_315, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_317 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_308, x_312, x_21, x_316, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_317) == 0) +{ +lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; +x_318 = lean_ctor_get(x_317, 0); +lean_inc(x_318); +if (lean_is_exclusive(x_317)) { + lean_ctor_release(x_317, 0); + x_319 = x_317; +} else { + lean_dec_ref(x_317); + x_319 = lean_box(0); +} +if (lean_is_scalar(x_258)) { + x_320 = lean_alloc_ctor(1, 2, 1); +} else { + x_320 = x_258; +} +lean_ctor_set(x_320, 0, x_21); +lean_ctor_set(x_320, 1, x_318); +x_321 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_320, sizeof(void*)*2, x_321); +if (lean_is_scalar(x_319)) { + x_322 = lean_alloc_ctor(0, 1, 0); +} else { + x_322 = x_319; +} +lean_ctor_set(x_322, 0, x_320); +return x_322; +} +else +{ +lean_object* x_323; lean_object* x_324; lean_object* x_325; +lean_dec(x_258); +lean_dec(x_42); +lean_dec_ref(x_21); +x_323 = lean_ctor_get(x_317, 0); +lean_inc(x_323); +if (lean_is_exclusive(x_317)) { + lean_ctor_release(x_317, 0); + x_324 = x_317; +} else { + lean_dec_ref(x_317); + x_324 = lean_box(0); +} +if (lean_is_scalar(x_324)) { + x_325 = lean_alloc_ctor(1, 1, 0); +} else { + x_325 = x_324; +} +lean_ctor_set(x_325, 0, x_323); +return x_325; +} +} +else +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; +lean_dec(x_302); +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_326 = lean_ctor_get(x_307, 0); +lean_inc(x_326); +if (lean_is_exclusive(x_307)) { + lean_ctor_release(x_307, 0); + x_327 = x_307; +} else { + lean_dec_ref(x_307); + x_327 = lean_box(0); +} +if (lean_is_scalar(x_327)) { + x_328 = lean_alloc_ctor(1, 1, 0); +} else { + x_328 = x_327; +} +lean_ctor_set(x_328, 0, x_326); +return x_328; +} +} +else +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec(x_52); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_329 = lean_ctor_get(x_301, 0); +lean_inc(x_329); +if (lean_is_exclusive(x_301)) { + lean_ctor_release(x_301, 0); + x_330 = x_301; +} else { + lean_dec_ref(x_301); + x_330 = lean_box(0); +} +if (lean_is_scalar(x_330)) { + x_331 = lean_alloc_ctor(1, 1, 0); +} else { + x_331 = x_330; +} +lean_ctor_set(x_331, 0, x_329); +return x_331; +} +} +} +else +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; +lean_dec(x_258); +lean_dec_ref(x_257); +lean_dec_ref(x_256); +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_332 = lean_ctor_get(x_259, 0); +lean_inc(x_332); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + x_333 = x_259; +} else { + lean_dec_ref(x_259); + x_333 = lean_box(0); +} +if (lean_is_scalar(x_333)) { + x_334 = lean_alloc_ctor(1, 1, 0); +} else { + x_334 = x_333; +} +lean_ctor_set(x_334, 0, x_332); +return x_334; +} +} +} +} +else +{ +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_56; +} +} +else +{ +uint8_t x_335; +lean_dec(x_52); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_335 = !lean_is_exclusive(x_54); +if (x_335 == 0) +{ +return x_54; +} +else +{ +lean_object* x_336; lean_object* x_337; +x_336 = lean_ctor_get(x_54, 0); +lean_inc(x_336); +lean_dec(x_54); +x_337 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_337, 0, x_336); +return x_337; +} +} +} +else +{ +uint8_t x_338; +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_338 = !lean_is_exclusive(x_51); +if (x_338 == 0) +{ +return x_51; +} +else +{ +lean_object* x_339; lean_object* x_340; +x_339 = lean_ctor_get(x_51, 0); +lean_inc(x_339); +lean_dec(x_51); +x_340 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_340, 0, x_339); +return x_340; +} +} +} +else +{ +uint8_t x_341; +lean_dec(x_49); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_341 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_34, 0, x_341); +lean_ctor_set(x_47, 0, x_34); +return x_47; +} +} +else +{ +lean_object* x_342; +x_342 = lean_ctor_get(x_47, 0); +lean_inc(x_342); +lean_dec(x_47); +if (lean_obj_tag(x_342) == 1) +{ +lean_object* x_343; lean_object* x_344; +x_343 = lean_ctor_get(x_342, 0); +lean_inc(x_343); +lean_dec_ref(x_342); +x_344 = l_Lean_Meta_Sym_shareCommon___redArg(x_343, x_7); +if (lean_obj_tag(x_344) == 0) +{ +lean_object* x_345; lean_object* x_346; lean_object* x_347; +x_345 = lean_ctor_get(x_344, 0); +lean_inc(x_345); +lean_dec_ref(x_344); +x_346 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_345); +lean_inc_ref(x_26); +x_347 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_346, x_26, x_345, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_347) == 0) +{ +lean_object* x_348; lean_object* x_349; +x_348 = lean_ctor_get(x_347, 0); +lean_inc(x_348); +lean_dec_ref(x_347); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_349 = lean_sym_simp(x_348, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_349) == 0) +{ +lean_object* x_350; lean_object* x_351; +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_351 = x_349; +} else { + lean_dec_ref(x_349); + x_351 = lean_box(0); +} +if (lean_obj_tag(x_350) == 0) +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; +lean_dec(x_345); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_350)) { + x_352 = x_350; +} else { + lean_dec_ref(x_350); + x_352 = lean_box(0); +} +if (lean_is_scalar(x_352)) { + x_353 = lean_alloc_ctor(0, 0, 1); +} else { + x_353 = x_352; +} +lean_ctor_set_uint8(x_353, 0, x_32); +if (lean_is_scalar(x_351)) { + x_354 = lean_alloc_ctor(0, 1, 0); +} else { + x_354 = x_351; +} +lean_ctor_set(x_354, 0, x_353); +return x_354; +} +else +{ +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +lean_dec(x_351); +x_355 = lean_ctor_get(x_350, 0); +lean_inc_ref(x_355); +x_356 = lean_ctor_get(x_350, 1); +lean_inc_ref(x_356); +if (lean_is_exclusive(x_350)) { + lean_ctor_release(x_350, 0); + lean_ctor_release(x_350, 1); + x_357 = x_350; +} else { + lean_dec_ref(x_350); + x_357 = lean_box(0); +} +x_358 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_355, x_6); +if (lean_obj_tag(x_358) == 0) +{ +lean_object* x_359; uint8_t x_360; +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +lean_dec_ref(x_358); +x_360 = lean_unbox(x_359); +if (x_360 == 0) +{ +lean_object* x_361; +lean_dec(x_42); +x_361 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_355, x_6); +lean_dec_ref(x_355); +if (lean_obj_tag(x_361) == 0) +{ +lean_object* x_362; lean_object* x_363; uint8_t x_364; +x_362 = lean_ctor_get(x_361, 0); +lean_inc(x_362); +if (lean_is_exclusive(x_361)) { + lean_ctor_release(x_361, 0); + x_363 = x_361; +} else { + lean_dec_ref(x_361); + x_363 = lean_box(0); +} +x_364 = lean_unbox(x_362); +lean_dec(x_362); +if (x_364 == 0) +{ +lean_object* x_365; +lean_dec(x_359); +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_363)) { + x_365 = lean_alloc_ctor(0, 1, 0); +} else { + x_365 = x_363; +} +lean_ctor_set(x_365, 0, x_34); +return x_365; +} +else +{ +lean_object* x_366; +lean_dec(x_363); +lean_free_object(x_34); +x_366 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_366) == 0) +{ +lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; +x_367 = lean_ctor_get(x_366, 0); +lean_inc(x_367); +lean_dec_ref(x_366); +x_368 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_369 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_370 = lean_unsigned_to_nat(4u); +x_371 = l_Lean_Expr_getBoundedAppFn(x_370, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_367); +x_372 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_371, x_367, x_369, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_372) == 0) +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_373 = lean_ctor_get(x_372, 0); +lean_inc(x_373); +lean_dec_ref(x_372); +x_374 = l_Lean_mkApp3(x_368, x_26, x_345, x_356); +x_375 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_376 = l_Lean_Expr_replaceFn(x_2, x_375); +x_377 = l_Lean_mkApp3(x_376, x_367, x_369, x_374); +x_378 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_379 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_380 = l_Lean_mkConst(x_378, x_379); +lean_inc_ref(x_18); +x_381 = l_Lean_mkApp3(x_380, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_382 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_373, x_377, x_18, x_381, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_382) == 0) +{ +lean_object* x_383; lean_object* x_384; lean_object* x_385; uint8_t x_386; lean_object* x_387; +x_383 = lean_ctor_get(x_382, 0); +lean_inc(x_383); +if (lean_is_exclusive(x_382)) { + lean_ctor_release(x_382, 0); + x_384 = x_382; +} else { + lean_dec_ref(x_382); + x_384 = lean_box(0); +} +if (lean_is_scalar(x_357)) { + x_385 = lean_alloc_ctor(1, 2, 1); +} else { + x_385 = x_357; +} +lean_ctor_set(x_385, 0, x_18); +lean_ctor_set(x_385, 1, x_383); +x_386 = lean_unbox(x_359); +lean_dec(x_359); +lean_ctor_set_uint8(x_385, sizeof(void*)*2, x_386); +if (lean_is_scalar(x_384)) { + x_387 = lean_alloc_ctor(0, 1, 0); +} else { + x_387 = x_384; +} +lean_ctor_set(x_387, 0, x_385); +return x_387; +} +else +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; +lean_dec(x_359); +lean_dec(x_357); +lean_dec_ref(x_18); +x_388 = lean_ctor_get(x_382, 0); +lean_inc(x_388); +if (lean_is_exclusive(x_382)) { + lean_ctor_release(x_382, 0); + x_389 = x_382; +} else { + lean_dec_ref(x_382); + x_389 = lean_box(0); +} +if (lean_is_scalar(x_389)) { + x_390 = lean_alloc_ctor(1, 1, 0); +} else { + x_390 = x_389; +} +lean_ctor_set(x_390, 0, x_388); +return x_390; +} +} +else +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; +lean_dec(x_367); +lean_dec(x_359); +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_391 = lean_ctor_get(x_372, 0); +lean_inc(x_391); +if (lean_is_exclusive(x_372)) { + lean_ctor_release(x_372, 0); + x_392 = x_372; +} else { + lean_dec_ref(x_372); + x_392 = lean_box(0); +} +if (lean_is_scalar(x_392)) { + x_393 = lean_alloc_ctor(1, 1, 0); +} else { + x_393 = x_392; +} +lean_ctor_set(x_393, 0, x_391); +return x_393; +} +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; +lean_dec(x_359); +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_394 = lean_ctor_get(x_366, 0); +lean_inc(x_394); +if (lean_is_exclusive(x_366)) { + lean_ctor_release(x_366, 0); + x_395 = x_366; +} else { + lean_dec_ref(x_366); + x_395 = lean_box(0); +} +if (lean_is_scalar(x_395)) { + x_396 = lean_alloc_ctor(1, 1, 0); +} else { + x_396 = x_395; +} +lean_ctor_set(x_396, 0, x_394); +return x_396; +} +} +} +else +{ +lean_object* x_397; lean_object* x_398; lean_object* x_399; +lean_dec(x_359); +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_397 = lean_ctor_get(x_361, 0); +lean_inc(x_397); +if (lean_is_exclusive(x_361)) { + lean_ctor_release(x_361, 0); + x_398 = x_361; +} else { + lean_dec_ref(x_361); + x_398 = lean_box(0); +} +if (lean_is_scalar(x_398)) { + x_399 = lean_alloc_ctor(1, 1, 0); +} else { + x_399 = x_398; +} +lean_ctor_set(x_399, 0, x_397); +return x_399; +} +} +else +{ +lean_object* x_400; +lean_dec(x_359); +lean_dec_ref(x_355); +lean_free_object(x_34); +x_400 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_400) == 0) +{ +lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_401 = lean_ctor_get(x_400, 0); +lean_inc(x_401); +lean_dec_ref(x_400); +x_402 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_403 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_404 = lean_unsigned_to_nat(4u); +x_405 = l_Lean_Expr_getBoundedAppFn(x_404, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_401); +x_406 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_405, x_401, x_403, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_406) == 0) +{ +lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +lean_dec_ref(x_406); +x_408 = l_Lean_mkApp3(x_402, x_26, x_345, x_356); +x_409 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_410 = l_Lean_Expr_replaceFn(x_2, x_409); +x_411 = l_Lean_mkApp3(x_410, x_401, x_403, x_408); +x_412 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_413 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_414 = l_Lean_mkConst(x_412, x_413); +lean_inc_ref(x_21); +x_415 = l_Lean_mkApp3(x_414, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_416 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_407, x_411, x_21, x_415, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_416) == 0) +{ +lean_object* x_417; lean_object* x_418; lean_object* x_419; uint8_t x_420; lean_object* x_421; +x_417 = lean_ctor_get(x_416, 0); +lean_inc(x_417); +if (lean_is_exclusive(x_416)) { + lean_ctor_release(x_416, 0); + x_418 = x_416; +} else { + lean_dec_ref(x_416); + x_418 = lean_box(0); +} +if (lean_is_scalar(x_357)) { + x_419 = lean_alloc_ctor(1, 2, 1); +} else { + x_419 = x_357; +} +lean_ctor_set(x_419, 0, x_21); +lean_ctor_set(x_419, 1, x_417); +x_420 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_419, sizeof(void*)*2, x_420); +if (lean_is_scalar(x_418)) { + x_421 = lean_alloc_ctor(0, 1, 0); +} else { + x_421 = x_418; +} +lean_ctor_set(x_421, 0, x_419); +return x_421; +} +else +{ +lean_object* x_422; lean_object* x_423; lean_object* x_424; +lean_dec(x_357); +lean_dec(x_42); +lean_dec_ref(x_21); +x_422 = lean_ctor_get(x_416, 0); +lean_inc(x_422); +if (lean_is_exclusive(x_416)) { + lean_ctor_release(x_416, 0); + x_423 = x_416; +} else { + lean_dec_ref(x_416); + x_423 = lean_box(0); +} +if (lean_is_scalar(x_423)) { + x_424 = lean_alloc_ctor(1, 1, 0); +} else { + x_424 = x_423; +} +lean_ctor_set(x_424, 0, x_422); +return x_424; +} +} +else +{ +lean_object* x_425; lean_object* x_426; lean_object* x_427; +lean_dec(x_401); +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_425 = lean_ctor_get(x_406, 0); +lean_inc(x_425); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_426 = x_406; +} else { + lean_dec_ref(x_406); + x_426 = lean_box(0); +} +if (lean_is_scalar(x_426)) { + x_427 = lean_alloc_ctor(1, 1, 0); +} else { + x_427 = x_426; +} +lean_ctor_set(x_427, 0, x_425); +return x_427; +} +} +else +{ +lean_object* x_428; lean_object* x_429; lean_object* x_430; +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec(x_345); +lean_dec(x_42); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_428 = lean_ctor_get(x_400, 0); +lean_inc(x_428); +if (lean_is_exclusive(x_400)) { + lean_ctor_release(x_400, 0); + x_429 = x_400; +} else { + lean_dec_ref(x_400); + x_429 = lean_box(0); +} +if (lean_is_scalar(x_429)) { + x_430 = lean_alloc_ctor(1, 1, 0); +} else { + x_430 = x_429; +} +lean_ctor_set(x_430, 0, x_428); +return x_430; +} +} +} +else +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; +lean_dec(x_357); +lean_dec_ref(x_356); +lean_dec_ref(x_355); +lean_dec(x_345); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_431 = lean_ctor_get(x_358, 0); +lean_inc(x_431); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + x_432 = x_358; +} else { + lean_dec_ref(x_358); + x_432 = lean_box(0); +} +if (lean_is_scalar(x_432)) { + x_433 = lean_alloc_ctor(1, 1, 0); +} else { + x_433 = x_432; +} +lean_ctor_set(x_433, 0, x_431); +return x_433; +} +} +} +else +{ +lean_dec(x_345); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_349; +} +} +else +{ +lean_object* x_434; lean_object* x_435; lean_object* x_436; +lean_dec(x_345); +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_434 = lean_ctor_get(x_347, 0); +lean_inc(x_434); +if (lean_is_exclusive(x_347)) { + lean_ctor_release(x_347, 0); + x_435 = x_347; +} else { + lean_dec_ref(x_347); + x_435 = lean_box(0); +} +if (lean_is_scalar(x_435)) { + x_436 = lean_alloc_ctor(1, 1, 0); +} else { + x_436 = x_435; +} +lean_ctor_set(x_436, 0, x_434); +return x_436; +} +} +else +{ +lean_object* x_437; lean_object* x_438; lean_object* x_439; +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_437 = lean_ctor_get(x_344, 0); +lean_inc(x_437); +if (lean_is_exclusive(x_344)) { + lean_ctor_release(x_344, 0); + x_438 = x_344; +} else { + lean_dec_ref(x_344); + x_438 = lean_box(0); +} +if (lean_is_scalar(x_438)) { + x_439 = lean_alloc_ctor(1, 1, 0); +} else { + x_439 = x_438; +} +lean_ctor_set(x_439, 0, x_437); +return x_439; +} +} +else +{ +uint8_t x_440; lean_object* x_441; +lean_dec(x_342); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_440 = lean_unbox(x_42); +lean_dec(x_42); +lean_ctor_set_uint8(x_34, 0, x_440); +x_441 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_441, 0, x_34); +return x_441; +} +} +} +else +{ +uint8_t x_442; +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_442 = !lean_is_exclusive(x_47); +if (x_442 == 0) +{ +return x_47; +} +else +{ +lean_object* x_443; lean_object* x_444; +x_443 = lean_ctor_get(x_47, 0); +lean_inc(x_443); +lean_dec(x_47); +x_444 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_444, 0, x_443); +return x_444; +} +} +} +else +{ +lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; uint8_t x_450; +lean_dec(x_42); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_445 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_446 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_447 = l_Lean_mkConst(x_445, x_446); +lean_inc_ref(x_18); +x_448 = l_Lean_mkApp3(x_447, x_29, x_21, x_18); +x_449 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_449, 0, x_18); +lean_ctor_set(x_449, 1, x_448); +x_450 = lean_unbox(x_38); +lean_dec(x_38); +lean_ctor_set_uint8(x_449, sizeof(void*)*2, x_450); +lean_ctor_set(x_40, 0, x_449); +return x_40; +} +} +else +{ +lean_object* x_451; uint8_t x_452; +x_451 = lean_ctor_get(x_40, 0); +lean_inc(x_451); +lean_dec(x_40); +x_452 = lean_unbox(x_451); +if (x_452 == 0) +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; +lean_dec(x_38); +x_453 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_454 = l_Lean_Expr_app___override(x_453, x_26); +x_455 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_456 = l_Lean_Meta_trySynthInstance(x_454, x_455, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_456) == 0) +{ +lean_object* x_457; lean_object* x_458; +x_457 = lean_ctor_get(x_456, 0); +lean_inc(x_457); +if (lean_is_exclusive(x_456)) { + lean_ctor_release(x_456, 0); + x_458 = x_456; +} else { + lean_dec_ref(x_456); + x_458 = lean_box(0); +} +if (lean_obj_tag(x_457) == 1) +{ +lean_object* x_459; lean_object* x_460; +lean_dec(x_458); +x_459 = lean_ctor_get(x_457, 0); +lean_inc(x_459); +lean_dec_ref(x_457); +x_460 = l_Lean_Meta_Sym_shareCommon___redArg(x_459, x_7); +if (lean_obj_tag(x_460) == 0) +{ +lean_object* x_461; lean_object* x_462; lean_object* x_463; +x_461 = lean_ctor_get(x_460, 0); +lean_inc(x_461); +lean_dec_ref(x_460); +x_462 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_461); +lean_inc_ref(x_26); +x_463 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_462, x_26, x_461, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_463) == 0) +{ +lean_object* x_464; lean_object* x_465; +x_464 = lean_ctor_get(x_463, 0); +lean_inc(x_464); +lean_dec_ref(x_463); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_465 = lean_sym_simp(x_464, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_465) == 0) +{ +lean_object* x_466; lean_object* x_467; +x_466 = lean_ctor_get(x_465, 0); +lean_inc(x_466); +if (lean_is_exclusive(x_465)) { + lean_ctor_release(x_465, 0); + x_467 = x_465; +} else { + lean_dec_ref(x_465); + x_467 = lean_box(0); +} +if (lean_obj_tag(x_466) == 0) +{ +lean_object* x_468; lean_object* x_469; lean_object* x_470; +lean_dec(x_461); +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_466)) { + x_468 = x_466; +} else { + lean_dec_ref(x_466); + x_468 = lean_box(0); +} +if (lean_is_scalar(x_468)) { + x_469 = lean_alloc_ctor(0, 0, 1); +} else { + x_469 = x_468; +} +lean_ctor_set_uint8(x_469, 0, x_32); +if (lean_is_scalar(x_467)) { + x_470 = lean_alloc_ctor(0, 1, 0); +} else { + x_470 = x_467; +} +lean_ctor_set(x_470, 0, x_469); +return x_470; +} +else +{ +lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; +lean_dec(x_467); +x_471 = lean_ctor_get(x_466, 0); +lean_inc_ref(x_471); +x_472 = lean_ctor_get(x_466, 1); +lean_inc_ref(x_472); +if (lean_is_exclusive(x_466)) { + lean_ctor_release(x_466, 0); + lean_ctor_release(x_466, 1); + x_473 = x_466; +} else { + lean_dec_ref(x_466); + x_473 = lean_box(0); +} +x_474 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_471, x_6); +if (lean_obj_tag(x_474) == 0) +{ +lean_object* x_475; uint8_t x_476; +x_475 = lean_ctor_get(x_474, 0); +lean_inc(x_475); +lean_dec_ref(x_474); +x_476 = lean_unbox(x_475); +if (x_476 == 0) +{ +lean_object* x_477; +lean_dec(x_451); +x_477 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_471, x_6); +lean_dec_ref(x_471); +if (lean_obj_tag(x_477) == 0) +{ +lean_object* x_478; lean_object* x_479; uint8_t x_480; +x_478 = lean_ctor_get(x_477, 0); +lean_inc(x_478); +if (lean_is_exclusive(x_477)) { + lean_ctor_release(x_477, 0); + x_479 = x_477; +} else { + lean_dec_ref(x_477); + x_479 = lean_box(0); +} +x_480 = lean_unbox(x_478); +lean_dec(x_478); +if (x_480 == 0) +{ +lean_object* x_481; +lean_dec(x_475); +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_479)) { + x_481 = lean_alloc_ctor(0, 1, 0); +} else { + x_481 = x_479; +} +lean_ctor_set(x_481, 0, x_34); +return x_481; +} +else +{ +lean_object* x_482; +lean_dec(x_479); +lean_free_object(x_34); +x_482 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_482) == 0) +{ +lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; +x_483 = lean_ctor_get(x_482, 0); +lean_inc(x_483); +lean_dec_ref(x_482); +x_484 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_485 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_486 = lean_unsigned_to_nat(4u); +x_487 = l_Lean_Expr_getBoundedAppFn(x_486, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_483); +x_488 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_487, x_483, x_485, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_488) == 0) +{ +lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; +x_489 = lean_ctor_get(x_488, 0); +lean_inc(x_489); +lean_dec_ref(x_488); +x_490 = l_Lean_mkApp3(x_484, x_26, x_461, x_472); +x_491 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_492 = l_Lean_Expr_replaceFn(x_2, x_491); +x_493 = l_Lean_mkApp3(x_492, x_483, x_485, x_490); +x_494 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_495 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_496 = l_Lean_mkConst(x_494, x_495); +lean_inc_ref(x_18); +x_497 = l_Lean_mkApp3(x_496, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_498 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_489, x_493, x_18, x_497, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_498) == 0) +{ +lean_object* x_499; lean_object* x_500; lean_object* x_501; uint8_t x_502; lean_object* x_503; +x_499 = lean_ctor_get(x_498, 0); +lean_inc(x_499); +if (lean_is_exclusive(x_498)) { + lean_ctor_release(x_498, 0); + x_500 = x_498; +} else { + lean_dec_ref(x_498); + x_500 = lean_box(0); +} +if (lean_is_scalar(x_473)) { + x_501 = lean_alloc_ctor(1, 2, 1); +} else { + x_501 = x_473; +} +lean_ctor_set(x_501, 0, x_18); +lean_ctor_set(x_501, 1, x_499); +x_502 = lean_unbox(x_475); +lean_dec(x_475); +lean_ctor_set_uint8(x_501, sizeof(void*)*2, x_502); +if (lean_is_scalar(x_500)) { + x_503 = lean_alloc_ctor(0, 1, 0); +} else { + x_503 = x_500; +} +lean_ctor_set(x_503, 0, x_501); +return x_503; +} +else +{ +lean_object* x_504; lean_object* x_505; lean_object* x_506; +lean_dec(x_475); +lean_dec(x_473); +lean_dec_ref(x_18); +x_504 = lean_ctor_get(x_498, 0); +lean_inc(x_504); +if (lean_is_exclusive(x_498)) { + lean_ctor_release(x_498, 0); + x_505 = x_498; +} else { + lean_dec_ref(x_498); + x_505 = lean_box(0); +} +if (lean_is_scalar(x_505)) { + x_506 = lean_alloc_ctor(1, 1, 0); +} else { + x_506 = x_505; +} +lean_ctor_set(x_506, 0, x_504); +return x_506; +} +} +else +{ +lean_object* x_507; lean_object* x_508; lean_object* x_509; +lean_dec(x_483); +lean_dec(x_475); +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_507 = lean_ctor_get(x_488, 0); +lean_inc(x_507); +if (lean_is_exclusive(x_488)) { + lean_ctor_release(x_488, 0); + x_508 = x_488; +} else { + lean_dec_ref(x_488); + x_508 = lean_box(0); +} +if (lean_is_scalar(x_508)) { + x_509 = lean_alloc_ctor(1, 1, 0); +} else { + x_509 = x_508; +} +lean_ctor_set(x_509, 0, x_507); +return x_509; +} +} +else +{ +lean_object* x_510; lean_object* x_511; lean_object* x_512; +lean_dec(x_475); +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_510 = lean_ctor_get(x_482, 0); +lean_inc(x_510); +if (lean_is_exclusive(x_482)) { + lean_ctor_release(x_482, 0); + x_511 = x_482; +} else { + lean_dec_ref(x_482); + x_511 = lean_box(0); +} +if (lean_is_scalar(x_511)) { + x_512 = lean_alloc_ctor(1, 1, 0); +} else { + x_512 = x_511; +} +lean_ctor_set(x_512, 0, x_510); +return x_512; +} +} +} +else +{ +lean_object* x_513; lean_object* x_514; lean_object* x_515; +lean_dec(x_475); +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_513 = lean_ctor_get(x_477, 0); +lean_inc(x_513); +if (lean_is_exclusive(x_477)) { + lean_ctor_release(x_477, 0); + x_514 = x_477; +} else { + lean_dec_ref(x_477); + x_514 = lean_box(0); +} +if (lean_is_scalar(x_514)) { + x_515 = lean_alloc_ctor(1, 1, 0); +} else { + x_515 = x_514; +} +lean_ctor_set(x_515, 0, x_513); +return x_515; +} +} +else +{ +lean_object* x_516; +lean_dec(x_475); +lean_dec_ref(x_471); +lean_free_object(x_34); +x_516 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_516) == 0) +{ +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; +x_517 = lean_ctor_get(x_516, 0); +lean_inc(x_517); +lean_dec_ref(x_516); +x_518 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_519 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_520 = lean_unsigned_to_nat(4u); +x_521 = l_Lean_Expr_getBoundedAppFn(x_520, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_517); +x_522 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_521, x_517, x_519, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_522) == 0) +{ +lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; +x_523 = lean_ctor_get(x_522, 0); +lean_inc(x_523); +lean_dec_ref(x_522); +x_524 = l_Lean_mkApp3(x_518, x_26, x_461, x_472); +x_525 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_526 = l_Lean_Expr_replaceFn(x_2, x_525); +x_527 = l_Lean_mkApp3(x_526, x_517, x_519, x_524); +x_528 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_529 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_530 = l_Lean_mkConst(x_528, x_529); +lean_inc_ref(x_21); +x_531 = l_Lean_mkApp3(x_530, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_532 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_523, x_527, x_21, x_531, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_532) == 0) +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; uint8_t x_536; lean_object* x_537; +x_533 = lean_ctor_get(x_532, 0); +lean_inc(x_533); +if (lean_is_exclusive(x_532)) { + lean_ctor_release(x_532, 0); + x_534 = x_532; +} else { + lean_dec_ref(x_532); + x_534 = lean_box(0); +} +if (lean_is_scalar(x_473)) { + x_535 = lean_alloc_ctor(1, 2, 1); +} else { + x_535 = x_473; +} +lean_ctor_set(x_535, 0, x_21); +lean_ctor_set(x_535, 1, x_533); +x_536 = lean_unbox(x_451); +lean_dec(x_451); +lean_ctor_set_uint8(x_535, sizeof(void*)*2, x_536); +if (lean_is_scalar(x_534)) { + x_537 = lean_alloc_ctor(0, 1, 0); +} else { + x_537 = x_534; +} +lean_ctor_set(x_537, 0, x_535); +return x_537; +} +else +{ +lean_object* x_538; lean_object* x_539; lean_object* x_540; +lean_dec(x_473); +lean_dec(x_451); +lean_dec_ref(x_21); +x_538 = lean_ctor_get(x_532, 0); +lean_inc(x_538); +if (lean_is_exclusive(x_532)) { + lean_ctor_release(x_532, 0); + x_539 = x_532; +} else { + lean_dec_ref(x_532); + x_539 = lean_box(0); +} +if (lean_is_scalar(x_539)) { + x_540 = lean_alloc_ctor(1, 1, 0); +} else { + x_540 = x_539; +} +lean_ctor_set(x_540, 0, x_538); +return x_540; +} +} +else +{ +lean_object* x_541; lean_object* x_542; lean_object* x_543; +lean_dec(x_517); +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_dec(x_451); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_541 = lean_ctor_get(x_522, 0); +lean_inc(x_541); +if (lean_is_exclusive(x_522)) { + lean_ctor_release(x_522, 0); + x_542 = x_522; +} else { + lean_dec_ref(x_522); + x_542 = lean_box(0); +} +if (lean_is_scalar(x_542)) { + x_543 = lean_alloc_ctor(1, 1, 0); +} else { + x_543 = x_542; +} +lean_ctor_set(x_543, 0, x_541); +return x_543; +} +} +else +{ +lean_object* x_544; lean_object* x_545; lean_object* x_546; +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec(x_461); +lean_dec(x_451); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_544 = lean_ctor_get(x_516, 0); +lean_inc(x_544); +if (lean_is_exclusive(x_516)) { + lean_ctor_release(x_516, 0); + x_545 = x_516; +} else { + lean_dec_ref(x_516); + x_545 = lean_box(0); +} +if (lean_is_scalar(x_545)) { + x_546 = lean_alloc_ctor(1, 1, 0); +} else { + x_546 = x_545; +} +lean_ctor_set(x_546, 0, x_544); +return x_546; +} +} +} +else +{ +lean_object* x_547; lean_object* x_548; lean_object* x_549; +lean_dec(x_473); +lean_dec_ref(x_472); +lean_dec_ref(x_471); +lean_dec(x_461); +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_547 = lean_ctor_get(x_474, 0); +lean_inc(x_547); +if (lean_is_exclusive(x_474)) { + lean_ctor_release(x_474, 0); + x_548 = x_474; +} else { + lean_dec_ref(x_474); + x_548 = lean_box(0); +} +if (lean_is_scalar(x_548)) { + x_549 = lean_alloc_ctor(1, 1, 0); +} else { + x_549 = x_548; +} +lean_ctor_set(x_549, 0, x_547); +return x_549; +} +} +} +else +{ +lean_dec(x_461); +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_465; +} +} +else +{ +lean_object* x_550; lean_object* x_551; lean_object* x_552; +lean_dec(x_461); +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_550 = lean_ctor_get(x_463, 0); +lean_inc(x_550); +if (lean_is_exclusive(x_463)) { + lean_ctor_release(x_463, 0); + x_551 = x_463; +} else { + lean_dec_ref(x_463); + x_551 = lean_box(0); +} +if (lean_is_scalar(x_551)) { + x_552 = lean_alloc_ctor(1, 1, 0); +} else { + x_552 = x_551; +} +lean_ctor_set(x_552, 0, x_550); +return x_552; +} +} +else +{ +lean_object* x_553; lean_object* x_554; lean_object* x_555; +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_553 = lean_ctor_get(x_460, 0); +lean_inc(x_553); +if (lean_is_exclusive(x_460)) { + lean_ctor_release(x_460, 0); + x_554 = x_460; +} else { + lean_dec_ref(x_460); + x_554 = lean_box(0); +} +if (lean_is_scalar(x_554)) { + x_555 = lean_alloc_ctor(1, 1, 0); +} else { + x_555 = x_554; +} +lean_ctor_set(x_555, 0, x_553); +return x_555; +} +} +else +{ +uint8_t x_556; lean_object* x_557; +lean_dec(x_457); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_556 = lean_unbox(x_451); +lean_dec(x_451); +lean_ctor_set_uint8(x_34, 0, x_556); +if (lean_is_scalar(x_458)) { + x_557 = lean_alloc_ctor(0, 1, 0); +} else { + x_557 = x_458; +} +lean_ctor_set(x_557, 0, x_34); +return x_557; +} +} +else +{ +lean_object* x_558; lean_object* x_559; lean_object* x_560; +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_558 = lean_ctor_get(x_456, 0); +lean_inc(x_558); +if (lean_is_exclusive(x_456)) { + lean_ctor_release(x_456, 0); + x_559 = x_456; +} else { + lean_dec_ref(x_456); + x_559 = lean_box(0); +} +if (lean_is_scalar(x_559)) { + x_560 = lean_alloc_ctor(1, 1, 0); +} else { + x_560 = x_559; +} +lean_ctor_set(x_560, 0, x_558); +return x_560; +} +} +else +{ +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; uint8_t x_566; lean_object* x_567; +lean_dec(x_451); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_561 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_562 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_563 = l_Lean_mkConst(x_561, x_562); +lean_inc_ref(x_18); +x_564 = l_Lean_mkApp3(x_563, x_29, x_21, x_18); +x_565 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_565, 0, x_18); +lean_ctor_set(x_565, 1, x_564); +x_566 = lean_unbox(x_38); +lean_dec(x_38); +lean_ctor_set_uint8(x_565, sizeof(void*)*2, x_566); +x_567 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_567, 0, x_565); +return x_567; +} +} +} +else +{ +uint8_t x_568; +lean_dec(x_38); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_568 = !lean_is_exclusive(x_40); +if (x_568 == 0) +{ +return x_40; +} +else +{ +lean_object* x_569; lean_object* x_570; +x_569 = lean_ctor_get(x_40, 0); +lean_inc(x_569); +lean_dec(x_40); +x_570 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_570, 0, x_569); +return x_570; +} +} +} +else +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; +lean_dec(x_38); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_571 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_572 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_573 = l_Lean_mkConst(x_571, x_572); +lean_inc_ref(x_21); +x_574 = l_Lean_mkApp3(x_573, x_29, x_21, x_18); +x_575 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_575, 0, x_21); +lean_ctor_set(x_575, 1, x_574); +lean_ctor_set_uint8(x_575, sizeof(void*)*2, x_1); +lean_ctor_set(x_36, 0, x_575); +return x_36; +} +} +else +{ +lean_object* x_576; uint8_t x_577; +x_576 = lean_ctor_get(x_36, 0); +lean_inc(x_576); +lean_dec(x_36); +x_577 = lean_unbox(x_576); +if (x_577 == 0) +{ +lean_object* x_578; +x_578 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_578) == 0) +{ +lean_object* x_579; lean_object* x_580; uint8_t x_581; +x_579 = lean_ctor_get(x_578, 0); +lean_inc(x_579); +if (lean_is_exclusive(x_578)) { + lean_ctor_release(x_578, 0); + x_580 = x_578; +} else { + lean_dec_ref(x_578); + x_580 = lean_box(0); +} +x_581 = lean_unbox(x_579); +if (x_581 == 0) +{ +lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; +lean_dec(x_580); +lean_dec(x_576); +x_582 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_583 = l_Lean_Expr_app___override(x_582, x_26); +x_584 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_585 = l_Lean_Meta_trySynthInstance(x_583, x_584, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_585) == 0) +{ +lean_object* x_586; lean_object* x_587; +x_586 = lean_ctor_get(x_585, 0); +lean_inc(x_586); +if (lean_is_exclusive(x_585)) { + lean_ctor_release(x_585, 0); + x_587 = x_585; +} else { + lean_dec_ref(x_585); + x_587 = lean_box(0); +} +if (lean_obj_tag(x_586) == 1) +{ +lean_object* x_588; lean_object* x_589; +lean_dec(x_587); +x_588 = lean_ctor_get(x_586, 0); +lean_inc(x_588); +lean_dec_ref(x_586); +x_589 = l_Lean_Meta_Sym_shareCommon___redArg(x_588, x_7); +if (lean_obj_tag(x_589) == 0) +{ +lean_object* x_590; lean_object* x_591; lean_object* x_592; +x_590 = lean_ctor_get(x_589, 0); +lean_inc(x_590); +lean_dec_ref(x_589); +x_591 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_590); +lean_inc_ref(x_26); +x_592 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_591, x_26, x_590, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_592) == 0) +{ +lean_object* x_593; lean_object* x_594; +x_593 = lean_ctor_get(x_592, 0); +lean_inc(x_593); +lean_dec_ref(x_592); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_594 = lean_sym_simp(x_593, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_594) == 0) +{ +lean_object* x_595; lean_object* x_596; +x_595 = lean_ctor_get(x_594, 0); +lean_inc(x_595); +if (lean_is_exclusive(x_594)) { + lean_ctor_release(x_594, 0); + x_596 = x_594; +} else { + lean_dec_ref(x_594); + x_596 = lean_box(0); +} +if (lean_obj_tag(x_595) == 0) +{ +lean_object* x_597; lean_object* x_598; lean_object* x_599; +lean_dec(x_590); +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_595)) { + x_597 = x_595; +} else { + lean_dec_ref(x_595); + x_597 = lean_box(0); +} +if (lean_is_scalar(x_597)) { + x_598 = lean_alloc_ctor(0, 0, 1); +} else { + x_598 = x_597; +} +lean_ctor_set_uint8(x_598, 0, x_32); +if (lean_is_scalar(x_596)) { + x_599 = lean_alloc_ctor(0, 1, 0); +} else { + x_599 = x_596; +} +lean_ctor_set(x_599, 0, x_598); +return x_599; +} +else +{ +lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; +lean_dec(x_596); +x_600 = lean_ctor_get(x_595, 0); +lean_inc_ref(x_600); +x_601 = lean_ctor_get(x_595, 1); +lean_inc_ref(x_601); +if (lean_is_exclusive(x_595)) { + lean_ctor_release(x_595, 0); + lean_ctor_release(x_595, 1); + x_602 = x_595; +} else { + lean_dec_ref(x_595); + x_602 = lean_box(0); +} +x_603 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_600, x_6); +if (lean_obj_tag(x_603) == 0) +{ +lean_object* x_604; uint8_t x_605; +x_604 = lean_ctor_get(x_603, 0); +lean_inc(x_604); +lean_dec_ref(x_603); +x_605 = lean_unbox(x_604); +if (x_605 == 0) +{ +lean_object* x_606; +lean_dec(x_579); +x_606 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_600, x_6); +lean_dec_ref(x_600); +if (lean_obj_tag(x_606) == 0) +{ +lean_object* x_607; lean_object* x_608; uint8_t x_609; +x_607 = lean_ctor_get(x_606, 0); +lean_inc(x_607); +if (lean_is_exclusive(x_606)) { + lean_ctor_release(x_606, 0); + x_608 = x_606; +} else { + lean_dec_ref(x_606); + x_608 = lean_box(0); +} +x_609 = lean_unbox(x_607); +lean_dec(x_607); +if (x_609 == 0) +{ +lean_object* x_610; +lean_dec(x_604); +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_608)) { + x_610 = lean_alloc_ctor(0, 1, 0); +} else { + x_610 = x_608; +} +lean_ctor_set(x_610, 0, x_34); +return x_610; +} +else +{ +lean_object* x_611; +lean_dec(x_608); +lean_free_object(x_34); +x_611 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_611) == 0) +{ +lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; +x_612 = lean_ctor_get(x_611, 0); +lean_inc(x_612); +lean_dec_ref(x_611); +x_613 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_614 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_615 = lean_unsigned_to_nat(4u); +x_616 = l_Lean_Expr_getBoundedAppFn(x_615, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_612); +x_617 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_616, x_612, x_614, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_617) == 0) +{ +lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; +x_618 = lean_ctor_get(x_617, 0); +lean_inc(x_618); +lean_dec_ref(x_617); +x_619 = l_Lean_mkApp3(x_613, x_26, x_590, x_601); +x_620 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_621 = l_Lean_Expr_replaceFn(x_2, x_620); +x_622 = l_Lean_mkApp3(x_621, x_612, x_614, x_619); +x_623 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_624 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_625 = l_Lean_mkConst(x_623, x_624); +lean_inc_ref(x_18); +x_626 = l_Lean_mkApp3(x_625, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_627 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_618, x_622, x_18, x_626, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_627) == 0) +{ +lean_object* x_628; lean_object* x_629; lean_object* x_630; uint8_t x_631; lean_object* x_632; +x_628 = lean_ctor_get(x_627, 0); +lean_inc(x_628); +if (lean_is_exclusive(x_627)) { + lean_ctor_release(x_627, 0); + x_629 = x_627; +} else { + lean_dec_ref(x_627); + x_629 = lean_box(0); +} +if (lean_is_scalar(x_602)) { + x_630 = lean_alloc_ctor(1, 2, 1); +} else { + x_630 = x_602; +} +lean_ctor_set(x_630, 0, x_18); +lean_ctor_set(x_630, 1, x_628); +x_631 = lean_unbox(x_604); +lean_dec(x_604); +lean_ctor_set_uint8(x_630, sizeof(void*)*2, x_631); +if (lean_is_scalar(x_629)) { + x_632 = lean_alloc_ctor(0, 1, 0); +} else { + x_632 = x_629; +} +lean_ctor_set(x_632, 0, x_630); +return x_632; +} +else +{ +lean_object* x_633; lean_object* x_634; lean_object* x_635; +lean_dec(x_604); +lean_dec(x_602); +lean_dec_ref(x_18); +x_633 = lean_ctor_get(x_627, 0); +lean_inc(x_633); +if (lean_is_exclusive(x_627)) { + lean_ctor_release(x_627, 0); + x_634 = x_627; +} else { + lean_dec_ref(x_627); + x_634 = lean_box(0); +} +if (lean_is_scalar(x_634)) { + x_635 = lean_alloc_ctor(1, 1, 0); +} else { + x_635 = x_634; +} +lean_ctor_set(x_635, 0, x_633); +return x_635; +} +} +else +{ +lean_object* x_636; lean_object* x_637; lean_object* x_638; +lean_dec(x_612); +lean_dec(x_604); +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_636 = lean_ctor_get(x_617, 0); +lean_inc(x_636); +if (lean_is_exclusive(x_617)) { + lean_ctor_release(x_617, 0); + x_637 = x_617; +} else { + lean_dec_ref(x_617); + x_637 = lean_box(0); +} +if (lean_is_scalar(x_637)) { + x_638 = lean_alloc_ctor(1, 1, 0); +} else { + x_638 = x_637; +} +lean_ctor_set(x_638, 0, x_636); +return x_638; +} +} +else +{ +lean_object* x_639; lean_object* x_640; lean_object* x_641; +lean_dec(x_604); +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_639 = lean_ctor_get(x_611, 0); +lean_inc(x_639); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + x_640 = x_611; +} else { + lean_dec_ref(x_611); + x_640 = lean_box(0); +} +if (lean_is_scalar(x_640)) { + x_641 = lean_alloc_ctor(1, 1, 0); +} else { + x_641 = x_640; +} +lean_ctor_set(x_641, 0, x_639); +return x_641; +} +} +} +else +{ +lean_object* x_642; lean_object* x_643; lean_object* x_644; +lean_dec(x_604); +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_642 = lean_ctor_get(x_606, 0); +lean_inc(x_642); +if (lean_is_exclusive(x_606)) { + lean_ctor_release(x_606, 0); + x_643 = x_606; +} else { + lean_dec_ref(x_606); + x_643 = lean_box(0); +} +if (lean_is_scalar(x_643)) { + x_644 = lean_alloc_ctor(1, 1, 0); +} else { + x_644 = x_643; +} +lean_ctor_set(x_644, 0, x_642); +return x_644; +} +} +else +{ +lean_object* x_645; +lean_dec(x_604); +lean_dec_ref(x_600); +lean_free_object(x_34); +x_645 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_645) == 0) +{ +lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; +x_646 = lean_ctor_get(x_645, 0); +lean_inc(x_646); +lean_dec_ref(x_645); +x_647 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_648 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_649 = lean_unsigned_to_nat(4u); +x_650 = l_Lean_Expr_getBoundedAppFn(x_649, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_646); +x_651 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_650, x_646, x_648, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_651) == 0) +{ +lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; +x_652 = lean_ctor_get(x_651, 0); +lean_inc(x_652); +lean_dec_ref(x_651); +x_653 = l_Lean_mkApp3(x_647, x_26, x_590, x_601); +x_654 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_655 = l_Lean_Expr_replaceFn(x_2, x_654); +x_656 = l_Lean_mkApp3(x_655, x_646, x_648, x_653); +x_657 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_658 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_659 = l_Lean_mkConst(x_657, x_658); +lean_inc_ref(x_21); +x_660 = l_Lean_mkApp3(x_659, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_661 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_652, x_656, x_21, x_660, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_661) == 0) +{ +lean_object* x_662; lean_object* x_663; lean_object* x_664; uint8_t x_665; lean_object* x_666; +x_662 = lean_ctor_get(x_661, 0); +lean_inc(x_662); +if (lean_is_exclusive(x_661)) { + lean_ctor_release(x_661, 0); + x_663 = x_661; +} else { + lean_dec_ref(x_661); + x_663 = lean_box(0); +} +if (lean_is_scalar(x_602)) { + x_664 = lean_alloc_ctor(1, 2, 1); +} else { + x_664 = x_602; +} +lean_ctor_set(x_664, 0, x_21); +lean_ctor_set(x_664, 1, x_662); +x_665 = lean_unbox(x_579); +lean_dec(x_579); +lean_ctor_set_uint8(x_664, sizeof(void*)*2, x_665); +if (lean_is_scalar(x_663)) { + x_666 = lean_alloc_ctor(0, 1, 0); +} else { + x_666 = x_663; +} +lean_ctor_set(x_666, 0, x_664); +return x_666; +} +else +{ +lean_object* x_667; lean_object* x_668; lean_object* x_669; +lean_dec(x_602); +lean_dec(x_579); +lean_dec_ref(x_21); +x_667 = lean_ctor_get(x_661, 0); +lean_inc(x_667); +if (lean_is_exclusive(x_661)) { + lean_ctor_release(x_661, 0); + x_668 = x_661; +} else { + lean_dec_ref(x_661); + x_668 = lean_box(0); +} +if (lean_is_scalar(x_668)) { + x_669 = lean_alloc_ctor(1, 1, 0); +} else { + x_669 = x_668; +} +lean_ctor_set(x_669, 0, x_667); +return x_669; +} +} +else +{ +lean_object* x_670; lean_object* x_671; lean_object* x_672; +lean_dec(x_646); +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_dec(x_579); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_670 = lean_ctor_get(x_651, 0); +lean_inc(x_670); +if (lean_is_exclusive(x_651)) { + lean_ctor_release(x_651, 0); + x_671 = x_651; +} else { + lean_dec_ref(x_651); + x_671 = lean_box(0); +} +if (lean_is_scalar(x_671)) { + x_672 = lean_alloc_ctor(1, 1, 0); +} else { + x_672 = x_671; +} +lean_ctor_set(x_672, 0, x_670); +return x_672; +} +} +else +{ +lean_object* x_673; lean_object* x_674; lean_object* x_675; +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec(x_590); +lean_dec(x_579); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_673 = lean_ctor_get(x_645, 0); +lean_inc(x_673); +if (lean_is_exclusive(x_645)) { + lean_ctor_release(x_645, 0); + x_674 = x_645; +} else { + lean_dec_ref(x_645); + x_674 = lean_box(0); +} +if (lean_is_scalar(x_674)) { + x_675 = lean_alloc_ctor(1, 1, 0); +} else { + x_675 = x_674; +} +lean_ctor_set(x_675, 0, x_673); +return x_675; +} +} +} +else +{ +lean_object* x_676; lean_object* x_677; lean_object* x_678; +lean_dec(x_602); +lean_dec_ref(x_601); +lean_dec_ref(x_600); +lean_dec(x_590); +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_676 = lean_ctor_get(x_603, 0); +lean_inc(x_676); +if (lean_is_exclusive(x_603)) { + lean_ctor_release(x_603, 0); + x_677 = x_603; +} else { + lean_dec_ref(x_603); + x_677 = lean_box(0); +} +if (lean_is_scalar(x_677)) { + x_678 = lean_alloc_ctor(1, 1, 0); +} else { + x_678 = x_677; +} +lean_ctor_set(x_678, 0, x_676); +return x_678; +} +} +} +else +{ +lean_dec(x_590); +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_594; +} +} +else +{ +lean_object* x_679; lean_object* x_680; lean_object* x_681; +lean_dec(x_590); +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_679 = lean_ctor_get(x_592, 0); +lean_inc(x_679); +if (lean_is_exclusive(x_592)) { + lean_ctor_release(x_592, 0); + x_680 = x_592; +} else { + lean_dec_ref(x_592); + x_680 = lean_box(0); +} +if (lean_is_scalar(x_680)) { + x_681 = lean_alloc_ctor(1, 1, 0); +} else { + x_681 = x_680; +} +lean_ctor_set(x_681, 0, x_679); +return x_681; +} +} +else +{ +lean_object* x_682; lean_object* x_683; lean_object* x_684; +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_682 = lean_ctor_get(x_589, 0); +lean_inc(x_682); +if (lean_is_exclusive(x_589)) { + lean_ctor_release(x_589, 0); + x_683 = x_589; +} else { + lean_dec_ref(x_589); + x_683 = lean_box(0); +} +if (lean_is_scalar(x_683)) { + x_684 = lean_alloc_ctor(1, 1, 0); +} else { + x_684 = x_683; +} +lean_ctor_set(x_684, 0, x_682); +return x_684; +} +} +else +{ +uint8_t x_685; lean_object* x_686; +lean_dec(x_586); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_685 = lean_unbox(x_579); +lean_dec(x_579); +lean_ctor_set_uint8(x_34, 0, x_685); +if (lean_is_scalar(x_587)) { + x_686 = lean_alloc_ctor(0, 1, 0); +} else { + x_686 = x_587; +} +lean_ctor_set(x_686, 0, x_34); +return x_686; +} +} +else +{ +lean_object* x_687; lean_object* x_688; lean_object* x_689; +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_687 = lean_ctor_get(x_585, 0); +lean_inc(x_687); +if (lean_is_exclusive(x_585)) { + lean_ctor_release(x_585, 0); + x_688 = x_585; +} else { + lean_dec_ref(x_585); + x_688 = lean_box(0); +} +if (lean_is_scalar(x_688)) { + x_689 = lean_alloc_ctor(1, 1, 0); +} else { + x_689 = x_688; +} +lean_ctor_set(x_689, 0, x_687); +return x_689; +} +} +else +{ +lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; uint8_t x_695; lean_object* x_696; +lean_dec(x_579); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_690 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_691 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_692 = l_Lean_mkConst(x_690, x_691); +lean_inc_ref(x_18); +x_693 = l_Lean_mkApp3(x_692, x_29, x_21, x_18); +x_694 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_694, 0, x_18); +lean_ctor_set(x_694, 1, x_693); +x_695 = lean_unbox(x_576); +lean_dec(x_576); +lean_ctor_set_uint8(x_694, sizeof(void*)*2, x_695); +if (lean_is_scalar(x_580)) { + x_696 = lean_alloc_ctor(0, 1, 0); +} else { + x_696 = x_580; +} +lean_ctor_set(x_696, 0, x_694); +return x_696; +} +} +else +{ +lean_object* x_697; lean_object* x_698; lean_object* x_699; +lean_dec(x_576); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_697 = lean_ctor_get(x_578, 0); +lean_inc(x_697); +if (lean_is_exclusive(x_578)) { + lean_ctor_release(x_578, 0); + x_698 = x_578; +} else { + lean_dec_ref(x_578); + x_698 = lean_box(0); +} +if (lean_is_scalar(x_698)) { + x_699 = lean_alloc_ctor(1, 1, 0); +} else { + x_699 = x_698; +} +lean_ctor_set(x_699, 0, x_697); +return x_699; +} +} +else +{ +lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; +lean_dec(x_576); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_700 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_701 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_702 = l_Lean_mkConst(x_700, x_701); +lean_inc_ref(x_21); +x_703 = l_Lean_mkApp3(x_702, x_29, x_21, x_18); +x_704 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_704, 0, x_21); +lean_ctor_set(x_704, 1, x_703); +lean_ctor_set_uint8(x_704, sizeof(void*)*2, x_1); +x_705 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_705, 0, x_704); +return x_705; +} +} +} +else +{ +uint8_t x_706; +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_706 = !lean_is_exclusive(x_36); +if (x_706 == 0) +{ +return x_36; +} +else +{ +lean_object* x_707; lean_object* x_708; +x_707 = lean_ctor_get(x_36, 0); +lean_inc(x_707); +lean_dec(x_36); +x_708 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_708, 0, x_707); +return x_708; +} +} +} +else +{ +lean_object* x_709; +lean_dec(x_34); +x_709 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_709) == 0) +{ +lean_object* x_710; lean_object* x_711; uint8_t x_712; +x_710 = lean_ctor_get(x_709, 0); +lean_inc(x_710); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + x_711 = x_709; +} else { + lean_dec_ref(x_709); + x_711 = lean_box(0); +} +x_712 = lean_unbox(x_710); +if (x_712 == 0) +{ +lean_object* x_713; +lean_dec(x_711); +x_713 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_713) == 0) +{ +lean_object* x_714; lean_object* x_715; uint8_t x_716; +x_714 = lean_ctor_get(x_713, 0); +lean_inc(x_714); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + x_715 = x_713; +} else { + lean_dec_ref(x_713); + x_715 = lean_box(0); +} +x_716 = lean_unbox(x_714); +if (x_716 == 0) +{ +lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; +lean_dec(x_715); +lean_dec(x_710); +x_717 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_718 = l_Lean_Expr_app___override(x_717, x_26); +x_719 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_720 = l_Lean_Meta_trySynthInstance(x_718, x_719, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_720) == 0) +{ +lean_object* x_721; lean_object* x_722; +x_721 = lean_ctor_get(x_720, 0); +lean_inc(x_721); +if (lean_is_exclusive(x_720)) { + lean_ctor_release(x_720, 0); + x_722 = x_720; +} else { + lean_dec_ref(x_720); + x_722 = lean_box(0); +} +if (lean_obj_tag(x_721) == 1) +{ +lean_object* x_723; lean_object* x_724; +lean_dec(x_722); +x_723 = lean_ctor_get(x_721, 0); +lean_inc(x_723); +lean_dec_ref(x_721); +x_724 = l_Lean_Meta_Sym_shareCommon___redArg(x_723, x_7); +if (lean_obj_tag(x_724) == 0) +{ +lean_object* x_725; lean_object* x_726; lean_object* x_727; +x_725 = lean_ctor_get(x_724, 0); +lean_inc(x_725); +lean_dec_ref(x_724); +x_726 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_725); +lean_inc_ref(x_26); +x_727 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_726, x_26, x_725, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_727) == 0) +{ +lean_object* x_728; lean_object* x_729; +x_728 = lean_ctor_get(x_727, 0); +lean_inc(x_728); +lean_dec_ref(x_727); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_729 = lean_sym_simp(x_728, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_729) == 0) +{ +lean_object* x_730; lean_object* x_731; +x_730 = lean_ctor_get(x_729, 0); +lean_inc(x_730); +if (lean_is_exclusive(x_729)) { + lean_ctor_release(x_729, 0); + x_731 = x_729; +} else { + lean_dec_ref(x_729); + x_731 = lean_box(0); +} +if (lean_obj_tag(x_730) == 0) +{ +lean_object* x_732; lean_object* x_733; lean_object* x_734; +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_730)) { + x_732 = x_730; +} else { + lean_dec_ref(x_730); + x_732 = lean_box(0); +} +if (lean_is_scalar(x_732)) { + x_733 = lean_alloc_ctor(0, 0, 1); +} else { + x_733 = x_732; +} +lean_ctor_set_uint8(x_733, 0, x_32); +if (lean_is_scalar(x_731)) { + x_734 = lean_alloc_ctor(0, 1, 0); +} else { + x_734 = x_731; +} +lean_ctor_set(x_734, 0, x_733); +return x_734; +} +else +{ +lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; +lean_dec(x_731); +x_735 = lean_ctor_get(x_730, 0); +lean_inc_ref(x_735); +x_736 = lean_ctor_get(x_730, 1); +lean_inc_ref(x_736); +if (lean_is_exclusive(x_730)) { + lean_ctor_release(x_730, 0); + lean_ctor_release(x_730, 1); + x_737 = x_730; +} else { + lean_dec_ref(x_730); + x_737 = lean_box(0); +} +x_738 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_735, x_6); +if (lean_obj_tag(x_738) == 0) +{ +lean_object* x_739; uint8_t x_740; +x_739 = lean_ctor_get(x_738, 0); +lean_inc(x_739); +lean_dec_ref(x_738); +x_740 = lean_unbox(x_739); +if (x_740 == 0) +{ +lean_object* x_741; +lean_dec(x_714); +x_741 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_735, x_6); +lean_dec_ref(x_735); +if (lean_obj_tag(x_741) == 0) +{ +lean_object* x_742; lean_object* x_743; uint8_t x_744; +x_742 = lean_ctor_get(x_741, 0); +lean_inc(x_742); +if (lean_is_exclusive(x_741)) { + lean_ctor_release(x_741, 0); + x_743 = x_741; +} else { + lean_dec_ref(x_741); + x_743 = lean_box(0); +} +x_744 = lean_unbox(x_742); +lean_dec(x_742); +if (x_744 == 0) +{ +lean_object* x_745; lean_object* x_746; +lean_dec(x_739); +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_745 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_745, 0, x_32); +if (lean_is_scalar(x_743)) { + x_746 = lean_alloc_ctor(0, 1, 0); +} else { + x_746 = x_743; +} +lean_ctor_set(x_746, 0, x_745); +return x_746; +} +else +{ +lean_object* x_747; +lean_dec(x_743); +x_747 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_747) == 0) +{ +lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; +x_748 = lean_ctor_get(x_747, 0); +lean_inc(x_748); +lean_dec_ref(x_747); +x_749 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +x_750 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_751 = lean_unsigned_to_nat(4u); +x_752 = l_Lean_Expr_getBoundedAppFn(x_751, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_748); +x_753 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_752, x_748, x_750, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_753) == 0) +{ +lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; +x_754 = lean_ctor_get(x_753, 0); +lean_inc(x_754); +lean_dec_ref(x_753); +x_755 = l_Lean_mkApp3(x_749, x_26, x_725, x_736); +x_756 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_757 = l_Lean_Expr_replaceFn(x_2, x_756); +x_758 = l_Lean_mkApp3(x_757, x_748, x_750, x_755); +x_759 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_760 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_761 = l_Lean_mkConst(x_759, x_760); +lean_inc_ref(x_18); +x_762 = l_Lean_mkApp3(x_761, x_29, x_21, x_18); +lean_inc_ref(x_18); +x_763 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_754, x_758, x_18, x_762, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_763) == 0) +{ +lean_object* x_764; lean_object* x_765; lean_object* x_766; uint8_t x_767; lean_object* x_768; +x_764 = lean_ctor_get(x_763, 0); +lean_inc(x_764); +if (lean_is_exclusive(x_763)) { + lean_ctor_release(x_763, 0); + x_765 = x_763; +} else { + lean_dec_ref(x_763); + x_765 = lean_box(0); +} +if (lean_is_scalar(x_737)) { + x_766 = lean_alloc_ctor(1, 2, 1); +} else { + x_766 = x_737; +} +lean_ctor_set(x_766, 0, x_18); +lean_ctor_set(x_766, 1, x_764); +x_767 = lean_unbox(x_739); +lean_dec(x_739); +lean_ctor_set_uint8(x_766, sizeof(void*)*2, x_767); +if (lean_is_scalar(x_765)) { + x_768 = lean_alloc_ctor(0, 1, 0); +} else { + x_768 = x_765; +} +lean_ctor_set(x_768, 0, x_766); +return x_768; +} +else +{ +lean_object* x_769; lean_object* x_770; lean_object* x_771; +lean_dec(x_739); +lean_dec(x_737); +lean_dec_ref(x_18); +x_769 = lean_ctor_get(x_763, 0); +lean_inc(x_769); +if (lean_is_exclusive(x_763)) { + lean_ctor_release(x_763, 0); + x_770 = x_763; +} else { + lean_dec_ref(x_763); + x_770 = lean_box(0); +} +if (lean_is_scalar(x_770)) { + x_771 = lean_alloc_ctor(1, 1, 0); +} else { + x_771 = x_770; +} +lean_ctor_set(x_771, 0, x_769); +return x_771; +} +} +else +{ +lean_object* x_772; lean_object* x_773; lean_object* x_774; +lean_dec(x_748); +lean_dec(x_739); +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_772 = lean_ctor_get(x_753, 0); +lean_inc(x_772); +if (lean_is_exclusive(x_753)) { + lean_ctor_release(x_753, 0); + x_773 = x_753; +} else { + lean_dec_ref(x_753); + x_773 = lean_box(0); +} +if (lean_is_scalar(x_773)) { + x_774 = lean_alloc_ctor(1, 1, 0); +} else { + x_774 = x_773; +} +lean_ctor_set(x_774, 0, x_772); +return x_774; +} +} +else +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; +lean_dec(x_739); +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_775 = lean_ctor_get(x_747, 0); +lean_inc(x_775); +if (lean_is_exclusive(x_747)) { + lean_ctor_release(x_747, 0); + x_776 = x_747; +} else { + lean_dec_ref(x_747); + x_776 = lean_box(0); +} +if (lean_is_scalar(x_776)) { + x_777 = lean_alloc_ctor(1, 1, 0); +} else { + x_777 = x_776; +} +lean_ctor_set(x_777, 0, x_775); +return x_777; +} +} +} +else +{ +lean_object* x_778; lean_object* x_779; lean_object* x_780; +lean_dec(x_739); +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_778 = lean_ctor_get(x_741, 0); +lean_inc(x_778); +if (lean_is_exclusive(x_741)) { + lean_ctor_release(x_741, 0); + x_779 = x_741; +} else { + lean_dec_ref(x_741); + x_779 = lean_box(0); +} +if (lean_is_scalar(x_779)) { + x_780 = lean_alloc_ctor(1, 1, 0); +} else { + x_780 = x_779; +} +lean_ctor_set(x_780, 0, x_778); +return x_780; +} +} +else +{ +lean_object* x_781; +lean_dec(x_739); +lean_dec_ref(x_735); +x_781 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_781) == 0) +{ +lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; +x_782 = lean_ctor_get(x_781, 0); +lean_inc(x_782); +lean_dec_ref(x_781); +x_783 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +x_784 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_785 = lean_unsigned_to_nat(4u); +x_786 = l_Lean_Expr_getBoundedAppFn(x_785, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_18); +lean_inc_ref(x_21); +lean_inc(x_782); +x_787 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_786, x_782, x_784, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_787) == 0) +{ +lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; +x_788 = lean_ctor_get(x_787, 0); +lean_inc(x_788); +lean_dec_ref(x_787); +x_789 = l_Lean_mkApp3(x_783, x_26, x_725, x_736); +x_790 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +lean_inc_ref(x_2); +x_791 = l_Lean_Expr_replaceFn(x_2, x_790); +x_792 = l_Lean_mkApp3(x_791, x_782, x_784, x_789); +x_793 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_794 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_795 = l_Lean_mkConst(x_793, x_794); +lean_inc_ref(x_21); +x_796 = l_Lean_mkApp3(x_795, x_29, x_21, x_18); +lean_inc_ref(x_21); +x_797 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_788, x_792, x_21, x_796, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_797) == 0) +{ +lean_object* x_798; lean_object* x_799; lean_object* x_800; uint8_t x_801; lean_object* x_802; +x_798 = lean_ctor_get(x_797, 0); +lean_inc(x_798); +if (lean_is_exclusive(x_797)) { + lean_ctor_release(x_797, 0); + x_799 = x_797; +} else { + lean_dec_ref(x_797); + x_799 = lean_box(0); +} +if (lean_is_scalar(x_737)) { + x_800 = lean_alloc_ctor(1, 2, 1); +} else { + x_800 = x_737; +} +lean_ctor_set(x_800, 0, x_21); +lean_ctor_set(x_800, 1, x_798); +x_801 = lean_unbox(x_714); +lean_dec(x_714); +lean_ctor_set_uint8(x_800, sizeof(void*)*2, x_801); +if (lean_is_scalar(x_799)) { + x_802 = lean_alloc_ctor(0, 1, 0); +} else { + x_802 = x_799; +} +lean_ctor_set(x_802, 0, x_800); +return x_802; +} +else +{ +lean_object* x_803; lean_object* x_804; lean_object* x_805; +lean_dec(x_737); +lean_dec(x_714); +lean_dec_ref(x_21); +x_803 = lean_ctor_get(x_797, 0); +lean_inc(x_803); +if (lean_is_exclusive(x_797)) { + lean_ctor_release(x_797, 0); + x_804 = x_797; +} else { + lean_dec_ref(x_797); + x_804 = lean_box(0); +} +if (lean_is_scalar(x_804)) { + x_805 = lean_alloc_ctor(1, 1, 0); +} else { + x_805 = x_804; +} +lean_ctor_set(x_805, 0, x_803); +return x_805; +} +} +else +{ +lean_object* x_806; lean_object* x_807; lean_object* x_808; +lean_dec(x_782); +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_806 = lean_ctor_get(x_787, 0); +lean_inc(x_806); +if (lean_is_exclusive(x_787)) { + lean_ctor_release(x_787, 0); + x_807 = x_787; +} else { + lean_dec_ref(x_787); + x_807 = lean_box(0); +} +if (lean_is_scalar(x_807)) { + x_808 = lean_alloc_ctor(1, 1, 0); +} else { + x_808 = x_807; +} +lean_ctor_set(x_808, 0, x_806); +return x_808; +} +} +else +{ +lean_object* x_809; lean_object* x_810; lean_object* x_811; +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_809 = lean_ctor_get(x_781, 0); +lean_inc(x_809); +if (lean_is_exclusive(x_781)) { + lean_ctor_release(x_781, 0); + x_810 = x_781; +} else { + lean_dec_ref(x_781); + x_810 = lean_box(0); +} +if (lean_is_scalar(x_810)) { + x_811 = lean_alloc_ctor(1, 1, 0); +} else { + x_811 = x_810; +} +lean_ctor_set(x_811, 0, x_809); +return x_811; +} +} +} +else +{ +lean_object* x_812; lean_object* x_813; lean_object* x_814; +lean_dec(x_737); +lean_dec_ref(x_736); +lean_dec_ref(x_735); +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_812 = lean_ctor_get(x_738, 0); +lean_inc(x_812); +if (lean_is_exclusive(x_738)) { + lean_ctor_release(x_738, 0); + x_813 = x_738; +} else { + lean_dec_ref(x_738); + x_813 = lean_box(0); +} +if (lean_is_scalar(x_813)) { + x_814 = lean_alloc_ctor(1, 1, 0); +} else { + x_814 = x_813; +} +lean_ctor_set(x_814, 0, x_812); +return x_814; +} +} +} +else +{ +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_729; +} +} +else +{ +lean_object* x_815; lean_object* x_816; lean_object* x_817; +lean_dec(x_725); +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_815 = lean_ctor_get(x_727, 0); +lean_inc(x_815); +if (lean_is_exclusive(x_727)) { + lean_ctor_release(x_727, 0); + x_816 = x_727; +} else { + lean_dec_ref(x_727); + x_816 = lean_box(0); +} +if (lean_is_scalar(x_816)) { + x_817 = lean_alloc_ctor(1, 1, 0); +} else { + x_817 = x_816; +} +lean_ctor_set(x_817, 0, x_815); +return x_817; +} +} +else +{ +lean_object* x_818; lean_object* x_819; lean_object* x_820; +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_818 = lean_ctor_get(x_724, 0); +lean_inc(x_818); +if (lean_is_exclusive(x_724)) { + lean_ctor_release(x_724, 0); + x_819 = x_724; +} else { + lean_dec_ref(x_724); + x_819 = lean_box(0); +} +if (lean_is_scalar(x_819)) { + x_820 = lean_alloc_ctor(1, 1, 0); +} else { + x_820 = x_819; +} +lean_ctor_set(x_820, 0, x_818); +return x_820; +} +} +else +{ +lean_object* x_821; uint8_t x_822; lean_object* x_823; +lean_dec(x_721); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_821 = lean_alloc_ctor(0, 0, 1); +x_822 = lean_unbox(x_714); +lean_dec(x_714); +lean_ctor_set_uint8(x_821, 0, x_822); +if (lean_is_scalar(x_722)) { + x_823 = lean_alloc_ctor(0, 1, 0); +} else { + x_823 = x_722; +} +lean_ctor_set(x_823, 0, x_821); +return x_823; +} +} +else +{ +lean_object* x_824; lean_object* x_825; lean_object* x_826; +lean_dec(x_714); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_824 = lean_ctor_get(x_720, 0); +lean_inc(x_824); +if (lean_is_exclusive(x_720)) { + lean_ctor_release(x_720, 0); + x_825 = x_720; +} else { + lean_dec_ref(x_720); + x_825 = lean_box(0); +} +if (lean_is_scalar(x_825)) { + x_826 = lean_alloc_ctor(1, 1, 0); +} else { + x_826 = x_825; +} +lean_ctor_set(x_826, 0, x_824); +return x_826; +} +} +else +{ +lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; uint8_t x_832; lean_object* x_833; +lean_dec(x_714); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_827 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__19)); +x_828 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_829 = l_Lean_mkConst(x_827, x_828); +lean_inc_ref(x_18); +x_830 = l_Lean_mkApp3(x_829, x_29, x_21, x_18); +x_831 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_831, 0, x_18); +lean_ctor_set(x_831, 1, x_830); +x_832 = lean_unbox(x_710); +lean_dec(x_710); +lean_ctor_set_uint8(x_831, sizeof(void*)*2, x_832); +if (lean_is_scalar(x_715)) { + x_833 = lean_alloc_ctor(0, 1, 0); +} else { + x_833 = x_715; +} +lean_ctor_set(x_833, 0, x_831); +return x_833; +} +} +else +{ +lean_object* x_834; lean_object* x_835; lean_object* x_836; +lean_dec(x_710); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_834 = lean_ctor_get(x_713, 0); +lean_inc(x_834); +if (lean_is_exclusive(x_713)) { + lean_ctor_release(x_713, 0); + x_835 = x_713; +} else { + lean_dec_ref(x_713); + x_835 = lean_box(0); +} +if (lean_is_scalar(x_835)) { + x_836 = lean_alloc_ctor(1, 1, 0); +} else { + x_836 = x_835; +} +lean_ctor_set(x_836, 0, x_834); +return x_836; +} +} +else +{ +lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; +lean_dec(x_710); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_837 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__27)); +x_838 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_839 = l_Lean_mkConst(x_837, x_838); +lean_inc_ref(x_21); +x_840 = l_Lean_mkApp3(x_839, x_29, x_21, x_18); +x_841 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_841, 0, x_21); +lean_ctor_set(x_841, 1, x_840); +lean_ctor_set_uint8(x_841, sizeof(void*)*2, x_1); +if (lean_is_scalar(x_711)) { + x_842 = lean_alloc_ctor(0, 1, 0); +} else { + x_842 = x_711; +} +lean_ctor_set(x_842, 0, x_841); +return x_842; +} +} +else +{ +lean_object* x_843; lean_object* x_844; lean_object* x_845; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_843 = lean_ctor_get(x_709, 0); +lean_inc(x_843); +if (lean_is_exclusive(x_709)) { + lean_ctor_release(x_709, 0); + x_844 = x_709; +} else { + lean_dec_ref(x_709); + x_844 = lean_box(0); +} +if (lean_is_scalar(x_844)) { + x_845 = lean_alloc_ctor(1, 1, 0); +} else { + x_845 = x_844; +} +lean_ctor_set(x_845, 0, x_843); +return x_845; +} +} +} +else +{ +uint8_t x_846; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +x_846 = !lean_is_exclusive(x_34); +if (x_846 == 0) +{ +lean_object* x_847; lean_object* x_848; lean_object* x_849; +x_847 = lean_ctor_get(x_34, 0); +x_848 = lean_ctor_get(x_34, 1); +x_849 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_847, x_6); +if (lean_obj_tag(x_849) == 0) +{ +uint8_t x_850; +x_850 = !lean_is_exclusive(x_849); +if (x_850 == 0) +{ +lean_object* x_851; uint8_t x_852; +x_851 = lean_ctor_get(x_849, 0); +x_852 = lean_unbox(x_851); +if (x_852 == 0) +{ +lean_object* x_853; +lean_free_object(x_849); +x_853 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_847, x_6); +if (lean_obj_tag(x_853) == 0) +{ +uint8_t x_854; +x_854 = !lean_is_exclusive(x_853); +if (x_854 == 0) +{ +lean_object* x_855; uint8_t x_856; +x_855 = lean_ctor_get(x_853, 0); +x_856 = lean_unbox(x_855); +if (x_856 == 0) +{ +lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; +lean_free_object(x_853); +lean_dec(x_851); +x_857 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_847); +x_858 = l_Lean_Expr_app___override(x_857, x_847); +x_859 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_860 = l_Lean_Meta_trySynthInstance(x_858, x_859, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_860) == 0) +{ +uint8_t x_861; +x_861 = !lean_is_exclusive(x_860); +if (x_861 == 0) +{ +lean_object* x_862; +x_862 = lean_ctor_get(x_860, 0); +if (lean_obj_tag(x_862) == 1) +{ +lean_object* x_863; lean_object* x_864; +lean_free_object(x_860); +x_863 = lean_ctor_get(x_862, 0); +lean_inc(x_863); +lean_dec_ref(x_862); +x_864 = l_Lean_Meta_Sym_shareCommon___redArg(x_863, x_7); +if (lean_obj_tag(x_864) == 0) +{ +lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; +x_865 = lean_ctor_get(x_864, 0); +lean_inc(x_865); +lean_dec_ref(x_864); +x_866 = lean_unsigned_to_nat(4u); +x_867 = l_Lean_Expr_getBoundedAppFn(x_866, x_2); +lean_inc(x_865); +lean_inc_ref(x_847); +x_868 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_867, x_847, x_865, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_868) == 0) +{ +uint8_t x_869; +x_869 = !lean_is_exclusive(x_868); +if (x_869 == 0) +{ +lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; uint8_t x_874; +x_870 = lean_ctor_get(x_868, 0); +x_871 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_872 = l_Lean_Expr_replaceFn(x_2, x_871); +x_873 = l_Lean_mkApp3(x_872, x_847, x_865, x_848); +lean_ctor_set(x_34, 1, x_873); +lean_ctor_set(x_34, 0, x_870); +x_874 = lean_unbox(x_855); +lean_dec(x_855); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_874); +lean_ctor_set(x_868, 0, x_34); +return x_868; +} +else +{ +lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; uint8_t x_879; lean_object* x_880; +x_875 = lean_ctor_get(x_868, 0); +lean_inc(x_875); +lean_dec(x_868); +x_876 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_877 = l_Lean_Expr_replaceFn(x_2, x_876); +x_878 = l_Lean_mkApp3(x_877, x_847, x_865, x_848); +lean_ctor_set(x_34, 1, x_878); +lean_ctor_set(x_34, 0, x_875); +x_879 = lean_unbox(x_855); +lean_dec(x_855); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_879); +x_880 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_880, 0, x_34); +return x_880; +} +} +else +{ +uint8_t x_881; +lean_dec(x_865); +lean_dec(x_855); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_2); +x_881 = !lean_is_exclusive(x_868); +if (x_881 == 0) +{ +return x_868; +} +else +{ +lean_object* x_882; lean_object* x_883; +x_882 = lean_ctor_get(x_868, 0); +lean_inc(x_882); +lean_dec(x_868); +x_883 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_883, 0, x_882); +return x_883; +} +} +} +else +{ +uint8_t x_884; +lean_dec(x_855); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_884 = !lean_is_exclusive(x_864); +if (x_884 == 0) +{ +return x_864; +} +else +{ +lean_object* x_885; lean_object* x_886; +x_885 = lean_ctor_get(x_864, 0); +lean_inc(x_885); +lean_dec(x_864); +x_886 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_886, 0, x_885); +return x_886; +} +} +} +else +{ +lean_object* x_887; uint8_t x_888; +lean_dec(x_862); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_887 = lean_alloc_ctor(0, 0, 1); +x_888 = lean_unbox(x_855); +lean_dec(x_855); +lean_ctor_set_uint8(x_887, 0, x_888); +lean_ctor_set(x_860, 0, x_887); +return x_860; +} +} +else +{ +lean_object* x_889; +x_889 = lean_ctor_get(x_860, 0); +lean_inc(x_889); +lean_dec(x_860); +if (lean_obj_tag(x_889) == 1) +{ +lean_object* x_890; lean_object* x_891; +x_890 = lean_ctor_get(x_889, 0); +lean_inc(x_890); +lean_dec_ref(x_889); +x_891 = l_Lean_Meta_Sym_shareCommon___redArg(x_890, x_7); +if (lean_obj_tag(x_891) == 0) +{ +lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; +x_892 = lean_ctor_get(x_891, 0); +lean_inc(x_892); +lean_dec_ref(x_891); +x_893 = lean_unsigned_to_nat(4u); +x_894 = l_Lean_Expr_getBoundedAppFn(x_893, x_2); +lean_inc(x_892); +lean_inc_ref(x_847); +x_895 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_894, x_847, x_892, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_895) == 0) +{ +lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; uint8_t x_901; lean_object* x_902; +x_896 = lean_ctor_get(x_895, 0); +lean_inc(x_896); +if (lean_is_exclusive(x_895)) { + lean_ctor_release(x_895, 0); + x_897 = x_895; +} else { + lean_dec_ref(x_895); + x_897 = lean_box(0); +} +x_898 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_899 = l_Lean_Expr_replaceFn(x_2, x_898); +x_900 = l_Lean_mkApp3(x_899, x_847, x_892, x_848); +lean_ctor_set(x_34, 1, x_900); +lean_ctor_set(x_34, 0, x_896); +x_901 = lean_unbox(x_855); +lean_dec(x_855); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_901); +if (lean_is_scalar(x_897)) { + x_902 = lean_alloc_ctor(0, 1, 0); +} else { + x_902 = x_897; +} +lean_ctor_set(x_902, 0, x_34); +return x_902; +} +else +{ +lean_object* x_903; lean_object* x_904; lean_object* x_905; +lean_dec(x_892); +lean_dec(x_855); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_2); +x_903 = lean_ctor_get(x_895, 0); +lean_inc(x_903); +if (lean_is_exclusive(x_895)) { + lean_ctor_release(x_895, 0); + x_904 = x_895; +} else { + lean_dec_ref(x_895); + x_904 = lean_box(0); +} +if (lean_is_scalar(x_904)) { + x_905 = lean_alloc_ctor(1, 1, 0); +} else { + x_905 = x_904; +} +lean_ctor_set(x_905, 0, x_903); +return x_905; +} +} +else +{ +lean_object* x_906; lean_object* x_907; lean_object* x_908; +lean_dec(x_855); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_906 = lean_ctor_get(x_891, 0); +lean_inc(x_906); +if (lean_is_exclusive(x_891)) { + lean_ctor_release(x_891, 0); + x_907 = x_891; +} else { + lean_dec_ref(x_891); + x_907 = lean_box(0); +} +if (lean_is_scalar(x_907)) { + x_908 = lean_alloc_ctor(1, 1, 0); +} else { + x_908 = x_907; +} +lean_ctor_set(x_908, 0, x_906); +return x_908; +} +} +else +{ +lean_object* x_909; uint8_t x_910; lean_object* x_911; +lean_dec(x_889); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_909 = lean_alloc_ctor(0, 0, 1); +x_910 = lean_unbox(x_855); +lean_dec(x_855); +lean_ctor_set_uint8(x_909, 0, x_910); +x_911 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_911, 0, x_909); +return x_911; +} +} +} +else +{ +uint8_t x_912; +lean_dec(x_855); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_912 = !lean_is_exclusive(x_860); +if (x_912 == 0) +{ +return x_860; +} +else +{ +lean_object* x_913; lean_object* x_914; +x_913 = lean_ctor_get(x_860, 0); +lean_inc(x_913); +lean_dec(x_860); +x_914 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_914, 0, x_913); +return x_914; +} +} +} +else +{ +lean_object* x_915; lean_object* x_916; lean_object* x_917; uint8_t x_918; +lean_dec(x_855); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_915 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29)); +x_916 = l_Lean_Expr_replaceFn(x_2, x_915); +x_917 = l_Lean_Expr_app___override(x_916, x_848); +lean_ctor_set(x_34, 1, x_917); +lean_ctor_set(x_34, 0, x_18); +x_918 = lean_unbox(x_851); +lean_dec(x_851); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_918); +lean_ctor_set(x_853, 0, x_34); +return x_853; +} +} +else +{ +lean_object* x_919; uint8_t x_920; +x_919 = lean_ctor_get(x_853, 0); +lean_inc(x_919); +lean_dec(x_853); +x_920 = lean_unbox(x_919); +if (x_920 == 0) +{ +lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; +lean_dec(x_851); +x_921 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_847); +x_922 = l_Lean_Expr_app___override(x_921, x_847); +x_923 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_924 = l_Lean_Meta_trySynthInstance(x_922, x_923, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_924) == 0) +{ +lean_object* x_925; lean_object* x_926; +x_925 = lean_ctor_get(x_924, 0); +lean_inc(x_925); +if (lean_is_exclusive(x_924)) { + lean_ctor_release(x_924, 0); + x_926 = x_924; +} else { + lean_dec_ref(x_924); + x_926 = lean_box(0); +} +if (lean_obj_tag(x_925) == 1) +{ +lean_object* x_927; lean_object* x_928; +lean_dec(x_926); +x_927 = lean_ctor_get(x_925, 0); +lean_inc(x_927); +lean_dec_ref(x_925); +x_928 = l_Lean_Meta_Sym_shareCommon___redArg(x_927, x_7); +if (lean_obj_tag(x_928) == 0) +{ +lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; +x_929 = lean_ctor_get(x_928, 0); +lean_inc(x_929); +lean_dec_ref(x_928); +x_930 = lean_unsigned_to_nat(4u); +x_931 = l_Lean_Expr_getBoundedAppFn(x_930, x_2); +lean_inc(x_929); +lean_inc_ref(x_847); +x_932 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_931, x_847, x_929, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_932) == 0) +{ +lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; uint8_t x_938; lean_object* x_939; +x_933 = lean_ctor_get(x_932, 0); +lean_inc(x_933); +if (lean_is_exclusive(x_932)) { + lean_ctor_release(x_932, 0); + x_934 = x_932; +} else { + lean_dec_ref(x_932); + x_934 = lean_box(0); +} +x_935 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_936 = l_Lean_Expr_replaceFn(x_2, x_935); +x_937 = l_Lean_mkApp3(x_936, x_847, x_929, x_848); +lean_ctor_set(x_34, 1, x_937); +lean_ctor_set(x_34, 0, x_933); +x_938 = lean_unbox(x_919); +lean_dec(x_919); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_938); +if (lean_is_scalar(x_934)) { + x_939 = lean_alloc_ctor(0, 1, 0); +} else { + x_939 = x_934; +} +lean_ctor_set(x_939, 0, x_34); +return x_939; +} +else +{ +lean_object* x_940; lean_object* x_941; lean_object* x_942; +lean_dec(x_929); +lean_dec(x_919); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_2); +x_940 = lean_ctor_get(x_932, 0); +lean_inc(x_940); +if (lean_is_exclusive(x_932)) { + lean_ctor_release(x_932, 0); + x_941 = x_932; +} else { + lean_dec_ref(x_932); + x_941 = lean_box(0); +} +if (lean_is_scalar(x_941)) { + x_942 = lean_alloc_ctor(1, 1, 0); +} else { + x_942 = x_941; +} +lean_ctor_set(x_942, 0, x_940); +return x_942; +} +} +else +{ +lean_object* x_943; lean_object* x_944; lean_object* x_945; +lean_dec(x_919); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_943 = lean_ctor_get(x_928, 0); +lean_inc(x_943); +if (lean_is_exclusive(x_928)) { + lean_ctor_release(x_928, 0); + x_944 = x_928; +} else { + lean_dec_ref(x_928); + x_944 = lean_box(0); +} +if (lean_is_scalar(x_944)) { + x_945 = lean_alloc_ctor(1, 1, 0); +} else { + x_945 = x_944; +} +lean_ctor_set(x_945, 0, x_943); +return x_945; +} +} +else +{ +lean_object* x_946; uint8_t x_947; lean_object* x_948; +lean_dec(x_925); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_946 = lean_alloc_ctor(0, 0, 1); +x_947 = lean_unbox(x_919); +lean_dec(x_919); +lean_ctor_set_uint8(x_946, 0, x_947); +if (lean_is_scalar(x_926)) { + x_948 = lean_alloc_ctor(0, 1, 0); +} else { + x_948 = x_926; +} +lean_ctor_set(x_948, 0, x_946); +return x_948; +} +} +else +{ +lean_object* x_949; lean_object* x_950; lean_object* x_951; +lean_dec(x_919); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_949 = lean_ctor_get(x_924, 0); +lean_inc(x_949); +if (lean_is_exclusive(x_924)) { + lean_ctor_release(x_924, 0); + x_950 = x_924; +} else { + lean_dec_ref(x_924); + x_950 = lean_box(0); +} +if (lean_is_scalar(x_950)) { + x_951 = lean_alloc_ctor(1, 1, 0); +} else { + x_951 = x_950; +} +lean_ctor_set(x_951, 0, x_949); +return x_951; +} +} +else +{ +lean_object* x_952; lean_object* x_953; lean_object* x_954; uint8_t x_955; lean_object* x_956; +lean_dec(x_919); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_952 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29)); +x_953 = l_Lean_Expr_replaceFn(x_2, x_952); +x_954 = l_Lean_Expr_app___override(x_953, x_848); +lean_ctor_set(x_34, 1, x_954); +lean_ctor_set(x_34, 0, x_18); +x_955 = lean_unbox(x_851); +lean_dec(x_851); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_955); +x_956 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_956, 0, x_34); +return x_956; +} +} +} +else +{ +uint8_t x_957; +lean_dec(x_851); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_957 = !lean_is_exclusive(x_853); +if (x_957 == 0) +{ +return x_853; +} +else +{ +lean_object* x_958; lean_object* x_959; +x_958 = lean_ctor_get(x_853, 0); +lean_inc(x_958); +lean_dec(x_853); +x_959 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_959, 0, x_958); +return x_959; +} +} +} +else +{ +lean_object* x_960; lean_object* x_961; lean_object* x_962; +lean_dec(x_851); +lean_dec_ref(x_847); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_960 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31)); +x_961 = l_Lean_Expr_replaceFn(x_2, x_960); +x_962 = l_Lean_Expr_app___override(x_961, x_848); +lean_ctor_set(x_34, 1, x_962); +lean_ctor_set(x_34, 0, x_21); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1); +lean_ctor_set(x_849, 0, x_34); +return x_849; +} +} +else +{ +lean_object* x_963; uint8_t x_964; +x_963 = lean_ctor_get(x_849, 0); +lean_inc(x_963); +lean_dec(x_849); +x_964 = lean_unbox(x_963); +if (x_964 == 0) +{ +lean_object* x_965; +x_965 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_847, x_6); +if (lean_obj_tag(x_965) == 0) +{ +lean_object* x_966; lean_object* x_967; uint8_t x_968; +x_966 = lean_ctor_get(x_965, 0); +lean_inc(x_966); +if (lean_is_exclusive(x_965)) { + lean_ctor_release(x_965, 0); + x_967 = x_965; +} else { + lean_dec_ref(x_965); + x_967 = lean_box(0); +} +x_968 = lean_unbox(x_966); +if (x_968 == 0) +{ +lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; +lean_dec(x_967); +lean_dec(x_963); +x_969 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_847); +x_970 = l_Lean_Expr_app___override(x_969, x_847); +x_971 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_972 = l_Lean_Meta_trySynthInstance(x_970, x_971, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_972) == 0) +{ +lean_object* x_973; lean_object* x_974; +x_973 = lean_ctor_get(x_972, 0); +lean_inc(x_973); +if (lean_is_exclusive(x_972)) { + lean_ctor_release(x_972, 0); + x_974 = x_972; +} else { + lean_dec_ref(x_972); + x_974 = lean_box(0); +} +if (lean_obj_tag(x_973) == 1) +{ +lean_object* x_975; lean_object* x_976; +lean_dec(x_974); +x_975 = lean_ctor_get(x_973, 0); +lean_inc(x_975); +lean_dec_ref(x_973); +x_976 = l_Lean_Meta_Sym_shareCommon___redArg(x_975, x_7); +if (lean_obj_tag(x_976) == 0) +{ +lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; +x_977 = lean_ctor_get(x_976, 0); +lean_inc(x_977); +lean_dec_ref(x_976); +x_978 = lean_unsigned_to_nat(4u); +x_979 = l_Lean_Expr_getBoundedAppFn(x_978, x_2); +lean_inc(x_977); +lean_inc_ref(x_847); +x_980 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_979, x_847, x_977, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_980) == 0) +{ +lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; uint8_t x_986; lean_object* x_987; +x_981 = lean_ctor_get(x_980, 0); +lean_inc(x_981); +if (lean_is_exclusive(x_980)) { + lean_ctor_release(x_980, 0); + x_982 = x_980; +} else { + lean_dec_ref(x_980); + x_982 = lean_box(0); +} +x_983 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_984 = l_Lean_Expr_replaceFn(x_2, x_983); +x_985 = l_Lean_mkApp3(x_984, x_847, x_977, x_848); +lean_ctor_set(x_34, 1, x_985); +lean_ctor_set(x_34, 0, x_981); +x_986 = lean_unbox(x_966); +lean_dec(x_966); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_986); +if (lean_is_scalar(x_982)) { + x_987 = lean_alloc_ctor(0, 1, 0); +} else { + x_987 = x_982; +} +lean_ctor_set(x_987, 0, x_34); +return x_987; +} +else +{ +lean_object* x_988; lean_object* x_989; lean_object* x_990; +lean_dec(x_977); +lean_dec(x_966); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_2); +x_988 = lean_ctor_get(x_980, 0); +lean_inc(x_988); +if (lean_is_exclusive(x_980)) { + lean_ctor_release(x_980, 0); + x_989 = x_980; +} else { + lean_dec_ref(x_980); + x_989 = lean_box(0); +} +if (lean_is_scalar(x_989)) { + x_990 = lean_alloc_ctor(1, 1, 0); +} else { + x_990 = x_989; +} +lean_ctor_set(x_990, 0, x_988); +return x_990; +} +} +else +{ +lean_object* x_991; lean_object* x_992; lean_object* x_993; +lean_dec(x_966); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_991 = lean_ctor_get(x_976, 0); +lean_inc(x_991); +if (lean_is_exclusive(x_976)) { + lean_ctor_release(x_976, 0); + x_992 = x_976; +} else { + lean_dec_ref(x_976); + x_992 = lean_box(0); +} +if (lean_is_scalar(x_992)) { + x_993 = lean_alloc_ctor(1, 1, 0); +} else { + x_993 = x_992; +} +lean_ctor_set(x_993, 0, x_991); +return x_993; +} +} +else +{ +lean_object* x_994; uint8_t x_995; lean_object* x_996; +lean_dec(x_973); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_994 = lean_alloc_ctor(0, 0, 1); +x_995 = lean_unbox(x_966); +lean_dec(x_966); +lean_ctor_set_uint8(x_994, 0, x_995); +if (lean_is_scalar(x_974)) { + x_996 = lean_alloc_ctor(0, 1, 0); +} else { + x_996 = x_974; +} +lean_ctor_set(x_996, 0, x_994); +return x_996; +} +} +else +{ +lean_object* x_997; lean_object* x_998; lean_object* x_999; +lean_dec(x_966); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_997 = lean_ctor_get(x_972, 0); +lean_inc(x_997); +if (lean_is_exclusive(x_972)) { + lean_ctor_release(x_972, 0); + x_998 = x_972; +} else { + lean_dec_ref(x_972); + x_998 = lean_box(0); +} +if (lean_is_scalar(x_998)) { + x_999 = lean_alloc_ctor(1, 1, 0); +} else { + x_999 = x_998; +} +lean_ctor_set(x_999, 0, x_997); +return x_999; +} +} +else +{ +lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; uint8_t x_1003; lean_object* x_1004; +lean_dec(x_966); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_1000 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29)); +x_1001 = l_Lean_Expr_replaceFn(x_2, x_1000); +x_1002 = l_Lean_Expr_app___override(x_1001, x_848); +lean_ctor_set(x_34, 1, x_1002); +lean_ctor_set(x_34, 0, x_18); +x_1003 = lean_unbox(x_963); +lean_dec(x_963); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1003); +if (lean_is_scalar(x_967)) { + x_1004 = lean_alloc_ctor(0, 1, 0); +} else { + x_1004 = x_967; +} +lean_ctor_set(x_1004, 0, x_34); +return x_1004; +} +} +else +{ +lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; +lean_dec(x_963); +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1005 = lean_ctor_get(x_965, 0); +lean_inc(x_1005); +if (lean_is_exclusive(x_965)) { + lean_ctor_release(x_965, 0); + x_1006 = x_965; +} else { + lean_dec_ref(x_965); + x_1006 = lean_box(0); +} +if (lean_is_scalar(x_1006)) { + x_1007 = lean_alloc_ctor(1, 1, 0); +} else { + x_1007 = x_1006; +} +lean_ctor_set(x_1007, 0, x_1005); +return x_1007; +} +} +else +{ +lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; +lean_dec(x_963); +lean_dec_ref(x_847); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_1008 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31)); +x_1009 = l_Lean_Expr_replaceFn(x_2, x_1008); +x_1010 = l_Lean_Expr_app___override(x_1009, x_848); +lean_ctor_set(x_34, 1, x_1010); +lean_ctor_set(x_34, 0, x_21); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1); +x_1011 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1011, 0, x_34); +return x_1011; +} +} +} +else +{ +uint8_t x_1012; +lean_free_object(x_34); +lean_dec_ref(x_848); +lean_dec_ref(x_847); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1012 = !lean_is_exclusive(x_849); +if (x_1012 == 0) +{ +return x_849; +} +else +{ +lean_object* x_1013; lean_object* x_1014; +x_1013 = lean_ctor_get(x_849, 0); +lean_inc(x_1013); +lean_dec(x_849); +x_1014 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1014, 0, x_1013); +return x_1014; +} +} +} +else +{ +lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; +x_1015 = lean_ctor_get(x_34, 0); +x_1016 = lean_ctor_get(x_34, 1); +lean_inc(x_1016); +lean_inc(x_1015); +lean_dec(x_34); +x_1017 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_1015, x_6); +if (lean_obj_tag(x_1017) == 0) +{ +lean_object* x_1018; lean_object* x_1019; uint8_t x_1020; +x_1018 = lean_ctor_get(x_1017, 0); +lean_inc(x_1018); +if (lean_is_exclusive(x_1017)) { + lean_ctor_release(x_1017, 0); + x_1019 = x_1017; +} else { + lean_dec_ref(x_1017); + x_1019 = lean_box(0); +} +x_1020 = lean_unbox(x_1018); +if (x_1020 == 0) +{ +lean_object* x_1021; +lean_dec(x_1019); +x_1021 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_1015, x_6); +if (lean_obj_tag(x_1021) == 0) +{ +lean_object* x_1022; lean_object* x_1023; uint8_t x_1024; +x_1022 = lean_ctor_get(x_1021, 0); +lean_inc(x_1022); +if (lean_is_exclusive(x_1021)) { + lean_ctor_release(x_1021, 0); + x_1023 = x_1021; +} else { + lean_dec_ref(x_1021); + x_1023 = lean_box(0); +} +x_1024 = lean_unbox(x_1022); +if (x_1024 == 0) +{ +lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; +lean_dec(x_1023); +lean_dec(x_1018); +x_1025 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_1015); +x_1026 = l_Lean_Expr_app___override(x_1025, x_1015); +x_1027 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_1028 = l_Lean_Meta_trySynthInstance(x_1026, x_1027, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1028) == 0) +{ +lean_object* x_1029; lean_object* x_1030; +x_1029 = lean_ctor_get(x_1028, 0); +lean_inc(x_1029); +if (lean_is_exclusive(x_1028)) { + lean_ctor_release(x_1028, 0); + x_1030 = x_1028; +} else { + lean_dec_ref(x_1028); + x_1030 = lean_box(0); +} +if (lean_obj_tag(x_1029) == 1) +{ +lean_object* x_1031; lean_object* x_1032; +lean_dec(x_1030); +x_1031 = lean_ctor_get(x_1029, 0); +lean_inc(x_1031); +lean_dec_ref(x_1029); +x_1032 = l_Lean_Meta_Sym_shareCommon___redArg(x_1031, x_7); +if (lean_obj_tag(x_1032) == 0) +{ +lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; +x_1033 = lean_ctor_get(x_1032, 0); +lean_inc(x_1033); +lean_dec_ref(x_1032); +x_1034 = lean_unsigned_to_nat(4u); +x_1035 = l_Lean_Expr_getBoundedAppFn(x_1034, x_2); +lean_inc(x_1033); +lean_inc_ref(x_1015); +x_1036 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_1035, x_1015, x_1033, x_21, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_1036) == 0) +{ +lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; uint8_t x_1043; lean_object* x_1044; +x_1037 = lean_ctor_get(x_1036, 0); +lean_inc(x_1037); +if (lean_is_exclusive(x_1036)) { + lean_ctor_release(x_1036, 0); + x_1038 = x_1036; +} else { + lean_dec_ref(x_1036); + x_1038 = lean_box(0); +} +x_1039 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__17)); +x_1040 = l_Lean_Expr_replaceFn(x_2, x_1039); +x_1041 = l_Lean_mkApp3(x_1040, x_1015, x_1033, x_1016); +x_1042 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1042, 0, x_1037); +lean_ctor_set(x_1042, 1, x_1041); +x_1043 = lean_unbox(x_1022); +lean_dec(x_1022); +lean_ctor_set_uint8(x_1042, sizeof(void*)*2, x_1043); +if (lean_is_scalar(x_1038)) { + x_1044 = lean_alloc_ctor(0, 1, 0); +} else { + x_1044 = x_1038; +} +lean_ctor_set(x_1044, 0, x_1042); +return x_1044; +} +else +{ +lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; +lean_dec(x_1033); +lean_dec(x_1022); +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_2); +x_1045 = lean_ctor_get(x_1036, 0); +lean_inc(x_1045); +if (lean_is_exclusive(x_1036)) { + lean_ctor_release(x_1036, 0); + x_1046 = x_1036; +} else { + lean_dec_ref(x_1036); + x_1046 = lean_box(0); +} +if (lean_is_scalar(x_1046)) { + x_1047 = lean_alloc_ctor(1, 1, 0); +} else { + x_1047 = x_1046; +} +lean_ctor_set(x_1047, 0, x_1045); +return x_1047; +} +} +else +{ +lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; +lean_dec(x_1022); +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1048 = lean_ctor_get(x_1032, 0); +lean_inc(x_1048); +if (lean_is_exclusive(x_1032)) { + lean_ctor_release(x_1032, 0); + x_1049 = x_1032; +} else { + lean_dec_ref(x_1032); + x_1049 = lean_box(0); +} +if (lean_is_scalar(x_1049)) { + x_1050 = lean_alloc_ctor(1, 1, 0); +} else { + x_1050 = x_1049; +} +lean_ctor_set(x_1050, 0, x_1048); +return x_1050; +} +} +else +{ +lean_object* x_1051; uint8_t x_1052; lean_object* x_1053; +lean_dec(x_1029); +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1051 = lean_alloc_ctor(0, 0, 1); +x_1052 = lean_unbox(x_1022); +lean_dec(x_1022); +lean_ctor_set_uint8(x_1051, 0, x_1052); +if (lean_is_scalar(x_1030)) { + x_1053 = lean_alloc_ctor(0, 1, 0); +} else { + x_1053 = x_1030; +} +lean_ctor_set(x_1053, 0, x_1051); +return x_1053; +} +} +else +{ +lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; +lean_dec(x_1022); +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1054 = lean_ctor_get(x_1028, 0); +lean_inc(x_1054); +if (lean_is_exclusive(x_1028)) { + lean_ctor_release(x_1028, 0); + x_1055 = x_1028; +} else { + lean_dec_ref(x_1028); + x_1055 = lean_box(0); +} +if (lean_is_scalar(x_1055)) { + x_1056 = lean_alloc_ctor(1, 1, 0); +} else { + x_1056 = x_1055; +} +lean_ctor_set(x_1056, 0, x_1054); +return x_1056; +} +} +else +{ +lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; uint8_t x_1061; lean_object* x_1062; +lean_dec(x_1022); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_1057 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__29)); +x_1058 = l_Lean_Expr_replaceFn(x_2, x_1057); +x_1059 = l_Lean_Expr_app___override(x_1058, x_1016); +x_1060 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1060, 0, x_18); +lean_ctor_set(x_1060, 1, x_1059); +x_1061 = lean_unbox(x_1018); +lean_dec(x_1018); +lean_ctor_set_uint8(x_1060, sizeof(void*)*2, x_1061); +if (lean_is_scalar(x_1023)) { + x_1062 = lean_alloc_ctor(0, 1, 0); +} else { + x_1062 = x_1023; +} +lean_ctor_set(x_1062, 0, x_1060); +return x_1062; +} +} +else +{ +lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; +lean_dec(x_1018); +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1063 = lean_ctor_get(x_1021, 0); +lean_inc(x_1063); +if (lean_is_exclusive(x_1021)) { + lean_ctor_release(x_1021, 0); + x_1064 = x_1021; +} else { + lean_dec_ref(x_1021); + x_1064 = lean_box(0); +} +if (lean_is_scalar(x_1064)) { + x_1065 = lean_alloc_ctor(1, 1, 0); +} else { + x_1065 = x_1064; +} +lean_ctor_set(x_1065, 0, x_1063); +return x_1065; +} +} +else +{ +lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; +lean_dec(x_1018); +lean_dec_ref(x_1015); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +x_1066 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__31)); +x_1067 = l_Lean_Expr_replaceFn(x_2, x_1066); +x_1068 = l_Lean_Expr_app___override(x_1067, x_1016); +x_1069 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1069, 0, x_21); +lean_ctor_set(x_1069, 1, x_1068); +lean_ctor_set_uint8(x_1069, sizeof(void*)*2, x_1); +if (lean_is_scalar(x_1019)) { + x_1070 = lean_alloc_ctor(0, 1, 0); +} else { + x_1070 = x_1019; +} +lean_ctor_set(x_1070, 0, x_1069); +return x_1070; +} +} +else +{ +lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; +lean_dec_ref(x_1016); +lean_dec_ref(x_1015); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1071 = lean_ctor_get(x_1017, 0); +lean_inc(x_1071); +if (lean_is_exclusive(x_1017)) { + lean_ctor_release(x_1017, 0); + x_1072 = x_1017; +} else { + lean_dec_ref(x_1017); + x_1072 = lean_box(0); +} +if (lean_is_scalar(x_1072)) { + x_1073 = lean_alloc_ctor(1, 1, 0); +} else { + x_1073 = x_1072; +} +lean_ctor_set(x_1073, 0, x_1071); +return x_1073; +} +} +} +} +else +{ +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_33; +} +} +} +} +} +} +} +block_15: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_13, 0, x_1); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_1); +x_14 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv(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_12; lean_object* x_13; uint8_t x_14; +x_12 = l_Lean_Expr_getAppNumArgs(x_1); +x_13 = lean_unsigned_to_nat(5u); +x_14 = lean_nat_dec_lt(x_12, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_box(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___boxed), 12, 1); +lean_closure_set(x_16, 0, x_15); +x_17 = lean_nat_sub(x_12, x_13); +lean_dec(x_12); +x_18 = l_Lean_Meta_Sym_Simp_propagateOverApplied(x_1, x_17, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_17); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_19 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_19, 0, x_14); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpIteCbv___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_Lean_Meta_Sym_Simp_simpIteCbv(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0(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_13; +x_13 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___redArg(x_1, x_2, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0___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) { +_start: +{ +lean_object* x_13; +x_13 = l_Lean_Meta_Sym_Internal_mkAppS___at___00Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0_spec__0(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_5); +lean_dec_ref(x_4); +lean_dec(x_3); +return x_13; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__6)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_mkBVar(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__11)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__14)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15; +x_2 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__23)); +x_3 = l_Lean_mkConst(x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24; +x_2 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_3 = lean_array_push(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0(uint8_t 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_16; uint8_t x_17; +lean_inc_ref(x_2); +x_16 = l_Lean_Expr_cleanupAnnotations(x_2); +x_17 = l_Lean_Expr_isApp(x_16); +if (x_17 == 0) +{ +lean_dec_ref(x_16); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_16, 1); +lean_inc_ref(x_18); +x_19 = l_Lean_Expr_appFnCleanup___redArg(x_16); +x_20 = l_Lean_Expr_isApp(x_19); +if (x_20 == 0) +{ +lean_dec_ref(x_19); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_ctor_get(x_19, 1); +lean_inc_ref(x_21); +x_22 = l_Lean_Expr_appFnCleanup___redArg(x_19); +x_23 = l_Lean_Expr_isApp(x_22); +if (x_23 == 0) +{ +lean_dec_ref(x_22); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_24; uint8_t x_25; +x_24 = l_Lean_Expr_appFnCleanup___redArg(x_22); +x_25 = l_Lean_Expr_isApp(x_24); +if (x_25 == 0) +{ +lean_dec_ref(x_24); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_24, 1); +lean_inc_ref(x_26); +x_27 = l_Lean_Expr_appFnCleanup___redArg(x_24); +x_28 = l_Lean_Expr_isApp(x_27); +if (x_28 == 0) +{ +lean_dec_ref(x_27); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_ctor_get(x_27, 1); +lean_inc_ref(x_29); +x_30 = l_Lean_Expr_appFnCleanup___redArg(x_27); +x_31 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__1)); +x_32 = l_Lean_Expr_isConstOf(x_30, x_31); +if (x_32 == 0) +{ +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +goto block_15; +} +else +{ +lean_object* x_33; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +lean_inc_ref(x_26); +x_33 = lean_sym_simp(x_26, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +lean_dec_ref(x_33); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +lean_dec_ref(x_36); +x_38 = lean_unbox(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +x_39 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; uint8_t x_41; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +lean_dec_ref(x_39); +x_41 = lean_unbox(x_40); +if (x_41 == 0) +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_dec(x_37); +x_42 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_43 = l_Lean_Expr_app___override(x_42, x_26); +x_44 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_45 = l_Lean_Meta_trySynthInstance(x_43, x_44, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_45) == 0) +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_45, 0); +if (lean_obj_tag(x_47) == 1) +{ +lean_object* x_48; lean_object* x_49; +lean_free_object(x_45); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +lean_dec_ref(x_47); +x_49 = l_Lean_Meta_Sym_shareCommon___redArg(x_48, x_7); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_51 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_50); +lean_inc_ref(x_26); +x_52 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_51, x_26, x_50, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +lean_dec_ref(x_52); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_54 = lean_sym_simp(x_53, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_54) == 0) +{ +uint8_t x_55; +x_55 = !lean_is_exclusive(x_54); +if (x_55 == 0) +{ +lean_object* x_56; +x_56 = lean_ctor_get(x_54, 0); +if (lean_obj_tag(x_56) == 0) +{ +uint8_t x_57; +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_57 = !lean_is_exclusive(x_56); +if (x_57 == 0) +{ +lean_ctor_set_uint8(x_56, 0, x_32); +return x_54; +} +else +{ +lean_object* x_58; +lean_dec(x_56); +x_58 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_58, 0, x_32); +lean_ctor_set(x_54, 0, x_58); +return x_54; +} +} +else +{ +uint8_t x_59; +lean_free_object(x_54); +x_59 = !lean_is_exclusive(x_56); +if (x_59 == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_56, 0); +x_61 = lean_ctor_get(x_56, 1); +x_62 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_60, x_6); +if (lean_obj_tag(x_62) == 0) +{ +lean_object* x_63; uint8_t x_64; +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +lean_dec_ref(x_62); +x_64 = lean_unbox(x_63); +if (x_64 == 0) +{ +lean_object* x_65; +lean_dec(x_40); +x_65 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_60, x_6); +lean_dec_ref(x_60); +if (lean_obj_tag(x_65) == 0) +{ +uint8_t x_66; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = lean_ctor_get(x_65, 0); +x_68 = lean_unbox(x_67); +lean_dec(x_67); +if (x_68 == 0) +{ +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_61); +lean_dec(x_50); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +lean_ctor_set(x_65, 0, x_34); +return x_65; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_free_object(x_65); +lean_free_object(x_34); +x_69 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_70 = l_Lean_mkApp3(x_69, x_26, x_50, x_61); +x_71 = l_Lean_Meta_Sym_shareCommon___redArg(x_70, x_7); +if (lean_obj_tag(x_71) == 0) +{ +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +lean_dec_ref(x_71); +x_73 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_73) == 0) +{ +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; uint8_t x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +lean_dec_ref(x_73); +x_75 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_76 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_77 = 0; +x_78 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_79 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_72); +lean_inc(x_74); +lean_inc_ref(x_26); +x_80 = l_Lean_mkApp4(x_78, x_26, x_74, x_72, x_79); +x_81 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_82 = lean_array_push(x_81, x_80); +x_83 = lean_unbox(x_63); +x_84 = lean_unbox(x_63); +x_85 = l_Lean_Expr_betaRev(x_21, x_82, x_83, x_84); +lean_dec_ref(x_82); +lean_inc(x_74); +x_86 = l_Lean_mkLambda(x_76, x_77, x_74, x_85); +x_87 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_86, x_7); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_88 = lean_ctor_get(x_87, 0); +lean_inc(x_88); +lean_dec_ref(x_87); +lean_inc(x_74); +x_89 = l_Lean_mkNot(x_74); +x_90 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_72); +lean_inc(x_74); +x_91 = l_Lean_mkApp4(x_90, x_26, x_74, x_72, x_79); +x_92 = lean_array_push(x_81, x_91); +x_93 = lean_unbox(x_63); +x_94 = lean_unbox(x_63); +x_95 = l_Lean_Expr_betaRev(x_18, x_92, x_93, x_94); +lean_dec_ref(x_92); +x_96 = l_Lean_mkLambda(x_76, x_77, x_89, x_95); +x_97 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_96, x_7); +if (lean_obj_tag(x_97) == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_98 = lean_ctor_get(x_97, 0); +lean_inc(x_98); +lean_dec_ref(x_97); +x_99 = lean_unsigned_to_nat(4u); +x_100 = l_Lean_Expr_getBoundedAppFn(x_99, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_98); +lean_inc(x_88); +lean_inc(x_74); +x_101 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_100, x_74, x_75, x_88, x_98, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; lean_object* x_103; uint8_t x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +lean_dec_ref(x_101); +x_103 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_104 = lean_unbox(x_63); +x_105 = lean_unbox(x_63); +lean_inc(x_98); +x_106 = l_Lean_Expr_betaRev(x_98, x_103, x_104, x_105); +x_107 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_106, x_7); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +lean_dec_ref(x_107); +x_109 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_110 = l_Lean_Expr_replaceFn(x_2, x_109); +x_111 = l_Lean_mkApp3(x_110, x_74, x_75, x_72); +x_112 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_113 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_114 = l_Lean_mkConst(x_112, x_113); +x_115 = l_Lean_mkApp3(x_114, x_29, x_88, x_98); +lean_inc(x_108); +x_116 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_102, x_111, x_108, x_115, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_116) == 0) +{ +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) +{ +lean_object* x_118; uint8_t x_119; +x_118 = lean_ctor_get(x_116, 0); +lean_ctor_set(x_56, 1, x_118); +lean_ctor_set(x_56, 0, x_108); +x_119 = lean_unbox(x_63); +lean_dec(x_63); +lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_119); +lean_ctor_set(x_116, 0, x_56); +return x_116; +} +else +{ +lean_object* x_120; uint8_t x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_116, 0); +lean_inc(x_120); +lean_dec(x_116); +lean_ctor_set(x_56, 1, x_120); +lean_ctor_set(x_56, 0, x_108); +x_121 = lean_unbox(x_63); +lean_dec(x_63); +lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_121); +x_122 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_122, 0, x_56); +return x_122; +} +} +else +{ +uint8_t x_123; +lean_dec(x_108); +lean_dec(x_63); +lean_free_object(x_56); +x_123 = !lean_is_exclusive(x_116); +if (x_123 == 0) +{ +return x_116; +} +else +{ +lean_object* x_124; lean_object* x_125; +x_124 = lean_ctor_get(x_116, 0); +lean_inc(x_124); +lean_dec(x_116); +x_125 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_125, 0, x_124); +return x_125; +} +} +} +else +{ +uint8_t x_126; +lean_dec(x_102); +lean_dec(x_98); +lean_dec(x_88); +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_126 = !lean_is_exclusive(x_107); +if (x_126 == 0) +{ +return x_107; +} +else +{ +lean_object* x_127; lean_object* x_128; +x_127 = lean_ctor_get(x_107, 0); +lean_inc(x_127); +lean_dec(x_107); +x_128 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_128, 0, x_127); +return x_128; +} +} +} +else +{ +uint8_t x_129; +lean_dec(x_98); +lean_dec(x_88); +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_129 = !lean_is_exclusive(x_101); +if (x_129 == 0) +{ +return x_101; +} +else +{ +lean_object* x_130; lean_object* x_131; +x_130 = lean_ctor_get(x_101, 0); +lean_inc(x_130); +lean_dec(x_101); +x_131 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_131, 0, x_130); +return x_131; +} +} +} +else +{ +uint8_t x_132; +lean_dec(x_88); +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_132 = !lean_is_exclusive(x_97); +if (x_132 == 0) +{ +return x_97; +} +else +{ +lean_object* x_133; lean_object* x_134; +x_133 = lean_ctor_get(x_97, 0); +lean_inc(x_133); +lean_dec(x_97); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_133); +return x_134; +} +} +} +else +{ +uint8_t x_135; +lean_dec(x_74); +lean_dec(x_72); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_135 = !lean_is_exclusive(x_87); +if (x_135 == 0) +{ +return x_87; +} +else +{ +lean_object* x_136; lean_object* x_137; +x_136 = lean_ctor_get(x_87, 0); +lean_inc(x_136); +lean_dec(x_87); +x_137 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_137, 0, x_136); +return x_137; +} +} +} +else +{ +uint8_t x_138; +lean_dec(x_72); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_138 = !lean_is_exclusive(x_73); +if (x_138 == 0) +{ +return x_73; +} +else +{ +lean_object* x_139; lean_object* x_140; +x_139 = lean_ctor_get(x_73, 0); +lean_inc(x_139); +lean_dec(x_73); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +return x_140; +} +} +} +else +{ +uint8_t x_141; +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_141 = !lean_is_exclusive(x_71); +if (x_141 == 0) +{ +return x_71; +} +else +{ +lean_object* x_142; lean_object* x_143; +x_142 = lean_ctor_get(x_71, 0); +lean_inc(x_142); +lean_dec(x_71); +x_143 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_143, 0, x_142); +return x_143; +} +} +} +} +else +{ +lean_object* x_144; uint8_t x_145; +x_144 = lean_ctor_get(x_65, 0); +lean_inc(x_144); +lean_dec(x_65); +x_145 = lean_unbox(x_144); +lean_dec(x_144); +if (x_145 == 0) +{ +lean_object* x_146; +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_61); +lean_dec(x_50); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +x_146 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_146, 0, x_34); +return x_146; +} +else +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; +lean_free_object(x_34); +x_147 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_148 = l_Lean_mkApp3(x_147, x_26, x_50, x_61); +x_149 = l_Lean_Meta_Sym_shareCommon___redArg(x_148, x_7); +if (lean_obj_tag(x_149) == 0) +{ +lean_object* x_150; lean_object* x_151; +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +lean_dec_ref(x_149); +x_151 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_151) == 0) +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; uint8_t x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +lean_dec_ref(x_151); +x_153 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_154 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_155 = 0; +x_156 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_157 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_150); +lean_inc(x_152); +lean_inc_ref(x_26); +x_158 = l_Lean_mkApp4(x_156, x_26, x_152, x_150, x_157); +x_159 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_160 = lean_array_push(x_159, x_158); +x_161 = lean_unbox(x_63); +x_162 = lean_unbox(x_63); +x_163 = l_Lean_Expr_betaRev(x_21, x_160, x_161, x_162); +lean_dec_ref(x_160); +lean_inc(x_152); +x_164 = l_Lean_mkLambda(x_154, x_155, x_152, x_163); +x_165 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_164, x_7); +if (lean_obj_tag(x_165) == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; uint8_t x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +lean_dec_ref(x_165); +lean_inc(x_152); +x_167 = l_Lean_mkNot(x_152); +x_168 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_150); +lean_inc(x_152); +x_169 = l_Lean_mkApp4(x_168, x_26, x_152, x_150, x_157); +x_170 = lean_array_push(x_159, x_169); +x_171 = lean_unbox(x_63); +x_172 = lean_unbox(x_63); +x_173 = l_Lean_Expr_betaRev(x_18, x_170, x_171, x_172); +lean_dec_ref(x_170); +x_174 = l_Lean_mkLambda(x_154, x_155, x_167, x_173); +x_175 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_174, x_7); +if (lean_obj_tag(x_175) == 0) +{ +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +lean_dec_ref(x_175); +x_177 = lean_unsigned_to_nat(4u); +x_178 = l_Lean_Expr_getBoundedAppFn(x_177, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_176); +lean_inc(x_166); +lean_inc(x_152); +x_179 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_178, x_152, x_153, x_166, x_176, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_179) == 0) +{ +lean_object* x_180; lean_object* x_181; uint8_t x_182; uint8_t x_183; lean_object* x_184; lean_object* x_185; +x_180 = lean_ctor_get(x_179, 0); +lean_inc(x_180); +lean_dec_ref(x_179); +x_181 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_182 = lean_unbox(x_63); +x_183 = lean_unbox(x_63); +lean_inc(x_176); +x_184 = l_Lean_Expr_betaRev(x_176, x_181, x_182, x_183); +x_185 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_184, x_7); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +lean_dec_ref(x_185); +x_187 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_188 = l_Lean_Expr_replaceFn(x_2, x_187); +x_189 = l_Lean_mkApp3(x_188, x_152, x_153, x_150); +x_190 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_191 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_192 = l_Lean_mkConst(x_190, x_191); +x_193 = l_Lean_mkApp3(x_192, x_29, x_166, x_176); +lean_inc(x_186); +x_194 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_180, x_189, x_186, x_193, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_194) == 0) +{ +lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_196 = x_194; +} else { + lean_dec_ref(x_194); + x_196 = lean_box(0); +} +lean_ctor_set(x_56, 1, x_195); +lean_ctor_set(x_56, 0, x_186); +x_197 = lean_unbox(x_63); +lean_dec(x_63); +lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_197); +if (lean_is_scalar(x_196)) { + x_198 = lean_alloc_ctor(0, 1, 0); +} else { + x_198 = x_196; +} +lean_ctor_set(x_198, 0, x_56); +return x_198; +} +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; +lean_dec(x_186); +lean_dec(x_63); +lean_free_object(x_56); +x_199 = lean_ctor_get(x_194, 0); +lean_inc(x_199); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + x_200 = x_194; +} else { + lean_dec_ref(x_194); + x_200 = lean_box(0); +} +if (lean_is_scalar(x_200)) { + x_201 = lean_alloc_ctor(1, 1, 0); +} else { + x_201 = x_200; +} +lean_ctor_set(x_201, 0, x_199); +return x_201; +} +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; +lean_dec(x_180); +lean_dec(x_176); +lean_dec(x_166); +lean_dec(x_152); +lean_dec(x_150); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_202 = lean_ctor_get(x_185, 0); +lean_inc(x_202); +if (lean_is_exclusive(x_185)) { + lean_ctor_release(x_185, 0); + x_203 = x_185; +} else { + lean_dec_ref(x_185); + x_203 = lean_box(0); +} +if (lean_is_scalar(x_203)) { + x_204 = lean_alloc_ctor(1, 1, 0); +} else { + x_204 = x_203; +} +lean_ctor_set(x_204, 0, x_202); +return x_204; +} +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; +lean_dec(x_176); +lean_dec(x_166); +lean_dec(x_152); +lean_dec(x_150); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_205 = lean_ctor_get(x_179, 0); +lean_inc(x_205); +if (lean_is_exclusive(x_179)) { + lean_ctor_release(x_179, 0); + x_206 = x_179; +} else { + lean_dec_ref(x_179); + x_206 = lean_box(0); +} +if (lean_is_scalar(x_206)) { + x_207 = lean_alloc_ctor(1, 1, 0); +} else { + x_207 = x_206; +} +lean_ctor_set(x_207, 0, x_205); +return x_207; +} +} +else +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; +lean_dec(x_166); +lean_dec(x_152); +lean_dec(x_150); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_208 = lean_ctor_get(x_175, 0); +lean_inc(x_208); +if (lean_is_exclusive(x_175)) { + lean_ctor_release(x_175, 0); + x_209 = x_175; +} else { + lean_dec_ref(x_175); + x_209 = lean_box(0); +} +if (lean_is_scalar(x_209)) { + x_210 = lean_alloc_ctor(1, 1, 0); +} else { + x_210 = x_209; +} +lean_ctor_set(x_210, 0, x_208); +return x_210; +} +} +else +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; +lean_dec(x_152); +lean_dec(x_150); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_211 = lean_ctor_get(x_165, 0); +lean_inc(x_211); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + x_212 = x_165; +} else { + lean_dec_ref(x_165); + x_212 = lean_box(0); +} +if (lean_is_scalar(x_212)) { + x_213 = lean_alloc_ctor(1, 1, 0); +} else { + x_213 = x_212; +} +lean_ctor_set(x_213, 0, x_211); +return x_213; +} +} +else +{ +lean_object* x_214; lean_object* x_215; lean_object* x_216; +lean_dec(x_150); +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_214 = lean_ctor_get(x_151, 0); +lean_inc(x_214); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + x_215 = x_151; +} else { + lean_dec_ref(x_151); + x_215 = lean_box(0); +} +if (lean_is_scalar(x_215)) { + x_216 = lean_alloc_ctor(1, 1, 0); +} else { + x_216 = x_215; +} +lean_ctor_set(x_216, 0, x_214); +return x_216; +} +} +else +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_217 = lean_ctor_get(x_149, 0); +lean_inc(x_217); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + x_218 = x_149; +} else { + lean_dec_ref(x_149); + x_218 = lean_box(0); +} +if (lean_is_scalar(x_218)) { + x_219 = lean_alloc_ctor(1, 1, 0); +} else { + x_219 = x_218; +} +lean_ctor_set(x_219, 0, x_217); +return x_219; +} +} +} +} +else +{ +uint8_t x_220; +lean_dec(x_63); +lean_free_object(x_56); +lean_dec_ref(x_61); +lean_dec(x_50); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_220 = !lean_is_exclusive(x_65); +if (x_220 == 0) +{ +return x_65; +} +else +{ +lean_object* x_221; lean_object* x_222; +x_221 = lean_ctor_get(x_65, 0); +lean_inc(x_221); +lean_dec(x_65); +x_222 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_222, 0, x_221); +return x_222; +} +} +} +else +{ +lean_object* x_223; lean_object* x_224; lean_object* x_225; +lean_dec(x_63); +lean_dec_ref(x_60); +lean_free_object(x_34); +x_223 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +lean_inc_ref(x_26); +x_224 = l_Lean_mkApp3(x_223, x_26, x_50, x_61); +x_225 = l_Lean_Meta_Sym_shareCommon___redArg(x_224, x_7); +if (lean_obj_tag(x_225) == 0) +{ +lean_object* x_226; lean_object* x_227; +x_226 = lean_ctor_get(x_225, 0); +lean_inc(x_226); +lean_dec_ref(x_225); +x_227 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_227) == 0) +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; uint8_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_228 = lean_ctor_get(x_227, 0); +lean_inc(x_228); +lean_dec_ref(x_227); +x_229 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_230 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_231 = 0; +x_232 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_233 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_226); +lean_inc(x_228); +lean_inc_ref(x_26); +x_234 = l_Lean_mkApp4(x_232, x_26, x_228, x_226, x_233); +x_235 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_236 = lean_array_push(x_235, x_234); +x_237 = lean_unbox(x_40); +x_238 = lean_unbox(x_40); +x_239 = l_Lean_Expr_betaRev(x_21, x_236, x_237, x_238); +lean_dec_ref(x_236); +lean_inc(x_228); +x_240 = l_Lean_mkLambda(x_230, x_231, x_228, x_239); +x_241 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_240, x_7); +if (lean_obj_tag(x_241) == 0) +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; uint8_t x_247; uint8_t x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_242 = lean_ctor_get(x_241, 0); +lean_inc(x_242); +lean_dec_ref(x_241); +lean_inc(x_228); +x_243 = l_Lean_mkNot(x_228); +x_244 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_226); +lean_inc(x_228); +x_245 = l_Lean_mkApp4(x_244, x_26, x_228, x_226, x_233); +x_246 = lean_array_push(x_235, x_245); +x_247 = lean_unbox(x_40); +x_248 = lean_unbox(x_40); +x_249 = l_Lean_Expr_betaRev(x_18, x_246, x_247, x_248); +lean_dec_ref(x_246); +x_250 = l_Lean_mkLambda(x_230, x_231, x_243, x_249); +x_251 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_250, x_7); +if (lean_obj_tag(x_251) == 0) +{ +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_252 = lean_ctor_get(x_251, 0); +lean_inc(x_252); +lean_dec_ref(x_251); +x_253 = lean_unsigned_to_nat(4u); +x_254 = l_Lean_Expr_getBoundedAppFn(x_253, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_252); +lean_inc(x_242); +lean_inc(x_228); +x_255 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_254, x_228, x_229, x_242, x_252, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_255) == 0) +{ +lean_object* x_256; lean_object* x_257; uint8_t x_258; uint8_t x_259; lean_object* x_260; lean_object* x_261; +x_256 = lean_ctor_get(x_255, 0); +lean_inc(x_256); +lean_dec_ref(x_255); +x_257 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +x_258 = lean_unbox(x_40); +x_259 = lean_unbox(x_40); +lean_inc(x_242); +x_260 = l_Lean_Expr_betaRev(x_242, x_257, x_258, x_259); +x_261 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_260, x_7); +if (lean_obj_tag(x_261) == 0) +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_262 = lean_ctor_get(x_261, 0); +lean_inc(x_262); +lean_dec_ref(x_261); +x_263 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_264 = l_Lean_Expr_replaceFn(x_2, x_263); +x_265 = l_Lean_mkApp3(x_264, x_228, x_229, x_226); +x_266 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_267 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_268 = l_Lean_mkConst(x_266, x_267); +x_269 = l_Lean_mkApp3(x_268, x_29, x_242, x_252); +lean_inc(x_262); +x_270 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_256, x_265, x_262, x_269, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_270) == 0) +{ +uint8_t x_271; +x_271 = !lean_is_exclusive(x_270); +if (x_271 == 0) +{ +lean_object* x_272; uint8_t x_273; +x_272 = lean_ctor_get(x_270, 0); +lean_ctor_set(x_56, 1, x_272); +lean_ctor_set(x_56, 0, x_262); +x_273 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_273); +lean_ctor_set(x_270, 0, x_56); +return x_270; +} +else +{ +lean_object* x_274; uint8_t x_275; lean_object* x_276; +x_274 = lean_ctor_get(x_270, 0); +lean_inc(x_274); +lean_dec(x_270); +lean_ctor_set(x_56, 1, x_274); +lean_ctor_set(x_56, 0, x_262); +x_275 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_56, sizeof(void*)*2, x_275); +x_276 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_276, 0, x_56); +return x_276; +} +} +else +{ +uint8_t x_277; +lean_dec(x_262); +lean_free_object(x_56); +lean_dec(x_40); +x_277 = !lean_is_exclusive(x_270); +if (x_277 == 0) +{ +return x_270; +} +else +{ +lean_object* x_278; lean_object* x_279; +x_278 = lean_ctor_get(x_270, 0); +lean_inc(x_278); +lean_dec(x_270); +x_279 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_279, 0, x_278); +return x_279; +} +} +} +else +{ +uint8_t x_280; +lean_dec(x_256); +lean_dec(x_252); +lean_dec(x_242); +lean_dec(x_228); +lean_dec(x_226); +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_280 = !lean_is_exclusive(x_261); +if (x_280 == 0) +{ +return x_261; +} +else +{ +lean_object* x_281; lean_object* x_282; +x_281 = lean_ctor_get(x_261, 0); +lean_inc(x_281); +lean_dec(x_261); +x_282 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_282, 0, x_281); +return x_282; +} +} +} +else +{ +uint8_t x_283; +lean_dec(x_252); +lean_dec(x_242); +lean_dec(x_228); +lean_dec(x_226); +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_283 = !lean_is_exclusive(x_255); +if (x_283 == 0) +{ +return x_255; +} +else +{ +lean_object* x_284; lean_object* x_285; +x_284 = lean_ctor_get(x_255, 0); +lean_inc(x_284); +lean_dec(x_255); +x_285 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_285, 0, x_284); +return x_285; +} +} +} +else +{ +uint8_t x_286; +lean_dec(x_242); +lean_dec(x_228); +lean_dec(x_226); +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_286 = !lean_is_exclusive(x_251); +if (x_286 == 0) +{ +return x_251; +} +else +{ +lean_object* x_287; lean_object* x_288; +x_287 = lean_ctor_get(x_251, 0); +lean_inc(x_287); +lean_dec(x_251); +x_288 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_288, 0, x_287); +return x_288; +} +} +} +else +{ +uint8_t x_289; +lean_dec(x_228); +lean_dec(x_226); +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_289 = !lean_is_exclusive(x_241); +if (x_289 == 0) +{ +return x_241; +} +else +{ +lean_object* x_290; lean_object* x_291; +x_290 = lean_ctor_get(x_241, 0); +lean_inc(x_290); +lean_dec(x_241); +x_291 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_291, 0, x_290); +return x_291; +} +} +} +else +{ +uint8_t x_292; +lean_dec(x_226); +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_292 = !lean_is_exclusive(x_227); +if (x_292 == 0) +{ +return x_227; +} +else +{ +lean_object* x_293; lean_object* x_294; +x_293 = lean_ctor_get(x_227, 0); +lean_inc(x_293); +lean_dec(x_227); +x_294 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_294, 0, x_293); +return x_294; +} +} +} +else +{ +uint8_t x_295; +lean_free_object(x_56); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_295 = !lean_is_exclusive(x_225); +if (x_295 == 0) +{ +return x_225; +} +else +{ +lean_object* x_296; lean_object* x_297; +x_296 = lean_ctor_get(x_225, 0); +lean_inc(x_296); +lean_dec(x_225); +x_297 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_297, 0, x_296); +return x_297; +} +} +} +} +else +{ +uint8_t x_298; +lean_free_object(x_56); +lean_dec_ref(x_61); +lean_dec_ref(x_60); +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_298 = !lean_is_exclusive(x_62); +if (x_298 == 0) +{ +return x_62; +} +else +{ +lean_object* x_299; lean_object* x_300; +x_299 = lean_ctor_get(x_62, 0); +lean_inc(x_299); +lean_dec(x_62); +x_300 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_300, 0, x_299); +return x_300; +} +} +} +else +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; +x_301 = lean_ctor_get(x_56, 0); +x_302 = lean_ctor_get(x_56, 1); +lean_inc(x_302); +lean_inc(x_301); +lean_dec(x_56); +x_303 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_301, x_6); +if (lean_obj_tag(x_303) == 0) +{ +lean_object* x_304; uint8_t x_305; +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +lean_dec_ref(x_303); +x_305 = lean_unbox(x_304); +if (x_305 == 0) +{ +lean_object* x_306; +lean_dec(x_40); +x_306 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_301, x_6); +lean_dec_ref(x_301); +if (lean_obj_tag(x_306) == 0) +{ +lean_object* x_307; lean_object* x_308; uint8_t x_309; +x_307 = lean_ctor_get(x_306, 0); +lean_inc(x_307); +if (lean_is_exclusive(x_306)) { + lean_ctor_release(x_306, 0); + x_308 = x_306; +} else { + lean_dec_ref(x_306); + x_308 = lean_box(0); +} +x_309 = lean_unbox(x_307); +lean_dec(x_307); +if (x_309 == 0) +{ +lean_object* x_310; +lean_dec(x_304); +lean_dec_ref(x_302); +lean_dec(x_50); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_308)) { + x_310 = lean_alloc_ctor(0, 1, 0); +} else { + x_310 = x_308; +} +lean_ctor_set(x_310, 0, x_34); +return x_310; +} +else +{ +lean_object* x_311; lean_object* x_312; lean_object* x_313; +lean_dec(x_308); +lean_free_object(x_34); +x_311 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_312 = l_Lean_mkApp3(x_311, x_26, x_50, x_302); +x_313 = l_Lean_Meta_Sym_shareCommon___redArg(x_312, x_7); +if (lean_obj_tag(x_313) == 0) +{ +lean_object* x_314; lean_object* x_315; +x_314 = lean_ctor_get(x_313, 0); +lean_inc(x_314); +lean_dec_ref(x_313); +x_315 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_315) == 0) +{ +lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; uint8_t x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_316 = lean_ctor_get(x_315, 0); +lean_inc(x_316); +lean_dec_ref(x_315); +x_317 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_318 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_319 = 0; +x_320 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_321 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_314); +lean_inc(x_316); +lean_inc_ref(x_26); +x_322 = l_Lean_mkApp4(x_320, x_26, x_316, x_314, x_321); +x_323 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_324 = lean_array_push(x_323, x_322); +x_325 = lean_unbox(x_304); +x_326 = lean_unbox(x_304); +x_327 = l_Lean_Expr_betaRev(x_21, x_324, x_325, x_326); +lean_dec_ref(x_324); +lean_inc(x_316); +x_328 = l_Lean_mkLambda(x_318, x_319, x_316, x_327); +x_329 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_328, x_7); +if (lean_obj_tag(x_329) == 0) +{ +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; uint8_t x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; +x_330 = lean_ctor_get(x_329, 0); +lean_inc(x_330); +lean_dec_ref(x_329); +lean_inc(x_316); +x_331 = l_Lean_mkNot(x_316); +x_332 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_314); +lean_inc(x_316); +x_333 = l_Lean_mkApp4(x_332, x_26, x_316, x_314, x_321); +x_334 = lean_array_push(x_323, x_333); +x_335 = lean_unbox(x_304); +x_336 = lean_unbox(x_304); +x_337 = l_Lean_Expr_betaRev(x_18, x_334, x_335, x_336); +lean_dec_ref(x_334); +x_338 = l_Lean_mkLambda(x_318, x_319, x_331, x_337); +x_339 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_338, x_7); +if (lean_obj_tag(x_339) == 0) +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; +x_340 = lean_ctor_get(x_339, 0); +lean_inc(x_340); +lean_dec_ref(x_339); +x_341 = lean_unsigned_to_nat(4u); +x_342 = l_Lean_Expr_getBoundedAppFn(x_341, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_340); +lean_inc(x_330); +lean_inc(x_316); +x_343 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_342, x_316, x_317, x_330, x_340, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_343) == 0) +{ +lean_object* x_344; lean_object* x_345; uint8_t x_346; uint8_t x_347; lean_object* x_348; lean_object* x_349; +x_344 = lean_ctor_get(x_343, 0); +lean_inc(x_344); +lean_dec_ref(x_343); +x_345 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_346 = lean_unbox(x_304); +x_347 = lean_unbox(x_304); +lean_inc(x_340); +x_348 = l_Lean_Expr_betaRev(x_340, x_345, x_346, x_347); +x_349 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_348, x_7); +if (lean_obj_tag(x_349) == 0) +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_350 = lean_ctor_get(x_349, 0); +lean_inc(x_350); +lean_dec_ref(x_349); +x_351 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_352 = l_Lean_Expr_replaceFn(x_2, x_351); +x_353 = l_Lean_mkApp3(x_352, x_316, x_317, x_314); +x_354 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_355 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_356 = l_Lean_mkConst(x_354, x_355); +x_357 = l_Lean_mkApp3(x_356, x_29, x_330, x_340); +lean_inc(x_350); +x_358 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_344, x_353, x_350, x_357, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_358) == 0) +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + x_360 = x_358; +} else { + lean_dec_ref(x_358); + x_360 = lean_box(0); +} +x_361 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_361, 0, x_350); +lean_ctor_set(x_361, 1, x_359); +x_362 = lean_unbox(x_304); +lean_dec(x_304); +lean_ctor_set_uint8(x_361, sizeof(void*)*2, x_362); +if (lean_is_scalar(x_360)) { + x_363 = lean_alloc_ctor(0, 1, 0); +} else { + x_363 = x_360; +} +lean_ctor_set(x_363, 0, x_361); +return x_363; +} +else +{ +lean_object* x_364; lean_object* x_365; lean_object* x_366; +lean_dec(x_350); +lean_dec(x_304); +x_364 = lean_ctor_get(x_358, 0); +lean_inc(x_364); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + x_365 = x_358; +} else { + lean_dec_ref(x_358); + x_365 = lean_box(0); +} +if (lean_is_scalar(x_365)) { + x_366 = lean_alloc_ctor(1, 1, 0); +} else { + x_366 = x_365; +} +lean_ctor_set(x_366, 0, x_364); +return x_366; +} +} +else +{ +lean_object* x_367; lean_object* x_368; lean_object* x_369; +lean_dec(x_344); +lean_dec(x_340); +lean_dec(x_330); +lean_dec(x_316); +lean_dec(x_314); +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_367 = lean_ctor_get(x_349, 0); +lean_inc(x_367); +if (lean_is_exclusive(x_349)) { + lean_ctor_release(x_349, 0); + x_368 = x_349; +} else { + lean_dec_ref(x_349); + x_368 = lean_box(0); +} +if (lean_is_scalar(x_368)) { + x_369 = lean_alloc_ctor(1, 1, 0); +} else { + x_369 = x_368; +} +lean_ctor_set(x_369, 0, x_367); +return x_369; +} +} +else +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; +lean_dec(x_340); +lean_dec(x_330); +lean_dec(x_316); +lean_dec(x_314); +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_370 = lean_ctor_get(x_343, 0); +lean_inc(x_370); +if (lean_is_exclusive(x_343)) { + lean_ctor_release(x_343, 0); + x_371 = x_343; +} else { + lean_dec_ref(x_343); + x_371 = lean_box(0); +} +if (lean_is_scalar(x_371)) { + x_372 = lean_alloc_ctor(1, 1, 0); +} else { + x_372 = x_371; +} +lean_ctor_set(x_372, 0, x_370); +return x_372; +} +} +else +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; +lean_dec(x_330); +lean_dec(x_316); +lean_dec(x_314); +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_373 = lean_ctor_get(x_339, 0); +lean_inc(x_373); +if (lean_is_exclusive(x_339)) { + lean_ctor_release(x_339, 0); + x_374 = x_339; +} else { + lean_dec_ref(x_339); + x_374 = lean_box(0); +} +if (lean_is_scalar(x_374)) { + x_375 = lean_alloc_ctor(1, 1, 0); +} else { + x_375 = x_374; +} +lean_ctor_set(x_375, 0, x_373); +return x_375; +} +} +else +{ +lean_object* x_376; lean_object* x_377; lean_object* x_378; +lean_dec(x_316); +lean_dec(x_314); +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_376 = lean_ctor_get(x_329, 0); +lean_inc(x_376); +if (lean_is_exclusive(x_329)) { + lean_ctor_release(x_329, 0); + x_377 = x_329; +} else { + lean_dec_ref(x_329); + x_377 = lean_box(0); +} +if (lean_is_scalar(x_377)) { + x_378 = lean_alloc_ctor(1, 1, 0); +} else { + x_378 = x_377; +} +lean_ctor_set(x_378, 0, x_376); +return x_378; +} +} +else +{ +lean_object* x_379; lean_object* x_380; lean_object* x_381; +lean_dec(x_314); +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_379 = lean_ctor_get(x_315, 0); +lean_inc(x_379); +if (lean_is_exclusive(x_315)) { + lean_ctor_release(x_315, 0); + x_380 = x_315; +} else { + lean_dec_ref(x_315); + x_380 = lean_box(0); +} +if (lean_is_scalar(x_380)) { + x_381 = lean_alloc_ctor(1, 1, 0); +} else { + x_381 = x_380; +} +lean_ctor_set(x_381, 0, x_379); +return x_381; +} +} +else +{ +lean_object* x_382; lean_object* x_383; lean_object* x_384; +lean_dec(x_304); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_382 = lean_ctor_get(x_313, 0); +lean_inc(x_382); +if (lean_is_exclusive(x_313)) { + lean_ctor_release(x_313, 0); + x_383 = x_313; +} else { + lean_dec_ref(x_313); + x_383 = lean_box(0); +} +if (lean_is_scalar(x_383)) { + x_384 = lean_alloc_ctor(1, 1, 0); +} else { + x_384 = x_383; +} +lean_ctor_set(x_384, 0, x_382); +return x_384; +} +} +} +else +{ +lean_object* x_385; lean_object* x_386; lean_object* x_387; +lean_dec(x_304); +lean_dec_ref(x_302); +lean_dec(x_50); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_385 = lean_ctor_get(x_306, 0); +lean_inc(x_385); +if (lean_is_exclusive(x_306)) { + lean_ctor_release(x_306, 0); + x_386 = x_306; +} else { + lean_dec_ref(x_306); + x_386 = lean_box(0); +} +if (lean_is_scalar(x_386)) { + x_387 = lean_alloc_ctor(1, 1, 0); +} else { + x_387 = x_386; +} +lean_ctor_set(x_387, 0, x_385); +return x_387; +} +} +else +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; +lean_dec(x_304); +lean_dec_ref(x_301); +lean_free_object(x_34); +x_388 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +lean_inc_ref(x_26); +x_389 = l_Lean_mkApp3(x_388, x_26, x_50, x_302); +x_390 = l_Lean_Meta_Sym_shareCommon___redArg(x_389, x_7); +if (lean_obj_tag(x_390) == 0) +{ +lean_object* x_391; lean_object* x_392; +x_391 = lean_ctor_get(x_390, 0); +lean_inc(x_391); +lean_dec_ref(x_390); +x_392 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_392) == 0) +{ +lean_object* x_393; lean_object* x_394; lean_object* x_395; uint8_t x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; uint8_t x_402; uint8_t x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_393 = lean_ctor_get(x_392, 0); +lean_inc(x_393); +lean_dec_ref(x_392); +x_394 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_395 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_396 = 0; +x_397 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_398 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_391); +lean_inc(x_393); +lean_inc_ref(x_26); +x_399 = l_Lean_mkApp4(x_397, x_26, x_393, x_391, x_398); +x_400 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_401 = lean_array_push(x_400, x_399); +x_402 = lean_unbox(x_40); +x_403 = lean_unbox(x_40); +x_404 = l_Lean_Expr_betaRev(x_21, x_401, x_402, x_403); +lean_dec_ref(x_401); +lean_inc(x_393); +x_405 = l_Lean_mkLambda(x_395, x_396, x_393, x_404); +x_406 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_405, x_7); +if (lean_obj_tag(x_406) == 0) +{ +lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; uint8_t x_412; uint8_t x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; +x_407 = lean_ctor_get(x_406, 0); +lean_inc(x_407); +lean_dec_ref(x_406); +lean_inc(x_393); +x_408 = l_Lean_mkNot(x_393); +x_409 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_391); +lean_inc(x_393); +x_410 = l_Lean_mkApp4(x_409, x_26, x_393, x_391, x_398); +x_411 = lean_array_push(x_400, x_410); +x_412 = lean_unbox(x_40); +x_413 = lean_unbox(x_40); +x_414 = l_Lean_Expr_betaRev(x_18, x_411, x_412, x_413); +lean_dec_ref(x_411); +x_415 = l_Lean_mkLambda(x_395, x_396, x_408, x_414); +x_416 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_415, x_7); +if (lean_obj_tag(x_416) == 0) +{ +lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; +x_417 = lean_ctor_get(x_416, 0); +lean_inc(x_417); +lean_dec_ref(x_416); +x_418 = lean_unsigned_to_nat(4u); +x_419 = l_Lean_Expr_getBoundedAppFn(x_418, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_417); +lean_inc(x_407); +lean_inc(x_393); +x_420 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_419, x_393, x_394, x_407, x_417, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_420) == 0) +{ +lean_object* x_421; lean_object* x_422; uint8_t x_423; uint8_t x_424; lean_object* x_425; lean_object* x_426; +x_421 = lean_ctor_get(x_420, 0); +lean_inc(x_421); +lean_dec_ref(x_420); +x_422 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +x_423 = lean_unbox(x_40); +x_424 = lean_unbox(x_40); +lean_inc(x_407); +x_425 = l_Lean_Expr_betaRev(x_407, x_422, x_423, x_424); +x_426 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_425, x_7); +if (lean_obj_tag(x_426) == 0) +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; +x_427 = lean_ctor_get(x_426, 0); +lean_inc(x_427); +lean_dec_ref(x_426); +x_428 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_429 = l_Lean_Expr_replaceFn(x_2, x_428); +x_430 = l_Lean_mkApp3(x_429, x_393, x_394, x_391); +x_431 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_432 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_433 = l_Lean_mkConst(x_431, x_432); +x_434 = l_Lean_mkApp3(x_433, x_29, x_407, x_417); +lean_inc(x_427); +x_435 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_421, x_430, x_427, x_434, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_435) == 0) +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; lean_object* x_440; +x_436 = lean_ctor_get(x_435, 0); +lean_inc(x_436); +if (lean_is_exclusive(x_435)) { + lean_ctor_release(x_435, 0); + x_437 = x_435; +} else { + lean_dec_ref(x_435); + x_437 = lean_box(0); +} +x_438 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_438, 0, x_427); +lean_ctor_set(x_438, 1, x_436); +x_439 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_438, sizeof(void*)*2, x_439); +if (lean_is_scalar(x_437)) { + x_440 = lean_alloc_ctor(0, 1, 0); +} else { + x_440 = x_437; +} +lean_ctor_set(x_440, 0, x_438); +return x_440; +} +else +{ +lean_object* x_441; lean_object* x_442; lean_object* x_443; +lean_dec(x_427); +lean_dec(x_40); +x_441 = lean_ctor_get(x_435, 0); +lean_inc(x_441); +if (lean_is_exclusive(x_435)) { + lean_ctor_release(x_435, 0); + x_442 = x_435; +} else { + lean_dec_ref(x_435); + x_442 = lean_box(0); +} +if (lean_is_scalar(x_442)) { + x_443 = lean_alloc_ctor(1, 1, 0); +} else { + x_443 = x_442; +} +lean_ctor_set(x_443, 0, x_441); +return x_443; +} +} +else +{ +lean_object* x_444; lean_object* x_445; lean_object* x_446; +lean_dec(x_421); +lean_dec(x_417); +lean_dec(x_407); +lean_dec(x_393); +lean_dec(x_391); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_444 = lean_ctor_get(x_426, 0); +lean_inc(x_444); +if (lean_is_exclusive(x_426)) { + lean_ctor_release(x_426, 0); + x_445 = x_426; +} else { + lean_dec_ref(x_426); + x_445 = lean_box(0); +} +if (lean_is_scalar(x_445)) { + x_446 = lean_alloc_ctor(1, 1, 0); +} else { + x_446 = x_445; +} +lean_ctor_set(x_446, 0, x_444); +return x_446; +} +} +else +{ +lean_object* x_447; lean_object* x_448; lean_object* x_449; +lean_dec(x_417); +lean_dec(x_407); +lean_dec(x_393); +lean_dec(x_391); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_447 = lean_ctor_get(x_420, 0); +lean_inc(x_447); +if (lean_is_exclusive(x_420)) { + lean_ctor_release(x_420, 0); + x_448 = x_420; +} else { + lean_dec_ref(x_420); + x_448 = lean_box(0); +} +if (lean_is_scalar(x_448)) { + x_449 = lean_alloc_ctor(1, 1, 0); +} else { + x_449 = x_448; +} +lean_ctor_set(x_449, 0, x_447); +return x_449; +} +} +else +{ +lean_object* x_450; lean_object* x_451; lean_object* x_452; +lean_dec(x_407); +lean_dec(x_393); +lean_dec(x_391); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_450 = lean_ctor_get(x_416, 0); +lean_inc(x_450); +if (lean_is_exclusive(x_416)) { + lean_ctor_release(x_416, 0); + x_451 = x_416; +} else { + lean_dec_ref(x_416); + x_451 = lean_box(0); +} +if (lean_is_scalar(x_451)) { + x_452 = lean_alloc_ctor(1, 1, 0); +} else { + x_452 = x_451; +} +lean_ctor_set(x_452, 0, x_450); +return x_452; +} +} +else +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; +lean_dec(x_393); +lean_dec(x_391); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_453 = lean_ctor_get(x_406, 0); +lean_inc(x_453); +if (lean_is_exclusive(x_406)) { + lean_ctor_release(x_406, 0); + x_454 = x_406; +} else { + lean_dec_ref(x_406); + x_454 = lean_box(0); +} +if (lean_is_scalar(x_454)) { + x_455 = lean_alloc_ctor(1, 1, 0); +} else { + x_455 = x_454; +} +lean_ctor_set(x_455, 0, x_453); +return x_455; +} +} +else +{ +lean_object* x_456; lean_object* x_457; lean_object* x_458; +lean_dec(x_391); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_456 = lean_ctor_get(x_392, 0); +lean_inc(x_456); +if (lean_is_exclusive(x_392)) { + lean_ctor_release(x_392, 0); + x_457 = x_392; +} else { + lean_dec_ref(x_392); + x_457 = lean_box(0); +} +if (lean_is_scalar(x_457)) { + x_458 = lean_alloc_ctor(1, 1, 0); +} else { + x_458 = x_457; +} +lean_ctor_set(x_458, 0, x_456); +return x_458; +} +} +else +{ +lean_object* x_459; lean_object* x_460; lean_object* x_461; +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_459 = lean_ctor_get(x_390, 0); +lean_inc(x_459); +if (lean_is_exclusive(x_390)) { + lean_ctor_release(x_390, 0); + x_460 = x_390; +} else { + lean_dec_ref(x_390); + x_460 = lean_box(0); +} +if (lean_is_scalar(x_460)) { + x_461 = lean_alloc_ctor(1, 1, 0); +} else { + x_461 = x_460; +} +lean_ctor_set(x_461, 0, x_459); +return x_461; +} +} +} +else +{ +lean_object* x_462; lean_object* x_463; lean_object* x_464; +lean_dec_ref(x_302); +lean_dec_ref(x_301); +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_462 = lean_ctor_get(x_303, 0); +lean_inc(x_462); +if (lean_is_exclusive(x_303)) { + lean_ctor_release(x_303, 0); + x_463 = x_303; +} else { + lean_dec_ref(x_303); + x_463 = lean_box(0); +} +if (lean_is_scalar(x_463)) { + x_464 = lean_alloc_ctor(1, 1, 0); +} else { + x_464 = x_463; +} +lean_ctor_set(x_464, 0, x_462); +return x_464; +} +} +} +} +else +{ +lean_object* x_465; +x_465 = lean_ctor_get(x_54, 0); +lean_inc(x_465); +lean_dec(x_54); +if (lean_obj_tag(x_465) == 0) +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_465)) { + x_466 = x_465; +} else { + lean_dec_ref(x_465); + x_466 = lean_box(0); +} +if (lean_is_scalar(x_466)) { + x_467 = lean_alloc_ctor(0, 0, 1); +} else { + x_467 = x_466; +} +lean_ctor_set_uint8(x_467, 0, x_32); +x_468 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_468, 0, x_467); +return x_468; +} +else +{ +lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; +x_469 = lean_ctor_get(x_465, 0); +lean_inc_ref(x_469); +x_470 = lean_ctor_get(x_465, 1); +lean_inc_ref(x_470); +if (lean_is_exclusive(x_465)) { + lean_ctor_release(x_465, 0); + lean_ctor_release(x_465, 1); + x_471 = x_465; +} else { + lean_dec_ref(x_465); + x_471 = lean_box(0); +} +x_472 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_469, x_6); +if (lean_obj_tag(x_472) == 0) +{ +lean_object* x_473; uint8_t x_474; +x_473 = lean_ctor_get(x_472, 0); +lean_inc(x_473); +lean_dec_ref(x_472); +x_474 = lean_unbox(x_473); +if (x_474 == 0) +{ +lean_object* x_475; +lean_dec(x_40); +x_475 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_469, x_6); +lean_dec_ref(x_469); +if (lean_obj_tag(x_475) == 0) +{ +lean_object* x_476; lean_object* x_477; uint8_t x_478; +x_476 = lean_ctor_get(x_475, 0); +lean_inc(x_476); +if (lean_is_exclusive(x_475)) { + lean_ctor_release(x_475, 0); + x_477 = x_475; +} else { + lean_dec_ref(x_475); + x_477 = lean_box(0); +} +x_478 = lean_unbox(x_476); +lean_dec(x_476); +if (x_478 == 0) +{ +lean_object* x_479; +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_470); +lean_dec(x_50); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_477)) { + x_479 = lean_alloc_ctor(0, 1, 0); +} else { + x_479 = x_477; +} +lean_ctor_set(x_479, 0, x_34); +return x_479; +} +else +{ +lean_object* x_480; lean_object* x_481; lean_object* x_482; +lean_dec(x_477); +lean_free_object(x_34); +x_480 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_481 = l_Lean_mkApp3(x_480, x_26, x_50, x_470); +x_482 = l_Lean_Meta_Sym_shareCommon___redArg(x_481, x_7); +if (lean_obj_tag(x_482) == 0) +{ +lean_object* x_483; lean_object* x_484; +x_483 = lean_ctor_get(x_482, 0); +lean_inc(x_483); +lean_dec_ref(x_482); +x_484 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_484) == 0) +{ +lean_object* x_485; lean_object* x_486; lean_object* x_487; uint8_t x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; uint8_t x_494; uint8_t x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; +x_485 = lean_ctor_get(x_484, 0); +lean_inc(x_485); +lean_dec_ref(x_484); +x_486 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_487 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_488 = 0; +x_489 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_490 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_483); +lean_inc(x_485); +lean_inc_ref(x_26); +x_491 = l_Lean_mkApp4(x_489, x_26, x_485, x_483, x_490); +x_492 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_493 = lean_array_push(x_492, x_491); +x_494 = lean_unbox(x_473); +x_495 = lean_unbox(x_473); +x_496 = l_Lean_Expr_betaRev(x_21, x_493, x_494, x_495); +lean_dec_ref(x_493); +lean_inc(x_485); +x_497 = l_Lean_mkLambda(x_487, x_488, x_485, x_496); +x_498 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_497, x_7); +if (lean_obj_tag(x_498) == 0) +{ +lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; uint8_t x_504; uint8_t x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; +x_499 = lean_ctor_get(x_498, 0); +lean_inc(x_499); +lean_dec_ref(x_498); +lean_inc(x_485); +x_500 = l_Lean_mkNot(x_485); +x_501 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_483); +lean_inc(x_485); +x_502 = l_Lean_mkApp4(x_501, x_26, x_485, x_483, x_490); +x_503 = lean_array_push(x_492, x_502); +x_504 = lean_unbox(x_473); +x_505 = lean_unbox(x_473); +x_506 = l_Lean_Expr_betaRev(x_18, x_503, x_504, x_505); +lean_dec_ref(x_503); +x_507 = l_Lean_mkLambda(x_487, x_488, x_500, x_506); +x_508 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_507, x_7); +if (lean_obj_tag(x_508) == 0) +{ +lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; +x_509 = lean_ctor_get(x_508, 0); +lean_inc(x_509); +lean_dec_ref(x_508); +x_510 = lean_unsigned_to_nat(4u); +x_511 = l_Lean_Expr_getBoundedAppFn(x_510, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_509); +lean_inc(x_499); +lean_inc(x_485); +x_512 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_511, x_485, x_486, x_499, x_509, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_512) == 0) +{ +lean_object* x_513; lean_object* x_514; uint8_t x_515; uint8_t x_516; lean_object* x_517; lean_object* x_518; +x_513 = lean_ctor_get(x_512, 0); +lean_inc(x_513); +lean_dec_ref(x_512); +x_514 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_515 = lean_unbox(x_473); +x_516 = lean_unbox(x_473); +lean_inc(x_509); +x_517 = l_Lean_Expr_betaRev(x_509, x_514, x_515, x_516); +x_518 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_517, x_7); +if (lean_obj_tag(x_518) == 0) +{ +lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; +x_519 = lean_ctor_get(x_518, 0); +lean_inc(x_519); +lean_dec_ref(x_518); +x_520 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_521 = l_Lean_Expr_replaceFn(x_2, x_520); +x_522 = l_Lean_mkApp3(x_521, x_485, x_486, x_483); +x_523 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_524 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_525 = l_Lean_mkConst(x_523, x_524); +x_526 = l_Lean_mkApp3(x_525, x_29, x_499, x_509); +lean_inc(x_519); +x_527 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_513, x_522, x_519, x_526, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_527) == 0) +{ +lean_object* x_528; lean_object* x_529; lean_object* x_530; uint8_t x_531; lean_object* x_532; +x_528 = lean_ctor_get(x_527, 0); +lean_inc(x_528); +if (lean_is_exclusive(x_527)) { + lean_ctor_release(x_527, 0); + x_529 = x_527; +} else { + lean_dec_ref(x_527); + x_529 = lean_box(0); +} +if (lean_is_scalar(x_471)) { + x_530 = lean_alloc_ctor(1, 2, 1); +} else { + x_530 = x_471; +} +lean_ctor_set(x_530, 0, x_519); +lean_ctor_set(x_530, 1, x_528); +x_531 = lean_unbox(x_473); +lean_dec(x_473); +lean_ctor_set_uint8(x_530, sizeof(void*)*2, x_531); +if (lean_is_scalar(x_529)) { + x_532 = lean_alloc_ctor(0, 1, 0); +} else { + x_532 = x_529; +} +lean_ctor_set(x_532, 0, x_530); +return x_532; +} +else +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; +lean_dec(x_519); +lean_dec(x_473); +lean_dec(x_471); +x_533 = lean_ctor_get(x_527, 0); +lean_inc(x_533); +if (lean_is_exclusive(x_527)) { + lean_ctor_release(x_527, 0); + x_534 = x_527; +} else { + lean_dec_ref(x_527); + x_534 = lean_box(0); +} +if (lean_is_scalar(x_534)) { + x_535 = lean_alloc_ctor(1, 1, 0); +} else { + x_535 = x_534; +} +lean_ctor_set(x_535, 0, x_533); +return x_535; +} +} +else +{ +lean_object* x_536; lean_object* x_537; lean_object* x_538; +lean_dec(x_513); +lean_dec(x_509); +lean_dec(x_499); +lean_dec(x_485); +lean_dec(x_483); +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_536 = lean_ctor_get(x_518, 0); +lean_inc(x_536); +if (lean_is_exclusive(x_518)) { + lean_ctor_release(x_518, 0); + x_537 = x_518; +} else { + lean_dec_ref(x_518); + x_537 = lean_box(0); +} +if (lean_is_scalar(x_537)) { + x_538 = lean_alloc_ctor(1, 1, 0); +} else { + x_538 = x_537; +} +lean_ctor_set(x_538, 0, x_536); +return x_538; +} +} +else +{ +lean_object* x_539; lean_object* x_540; lean_object* x_541; +lean_dec(x_509); +lean_dec(x_499); +lean_dec(x_485); +lean_dec(x_483); +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_539 = lean_ctor_get(x_512, 0); +lean_inc(x_539); +if (lean_is_exclusive(x_512)) { + lean_ctor_release(x_512, 0); + x_540 = x_512; +} else { + lean_dec_ref(x_512); + x_540 = lean_box(0); +} +if (lean_is_scalar(x_540)) { + x_541 = lean_alloc_ctor(1, 1, 0); +} else { + x_541 = x_540; +} +lean_ctor_set(x_541, 0, x_539); +return x_541; +} +} +else +{ +lean_object* x_542; lean_object* x_543; lean_object* x_544; +lean_dec(x_499); +lean_dec(x_485); +lean_dec(x_483); +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_542 = lean_ctor_get(x_508, 0); +lean_inc(x_542); +if (lean_is_exclusive(x_508)) { + lean_ctor_release(x_508, 0); + x_543 = x_508; +} else { + lean_dec_ref(x_508); + x_543 = lean_box(0); +} +if (lean_is_scalar(x_543)) { + x_544 = lean_alloc_ctor(1, 1, 0); +} else { + x_544 = x_543; +} +lean_ctor_set(x_544, 0, x_542); +return x_544; +} +} +else +{ +lean_object* x_545; lean_object* x_546; lean_object* x_547; +lean_dec(x_485); +lean_dec(x_483); +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_545 = lean_ctor_get(x_498, 0); +lean_inc(x_545); +if (lean_is_exclusive(x_498)) { + lean_ctor_release(x_498, 0); + x_546 = x_498; +} else { + lean_dec_ref(x_498); + x_546 = lean_box(0); +} +if (lean_is_scalar(x_546)) { + x_547 = lean_alloc_ctor(1, 1, 0); +} else { + x_547 = x_546; +} +lean_ctor_set(x_547, 0, x_545); +return x_547; +} +} +else +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; +lean_dec(x_483); +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_548 = lean_ctor_get(x_484, 0); +lean_inc(x_548); +if (lean_is_exclusive(x_484)) { + lean_ctor_release(x_484, 0); + x_549 = x_484; +} else { + lean_dec_ref(x_484); + x_549 = lean_box(0); +} +if (lean_is_scalar(x_549)) { + x_550 = lean_alloc_ctor(1, 1, 0); +} else { + x_550 = x_549; +} +lean_ctor_set(x_550, 0, x_548); +return x_550; +} +} +else +{ +lean_object* x_551; lean_object* x_552; lean_object* x_553; +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_551 = lean_ctor_get(x_482, 0); +lean_inc(x_551); +if (lean_is_exclusive(x_482)) { + lean_ctor_release(x_482, 0); + x_552 = x_482; +} else { + lean_dec_ref(x_482); + x_552 = lean_box(0); +} +if (lean_is_scalar(x_552)) { + x_553 = lean_alloc_ctor(1, 1, 0); +} else { + x_553 = x_552; +} +lean_ctor_set(x_553, 0, x_551); +return x_553; +} +} +} +else +{ +lean_object* x_554; lean_object* x_555; lean_object* x_556; +lean_dec(x_473); +lean_dec(x_471); +lean_dec_ref(x_470); +lean_dec(x_50); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_554 = lean_ctor_get(x_475, 0); +lean_inc(x_554); +if (lean_is_exclusive(x_475)) { + lean_ctor_release(x_475, 0); + x_555 = x_475; +} else { + lean_dec_ref(x_475); + x_555 = lean_box(0); +} +if (lean_is_scalar(x_555)) { + x_556 = lean_alloc_ctor(1, 1, 0); +} else { + x_556 = x_555; +} +lean_ctor_set(x_556, 0, x_554); +return x_556; +} +} +else +{ +lean_object* x_557; lean_object* x_558; lean_object* x_559; +lean_dec(x_473); +lean_dec_ref(x_469); +lean_free_object(x_34); +x_557 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +lean_inc_ref(x_26); +x_558 = l_Lean_mkApp3(x_557, x_26, x_50, x_470); +x_559 = l_Lean_Meta_Sym_shareCommon___redArg(x_558, x_7); +if (lean_obj_tag(x_559) == 0) +{ +lean_object* x_560; lean_object* x_561; +x_560 = lean_ctor_get(x_559, 0); +lean_inc(x_560); +lean_dec_ref(x_559); +x_561 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_561) == 0) +{ +lean_object* x_562; lean_object* x_563; lean_object* x_564; uint8_t x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; uint8_t x_571; uint8_t x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; +x_562 = lean_ctor_get(x_561, 0); +lean_inc(x_562); +lean_dec_ref(x_561); +x_563 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_564 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_565 = 0; +x_566 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_567 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_560); +lean_inc(x_562); +lean_inc_ref(x_26); +x_568 = l_Lean_mkApp4(x_566, x_26, x_562, x_560, x_567); +x_569 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_570 = lean_array_push(x_569, x_568); +x_571 = lean_unbox(x_40); +x_572 = lean_unbox(x_40); +x_573 = l_Lean_Expr_betaRev(x_21, x_570, x_571, x_572); +lean_dec_ref(x_570); +lean_inc(x_562); +x_574 = l_Lean_mkLambda(x_564, x_565, x_562, x_573); +x_575 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_574, x_7); +if (lean_obj_tag(x_575) == 0) +{ +lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; uint8_t x_581; uint8_t x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; +x_576 = lean_ctor_get(x_575, 0); +lean_inc(x_576); +lean_dec_ref(x_575); +lean_inc(x_562); +x_577 = l_Lean_mkNot(x_562); +x_578 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_560); +lean_inc(x_562); +x_579 = l_Lean_mkApp4(x_578, x_26, x_562, x_560, x_567); +x_580 = lean_array_push(x_569, x_579); +x_581 = lean_unbox(x_40); +x_582 = lean_unbox(x_40); +x_583 = l_Lean_Expr_betaRev(x_18, x_580, x_581, x_582); +lean_dec_ref(x_580); +x_584 = l_Lean_mkLambda(x_564, x_565, x_577, x_583); +x_585 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_584, x_7); +if (lean_obj_tag(x_585) == 0) +{ +lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; +x_586 = lean_ctor_get(x_585, 0); +lean_inc(x_586); +lean_dec_ref(x_585); +x_587 = lean_unsigned_to_nat(4u); +x_588 = l_Lean_Expr_getBoundedAppFn(x_587, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_586); +lean_inc(x_576); +lean_inc(x_562); +x_589 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_588, x_562, x_563, x_576, x_586, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_589) == 0) +{ +lean_object* x_590; lean_object* x_591; uint8_t x_592; uint8_t x_593; lean_object* x_594; lean_object* x_595; +x_590 = lean_ctor_get(x_589, 0); +lean_inc(x_590); +lean_dec_ref(x_589); +x_591 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +x_592 = lean_unbox(x_40); +x_593 = lean_unbox(x_40); +lean_inc(x_576); +x_594 = l_Lean_Expr_betaRev(x_576, x_591, x_592, x_593); +x_595 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_594, x_7); +if (lean_obj_tag(x_595) == 0) +{ +lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; +x_596 = lean_ctor_get(x_595, 0); +lean_inc(x_596); +lean_dec_ref(x_595); +x_597 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_598 = l_Lean_Expr_replaceFn(x_2, x_597); +x_599 = l_Lean_mkApp3(x_598, x_562, x_563, x_560); +x_600 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_601 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_602 = l_Lean_mkConst(x_600, x_601); +x_603 = l_Lean_mkApp3(x_602, x_29, x_576, x_586); +lean_inc(x_596); +x_604 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_590, x_599, x_596, x_603, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_604) == 0) +{ +lean_object* x_605; lean_object* x_606; lean_object* x_607; uint8_t x_608; lean_object* x_609; +x_605 = lean_ctor_get(x_604, 0); +lean_inc(x_605); +if (lean_is_exclusive(x_604)) { + lean_ctor_release(x_604, 0); + x_606 = x_604; +} else { + lean_dec_ref(x_604); + x_606 = lean_box(0); +} +if (lean_is_scalar(x_471)) { + x_607 = lean_alloc_ctor(1, 2, 1); +} else { + x_607 = x_471; +} +lean_ctor_set(x_607, 0, x_596); +lean_ctor_set(x_607, 1, x_605); +x_608 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_607, sizeof(void*)*2, x_608); +if (lean_is_scalar(x_606)) { + x_609 = lean_alloc_ctor(0, 1, 0); +} else { + x_609 = x_606; +} +lean_ctor_set(x_609, 0, x_607); +return x_609; +} +else +{ +lean_object* x_610; lean_object* x_611; lean_object* x_612; +lean_dec(x_596); +lean_dec(x_471); +lean_dec(x_40); +x_610 = lean_ctor_get(x_604, 0); +lean_inc(x_610); +if (lean_is_exclusive(x_604)) { + lean_ctor_release(x_604, 0); + x_611 = x_604; +} else { + lean_dec_ref(x_604); + x_611 = lean_box(0); +} +if (lean_is_scalar(x_611)) { + x_612 = lean_alloc_ctor(1, 1, 0); +} else { + x_612 = x_611; +} +lean_ctor_set(x_612, 0, x_610); +return x_612; +} +} +else +{ +lean_object* x_613; lean_object* x_614; lean_object* x_615; +lean_dec(x_590); +lean_dec(x_586); +lean_dec(x_576); +lean_dec(x_562); +lean_dec(x_560); +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_613 = lean_ctor_get(x_595, 0); +lean_inc(x_613); +if (lean_is_exclusive(x_595)) { + lean_ctor_release(x_595, 0); + x_614 = x_595; +} else { + lean_dec_ref(x_595); + x_614 = lean_box(0); +} +if (lean_is_scalar(x_614)) { + x_615 = lean_alloc_ctor(1, 1, 0); +} else { + x_615 = x_614; +} +lean_ctor_set(x_615, 0, x_613); +return x_615; +} +} +else +{ +lean_object* x_616; lean_object* x_617; lean_object* x_618; +lean_dec(x_586); +lean_dec(x_576); +lean_dec(x_562); +lean_dec(x_560); +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_616 = lean_ctor_get(x_589, 0); +lean_inc(x_616); +if (lean_is_exclusive(x_589)) { + lean_ctor_release(x_589, 0); + x_617 = x_589; +} else { + lean_dec_ref(x_589); + x_617 = lean_box(0); +} +if (lean_is_scalar(x_617)) { + x_618 = lean_alloc_ctor(1, 1, 0); +} else { + x_618 = x_617; +} +lean_ctor_set(x_618, 0, x_616); +return x_618; +} +} +else +{ +lean_object* x_619; lean_object* x_620; lean_object* x_621; +lean_dec(x_576); +lean_dec(x_562); +lean_dec(x_560); +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_619 = lean_ctor_get(x_585, 0); +lean_inc(x_619); +if (lean_is_exclusive(x_585)) { + lean_ctor_release(x_585, 0); + x_620 = x_585; +} else { + lean_dec_ref(x_585); + x_620 = lean_box(0); +} +if (lean_is_scalar(x_620)) { + x_621 = lean_alloc_ctor(1, 1, 0); +} else { + x_621 = x_620; +} +lean_ctor_set(x_621, 0, x_619); +return x_621; +} +} +else +{ +lean_object* x_622; lean_object* x_623; lean_object* x_624; +lean_dec(x_562); +lean_dec(x_560); +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_622 = lean_ctor_get(x_575, 0); +lean_inc(x_622); +if (lean_is_exclusive(x_575)) { + lean_ctor_release(x_575, 0); + x_623 = x_575; +} else { + lean_dec_ref(x_575); + x_623 = lean_box(0); +} +if (lean_is_scalar(x_623)) { + x_624 = lean_alloc_ctor(1, 1, 0); +} else { + x_624 = x_623; +} +lean_ctor_set(x_624, 0, x_622); +return x_624; +} +} +else +{ +lean_object* x_625; lean_object* x_626; lean_object* x_627; +lean_dec(x_560); +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_625 = lean_ctor_get(x_561, 0); +lean_inc(x_625); +if (lean_is_exclusive(x_561)) { + lean_ctor_release(x_561, 0); + x_626 = x_561; +} else { + lean_dec_ref(x_561); + x_626 = lean_box(0); +} +if (lean_is_scalar(x_626)) { + x_627 = lean_alloc_ctor(1, 1, 0); +} else { + x_627 = x_626; +} +lean_ctor_set(x_627, 0, x_625); +return x_627; +} +} +else +{ +lean_object* x_628; lean_object* x_629; lean_object* x_630; +lean_dec(x_471); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_628 = lean_ctor_get(x_559, 0); +lean_inc(x_628); +if (lean_is_exclusive(x_559)) { + lean_ctor_release(x_559, 0); + x_629 = x_559; +} else { + lean_dec_ref(x_559); + x_629 = lean_box(0); +} +if (lean_is_scalar(x_629)) { + x_630 = lean_alloc_ctor(1, 1, 0); +} else { + x_630 = x_629; +} +lean_ctor_set(x_630, 0, x_628); +return x_630; +} +} +} +else +{ +lean_object* x_631; lean_object* x_632; lean_object* x_633; +lean_dec(x_471); +lean_dec_ref(x_470); +lean_dec_ref(x_469); +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_631 = lean_ctor_get(x_472, 0); +lean_inc(x_631); +if (lean_is_exclusive(x_472)) { + lean_ctor_release(x_472, 0); + x_632 = x_472; +} else { + lean_dec_ref(x_472); + x_632 = lean_box(0); +} +if (lean_is_scalar(x_632)) { + x_633 = lean_alloc_ctor(1, 1, 0); +} else { + x_633 = x_632; +} +lean_ctor_set(x_633, 0, x_631); +return x_633; +} +} +} +} +else +{ +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_54; +} +} +else +{ +uint8_t x_634; +lean_dec(x_50); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_634 = !lean_is_exclusive(x_52); +if (x_634 == 0) +{ +return x_52; +} +else +{ +lean_object* x_635; lean_object* x_636; +x_635 = lean_ctor_get(x_52, 0); +lean_inc(x_635); +lean_dec(x_52); +x_636 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_636, 0, x_635); +return x_636; +} +} +} +else +{ +uint8_t x_637; +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_637 = !lean_is_exclusive(x_49); +if (x_637 == 0) +{ +return x_49; +} +else +{ +lean_object* x_638; lean_object* x_639; +x_638 = lean_ctor_get(x_49, 0); +lean_inc(x_638); +lean_dec(x_49); +x_639 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_639, 0, x_638); +return x_639; +} +} +} +else +{ +uint8_t x_640; +lean_dec(x_47); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_640 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_34, 0, x_640); +lean_ctor_set(x_45, 0, x_34); +return x_45; +} +} +else +{ +lean_object* x_641; +x_641 = lean_ctor_get(x_45, 0); +lean_inc(x_641); +lean_dec(x_45); +if (lean_obj_tag(x_641) == 1) +{ +lean_object* x_642; lean_object* x_643; +x_642 = lean_ctor_get(x_641, 0); +lean_inc(x_642); +lean_dec_ref(x_641); +x_643 = l_Lean_Meta_Sym_shareCommon___redArg(x_642, x_7); +if (lean_obj_tag(x_643) == 0) +{ +lean_object* x_644; lean_object* x_645; lean_object* x_646; +x_644 = lean_ctor_get(x_643, 0); +lean_inc(x_644); +lean_dec_ref(x_643); +x_645 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_644); +lean_inc_ref(x_26); +x_646 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_645, x_26, x_644, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_646) == 0) +{ +lean_object* x_647; lean_object* x_648; +x_647 = lean_ctor_get(x_646, 0); +lean_inc(x_647); +lean_dec_ref(x_646); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_648 = lean_sym_simp(x_647, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_648) == 0) +{ +lean_object* x_649; lean_object* x_650; +x_649 = lean_ctor_get(x_648, 0); +lean_inc(x_649); +if (lean_is_exclusive(x_648)) { + lean_ctor_release(x_648, 0); + x_650 = x_648; +} else { + lean_dec_ref(x_648); + x_650 = lean_box(0); +} +if (lean_obj_tag(x_649) == 0) +{ +lean_object* x_651; lean_object* x_652; lean_object* x_653; +lean_dec(x_644); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_649)) { + x_651 = x_649; +} else { + lean_dec_ref(x_649); + x_651 = lean_box(0); +} +if (lean_is_scalar(x_651)) { + x_652 = lean_alloc_ctor(0, 0, 1); +} else { + x_652 = x_651; +} +lean_ctor_set_uint8(x_652, 0, x_32); +if (lean_is_scalar(x_650)) { + x_653 = lean_alloc_ctor(0, 1, 0); +} else { + x_653 = x_650; +} +lean_ctor_set(x_653, 0, x_652); +return x_653; +} +else +{ +lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; +lean_dec(x_650); +x_654 = lean_ctor_get(x_649, 0); +lean_inc_ref(x_654); +x_655 = lean_ctor_get(x_649, 1); +lean_inc_ref(x_655); +if (lean_is_exclusive(x_649)) { + lean_ctor_release(x_649, 0); + lean_ctor_release(x_649, 1); + x_656 = x_649; +} else { + lean_dec_ref(x_649); + x_656 = lean_box(0); +} +x_657 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_654, x_6); +if (lean_obj_tag(x_657) == 0) +{ +lean_object* x_658; uint8_t x_659; +x_658 = lean_ctor_get(x_657, 0); +lean_inc(x_658); +lean_dec_ref(x_657); +x_659 = lean_unbox(x_658); +if (x_659 == 0) +{ +lean_object* x_660; +lean_dec(x_40); +x_660 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_654, x_6); +lean_dec_ref(x_654); +if (lean_obj_tag(x_660) == 0) +{ +lean_object* x_661; lean_object* x_662; uint8_t x_663; +x_661 = lean_ctor_get(x_660, 0); +lean_inc(x_661); +if (lean_is_exclusive(x_660)) { + lean_ctor_release(x_660, 0); + x_662 = x_660; +} else { + lean_dec_ref(x_660); + x_662 = lean_box(0); +} +x_663 = lean_unbox(x_661); +lean_dec(x_661); +if (x_663 == 0) +{ +lean_object* x_664; +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_644); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_ctor_set_uint8(x_34, 0, x_32); +if (lean_is_scalar(x_662)) { + x_664 = lean_alloc_ctor(0, 1, 0); +} else { + x_664 = x_662; +} +lean_ctor_set(x_664, 0, x_34); +return x_664; +} +else +{ +lean_object* x_665; lean_object* x_666; lean_object* x_667; +lean_dec(x_662); +lean_free_object(x_34); +x_665 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_666 = l_Lean_mkApp3(x_665, x_26, x_644, x_655); +x_667 = l_Lean_Meta_Sym_shareCommon___redArg(x_666, x_7); +if (lean_obj_tag(x_667) == 0) +{ +lean_object* x_668; lean_object* x_669; +x_668 = lean_ctor_get(x_667, 0); +lean_inc(x_668); +lean_dec_ref(x_667); +x_669 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_669) == 0) +{ +lean_object* x_670; lean_object* x_671; lean_object* x_672; uint8_t x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; uint8_t x_679; uint8_t x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; +x_670 = lean_ctor_get(x_669, 0); +lean_inc(x_670); +lean_dec_ref(x_669); +x_671 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_672 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_673 = 0; +x_674 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_675 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_668); +lean_inc(x_670); +lean_inc_ref(x_26); +x_676 = l_Lean_mkApp4(x_674, x_26, x_670, x_668, x_675); +x_677 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_678 = lean_array_push(x_677, x_676); +x_679 = lean_unbox(x_658); +x_680 = lean_unbox(x_658); +x_681 = l_Lean_Expr_betaRev(x_21, x_678, x_679, x_680); +lean_dec_ref(x_678); +lean_inc(x_670); +x_682 = l_Lean_mkLambda(x_672, x_673, x_670, x_681); +x_683 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_682, x_7); +if (lean_obj_tag(x_683) == 0) +{ +lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; uint8_t x_689; uint8_t x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; +x_684 = lean_ctor_get(x_683, 0); +lean_inc(x_684); +lean_dec_ref(x_683); +lean_inc(x_670); +x_685 = l_Lean_mkNot(x_670); +x_686 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_668); +lean_inc(x_670); +x_687 = l_Lean_mkApp4(x_686, x_26, x_670, x_668, x_675); +x_688 = lean_array_push(x_677, x_687); +x_689 = lean_unbox(x_658); +x_690 = lean_unbox(x_658); +x_691 = l_Lean_Expr_betaRev(x_18, x_688, x_689, x_690); +lean_dec_ref(x_688); +x_692 = l_Lean_mkLambda(x_672, x_673, x_685, x_691); +x_693 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_692, x_7); +if (lean_obj_tag(x_693) == 0) +{ +lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; +x_694 = lean_ctor_get(x_693, 0); +lean_inc(x_694); +lean_dec_ref(x_693); +x_695 = lean_unsigned_to_nat(4u); +x_696 = l_Lean_Expr_getBoundedAppFn(x_695, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_694); +lean_inc(x_684); +lean_inc(x_670); +x_697 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_696, x_670, x_671, x_684, x_694, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_697) == 0) +{ +lean_object* x_698; lean_object* x_699; uint8_t x_700; uint8_t x_701; lean_object* x_702; lean_object* x_703; +x_698 = lean_ctor_get(x_697, 0); +lean_inc(x_698); +lean_dec_ref(x_697); +x_699 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_700 = lean_unbox(x_658); +x_701 = lean_unbox(x_658); +lean_inc(x_694); +x_702 = l_Lean_Expr_betaRev(x_694, x_699, x_700, x_701); +x_703 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_702, x_7); +if (lean_obj_tag(x_703) == 0) +{ +lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; +x_704 = lean_ctor_get(x_703, 0); +lean_inc(x_704); +lean_dec_ref(x_703); +x_705 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_706 = l_Lean_Expr_replaceFn(x_2, x_705); +x_707 = l_Lean_mkApp3(x_706, x_670, x_671, x_668); +x_708 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_709 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_710 = l_Lean_mkConst(x_708, x_709); +x_711 = l_Lean_mkApp3(x_710, x_29, x_684, x_694); +lean_inc(x_704); +x_712 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_698, x_707, x_704, x_711, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_712) == 0) +{ +lean_object* x_713; lean_object* x_714; lean_object* x_715; uint8_t x_716; lean_object* x_717; +x_713 = lean_ctor_get(x_712, 0); +lean_inc(x_713); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + x_714 = x_712; +} else { + lean_dec_ref(x_712); + x_714 = lean_box(0); +} +if (lean_is_scalar(x_656)) { + x_715 = lean_alloc_ctor(1, 2, 1); +} else { + x_715 = x_656; +} +lean_ctor_set(x_715, 0, x_704); +lean_ctor_set(x_715, 1, x_713); +x_716 = lean_unbox(x_658); +lean_dec(x_658); +lean_ctor_set_uint8(x_715, sizeof(void*)*2, x_716); +if (lean_is_scalar(x_714)) { + x_717 = lean_alloc_ctor(0, 1, 0); +} else { + x_717 = x_714; +} +lean_ctor_set(x_717, 0, x_715); +return x_717; +} +else +{ +lean_object* x_718; lean_object* x_719; lean_object* x_720; +lean_dec(x_704); +lean_dec(x_658); +lean_dec(x_656); +x_718 = lean_ctor_get(x_712, 0); +lean_inc(x_718); +if (lean_is_exclusive(x_712)) { + lean_ctor_release(x_712, 0); + x_719 = x_712; +} else { + lean_dec_ref(x_712); + x_719 = lean_box(0); +} +if (lean_is_scalar(x_719)) { + x_720 = lean_alloc_ctor(1, 1, 0); +} else { + x_720 = x_719; +} +lean_ctor_set(x_720, 0, x_718); +return x_720; +} +} +else +{ +lean_object* x_721; lean_object* x_722; lean_object* x_723; +lean_dec(x_698); +lean_dec(x_694); +lean_dec(x_684); +lean_dec(x_670); +lean_dec(x_668); +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_721 = lean_ctor_get(x_703, 0); +lean_inc(x_721); +if (lean_is_exclusive(x_703)) { + lean_ctor_release(x_703, 0); + x_722 = x_703; +} else { + lean_dec_ref(x_703); + x_722 = lean_box(0); +} +if (lean_is_scalar(x_722)) { + x_723 = lean_alloc_ctor(1, 1, 0); +} else { + x_723 = x_722; +} +lean_ctor_set(x_723, 0, x_721); +return x_723; +} +} +else +{ +lean_object* x_724; lean_object* x_725; lean_object* x_726; +lean_dec(x_694); +lean_dec(x_684); +lean_dec(x_670); +lean_dec(x_668); +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_724 = lean_ctor_get(x_697, 0); +lean_inc(x_724); +if (lean_is_exclusive(x_697)) { + lean_ctor_release(x_697, 0); + x_725 = x_697; +} else { + lean_dec_ref(x_697); + x_725 = lean_box(0); +} +if (lean_is_scalar(x_725)) { + x_726 = lean_alloc_ctor(1, 1, 0); +} else { + x_726 = x_725; +} +lean_ctor_set(x_726, 0, x_724); +return x_726; +} +} +else +{ +lean_object* x_727; lean_object* x_728; lean_object* x_729; +lean_dec(x_684); +lean_dec(x_670); +lean_dec(x_668); +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_727 = lean_ctor_get(x_693, 0); +lean_inc(x_727); +if (lean_is_exclusive(x_693)) { + lean_ctor_release(x_693, 0); + x_728 = x_693; +} else { + lean_dec_ref(x_693); + x_728 = lean_box(0); +} +if (lean_is_scalar(x_728)) { + x_729 = lean_alloc_ctor(1, 1, 0); +} else { + x_729 = x_728; +} +lean_ctor_set(x_729, 0, x_727); +return x_729; +} +} +else +{ +lean_object* x_730; lean_object* x_731; lean_object* x_732; +lean_dec(x_670); +lean_dec(x_668); +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_730 = lean_ctor_get(x_683, 0); +lean_inc(x_730); +if (lean_is_exclusive(x_683)) { + lean_ctor_release(x_683, 0); + x_731 = x_683; +} else { + lean_dec_ref(x_683); + x_731 = lean_box(0); +} +if (lean_is_scalar(x_731)) { + x_732 = lean_alloc_ctor(1, 1, 0); +} else { + x_732 = x_731; +} +lean_ctor_set(x_732, 0, x_730); +return x_732; +} +} +else +{ +lean_object* x_733; lean_object* x_734; lean_object* x_735; +lean_dec(x_668); +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_733 = lean_ctor_get(x_669, 0); +lean_inc(x_733); +if (lean_is_exclusive(x_669)) { + lean_ctor_release(x_669, 0); + x_734 = x_669; +} else { + lean_dec_ref(x_669); + x_734 = lean_box(0); +} +if (lean_is_scalar(x_734)) { + x_735 = lean_alloc_ctor(1, 1, 0); +} else { + x_735 = x_734; +} +lean_ctor_set(x_735, 0, x_733); +return x_735; +} +} +else +{ +lean_object* x_736; lean_object* x_737; lean_object* x_738; +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_736 = lean_ctor_get(x_667, 0); +lean_inc(x_736); +if (lean_is_exclusive(x_667)) { + lean_ctor_release(x_667, 0); + x_737 = x_667; +} else { + lean_dec_ref(x_667); + x_737 = lean_box(0); +} +if (lean_is_scalar(x_737)) { + x_738 = lean_alloc_ctor(1, 1, 0); +} else { + x_738 = x_737; +} +lean_ctor_set(x_738, 0, x_736); +return x_738; +} +} +} +else +{ +lean_object* x_739; lean_object* x_740; lean_object* x_741; +lean_dec(x_658); +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec(x_644); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_739 = lean_ctor_get(x_660, 0); +lean_inc(x_739); +if (lean_is_exclusive(x_660)) { + lean_ctor_release(x_660, 0); + x_740 = x_660; +} else { + lean_dec_ref(x_660); + x_740 = lean_box(0); +} +if (lean_is_scalar(x_740)) { + x_741 = lean_alloc_ctor(1, 1, 0); +} else { + x_741 = x_740; +} +lean_ctor_set(x_741, 0, x_739); +return x_741; +} +} +else +{ +lean_object* x_742; lean_object* x_743; lean_object* x_744; +lean_dec(x_658); +lean_dec_ref(x_654); +lean_free_object(x_34); +x_742 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +lean_inc_ref(x_26); +x_743 = l_Lean_mkApp3(x_742, x_26, x_644, x_655); +x_744 = l_Lean_Meta_Sym_shareCommon___redArg(x_743, x_7); +if (lean_obj_tag(x_744) == 0) +{ +lean_object* x_745; lean_object* x_746; +x_745 = lean_ctor_get(x_744, 0); +lean_inc(x_745); +lean_dec_ref(x_744); +x_746 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_746) == 0) +{ +lean_object* x_747; lean_object* x_748; lean_object* x_749; uint8_t x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; uint8_t x_756; uint8_t x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; +x_747 = lean_ctor_get(x_746, 0); +lean_inc(x_747); +lean_dec_ref(x_746); +x_748 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_749 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_750 = 0; +x_751 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_752 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_745); +lean_inc(x_747); +lean_inc_ref(x_26); +x_753 = l_Lean_mkApp4(x_751, x_26, x_747, x_745, x_752); +x_754 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_755 = lean_array_push(x_754, x_753); +x_756 = lean_unbox(x_40); +x_757 = lean_unbox(x_40); +x_758 = l_Lean_Expr_betaRev(x_21, x_755, x_756, x_757); +lean_dec_ref(x_755); +lean_inc(x_747); +x_759 = l_Lean_mkLambda(x_749, x_750, x_747, x_758); +x_760 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_759, x_7); +if (lean_obj_tag(x_760) == 0) +{ +lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; uint8_t x_766; uint8_t x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; +x_761 = lean_ctor_get(x_760, 0); +lean_inc(x_761); +lean_dec_ref(x_760); +lean_inc(x_747); +x_762 = l_Lean_mkNot(x_747); +x_763 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_745); +lean_inc(x_747); +x_764 = l_Lean_mkApp4(x_763, x_26, x_747, x_745, x_752); +x_765 = lean_array_push(x_754, x_764); +x_766 = lean_unbox(x_40); +x_767 = lean_unbox(x_40); +x_768 = l_Lean_Expr_betaRev(x_18, x_765, x_766, x_767); +lean_dec_ref(x_765); +x_769 = l_Lean_mkLambda(x_749, x_750, x_762, x_768); +x_770 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_769, x_7); +if (lean_obj_tag(x_770) == 0) +{ +lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; +x_771 = lean_ctor_get(x_770, 0); +lean_inc(x_771); +lean_dec_ref(x_770); +x_772 = lean_unsigned_to_nat(4u); +x_773 = l_Lean_Expr_getBoundedAppFn(x_772, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_771); +lean_inc(x_761); +lean_inc(x_747); +x_774 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_773, x_747, x_748, x_761, x_771, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_774) == 0) +{ +lean_object* x_775; lean_object* x_776; uint8_t x_777; uint8_t x_778; lean_object* x_779; lean_object* x_780; +x_775 = lean_ctor_get(x_774, 0); +lean_inc(x_775); +lean_dec_ref(x_774); +x_776 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +x_777 = lean_unbox(x_40); +x_778 = lean_unbox(x_40); +lean_inc(x_761); +x_779 = l_Lean_Expr_betaRev(x_761, x_776, x_777, x_778); +x_780 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_779, x_7); +if (lean_obj_tag(x_780) == 0) +{ +lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; +x_781 = lean_ctor_get(x_780, 0); +lean_inc(x_781); +lean_dec_ref(x_780); +x_782 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_783 = l_Lean_Expr_replaceFn(x_2, x_782); +x_784 = l_Lean_mkApp3(x_783, x_747, x_748, x_745); +x_785 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_786 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_787 = l_Lean_mkConst(x_785, x_786); +x_788 = l_Lean_mkApp3(x_787, x_29, x_761, x_771); +lean_inc(x_781); +x_789 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_775, x_784, x_781, x_788, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_789) == 0) +{ +lean_object* x_790; lean_object* x_791; lean_object* x_792; uint8_t x_793; lean_object* x_794; +x_790 = lean_ctor_get(x_789, 0); +lean_inc(x_790); +if (lean_is_exclusive(x_789)) { + lean_ctor_release(x_789, 0); + x_791 = x_789; +} else { + lean_dec_ref(x_789); + x_791 = lean_box(0); +} +if (lean_is_scalar(x_656)) { + x_792 = lean_alloc_ctor(1, 2, 1); +} else { + x_792 = x_656; +} +lean_ctor_set(x_792, 0, x_781); +lean_ctor_set(x_792, 1, x_790); +x_793 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_792, sizeof(void*)*2, x_793); +if (lean_is_scalar(x_791)) { + x_794 = lean_alloc_ctor(0, 1, 0); +} else { + x_794 = x_791; +} +lean_ctor_set(x_794, 0, x_792); +return x_794; +} +else +{ +lean_object* x_795; lean_object* x_796; lean_object* x_797; +lean_dec(x_781); +lean_dec(x_656); +lean_dec(x_40); +x_795 = lean_ctor_get(x_789, 0); +lean_inc(x_795); +if (lean_is_exclusive(x_789)) { + lean_ctor_release(x_789, 0); + x_796 = x_789; +} else { + lean_dec_ref(x_789); + x_796 = lean_box(0); +} +if (lean_is_scalar(x_796)) { + x_797 = lean_alloc_ctor(1, 1, 0); +} else { + x_797 = x_796; +} +lean_ctor_set(x_797, 0, x_795); +return x_797; +} +} +else +{ +lean_object* x_798; lean_object* x_799; lean_object* x_800; +lean_dec(x_775); +lean_dec(x_771); +lean_dec(x_761); +lean_dec(x_747); +lean_dec(x_745); +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_798 = lean_ctor_get(x_780, 0); +lean_inc(x_798); +if (lean_is_exclusive(x_780)) { + lean_ctor_release(x_780, 0); + x_799 = x_780; +} else { + lean_dec_ref(x_780); + x_799 = lean_box(0); +} +if (lean_is_scalar(x_799)) { + x_800 = lean_alloc_ctor(1, 1, 0); +} else { + x_800 = x_799; +} +lean_ctor_set(x_800, 0, x_798); +return x_800; +} +} +else +{ +lean_object* x_801; lean_object* x_802; lean_object* x_803; +lean_dec(x_771); +lean_dec(x_761); +lean_dec(x_747); +lean_dec(x_745); +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_801 = lean_ctor_get(x_774, 0); +lean_inc(x_801); +if (lean_is_exclusive(x_774)) { + lean_ctor_release(x_774, 0); + x_802 = x_774; +} else { + lean_dec_ref(x_774); + x_802 = lean_box(0); +} +if (lean_is_scalar(x_802)) { + x_803 = lean_alloc_ctor(1, 1, 0); +} else { + x_803 = x_802; +} +lean_ctor_set(x_803, 0, x_801); +return x_803; +} +} +else +{ +lean_object* x_804; lean_object* x_805; lean_object* x_806; +lean_dec(x_761); +lean_dec(x_747); +lean_dec(x_745); +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_804 = lean_ctor_get(x_770, 0); +lean_inc(x_804); +if (lean_is_exclusive(x_770)) { + lean_ctor_release(x_770, 0); + x_805 = x_770; +} else { + lean_dec_ref(x_770); + x_805 = lean_box(0); +} +if (lean_is_scalar(x_805)) { + x_806 = lean_alloc_ctor(1, 1, 0); +} else { + x_806 = x_805; +} +lean_ctor_set(x_806, 0, x_804); +return x_806; +} +} +else +{ +lean_object* x_807; lean_object* x_808; lean_object* x_809; +lean_dec(x_747); +lean_dec(x_745); +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_807 = lean_ctor_get(x_760, 0); +lean_inc(x_807); +if (lean_is_exclusive(x_760)) { + lean_ctor_release(x_760, 0); + x_808 = x_760; +} else { + lean_dec_ref(x_760); + x_808 = lean_box(0); +} +if (lean_is_scalar(x_808)) { + x_809 = lean_alloc_ctor(1, 1, 0); +} else { + x_809 = x_808; +} +lean_ctor_set(x_809, 0, x_807); +return x_809; +} +} +else +{ +lean_object* x_810; lean_object* x_811; lean_object* x_812; +lean_dec(x_745); +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_810 = lean_ctor_get(x_746, 0); +lean_inc(x_810); +if (lean_is_exclusive(x_746)) { + lean_ctor_release(x_746, 0); + x_811 = x_746; +} else { + lean_dec_ref(x_746); + x_811 = lean_box(0); +} +if (lean_is_scalar(x_811)) { + x_812 = lean_alloc_ctor(1, 1, 0); +} else { + x_812 = x_811; +} +lean_ctor_set(x_812, 0, x_810); +return x_812; +} +} +else +{ +lean_object* x_813; lean_object* x_814; lean_object* x_815; +lean_dec(x_656); +lean_dec(x_40); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_813 = lean_ctor_get(x_744, 0); +lean_inc(x_813); +if (lean_is_exclusive(x_744)) { + lean_ctor_release(x_744, 0); + x_814 = x_744; +} else { + lean_dec_ref(x_744); + x_814 = lean_box(0); +} +if (lean_is_scalar(x_814)) { + x_815 = lean_alloc_ctor(1, 1, 0); +} else { + x_815 = x_814; +} +lean_ctor_set(x_815, 0, x_813); +return x_815; +} +} +} +else +{ +lean_object* x_816; lean_object* x_817; lean_object* x_818; +lean_dec(x_656); +lean_dec_ref(x_655); +lean_dec_ref(x_654); +lean_dec(x_644); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_816 = lean_ctor_get(x_657, 0); +lean_inc(x_816); +if (lean_is_exclusive(x_657)) { + lean_ctor_release(x_657, 0); + x_817 = x_657; +} else { + lean_dec_ref(x_657); + x_817 = lean_box(0); +} +if (lean_is_scalar(x_817)) { + x_818 = lean_alloc_ctor(1, 1, 0); +} else { + x_818 = x_817; +} +lean_ctor_set(x_818, 0, x_816); +return x_818; +} +} +} +else +{ +lean_dec(x_644); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_648; +} +} +else +{ +lean_object* x_819; lean_object* x_820; lean_object* x_821; +lean_dec(x_644); +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_819 = lean_ctor_get(x_646, 0); +lean_inc(x_819); +if (lean_is_exclusive(x_646)) { + lean_ctor_release(x_646, 0); + x_820 = x_646; +} else { + lean_dec_ref(x_646); + x_820 = lean_box(0); +} +if (lean_is_scalar(x_820)) { + x_821 = lean_alloc_ctor(1, 1, 0); +} else { + x_821 = x_820; +} +lean_ctor_set(x_821, 0, x_819); +return x_821; +} +} +else +{ +lean_object* x_822; lean_object* x_823; lean_object* x_824; +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_822 = lean_ctor_get(x_643, 0); +lean_inc(x_822); +if (lean_is_exclusive(x_643)) { + lean_ctor_release(x_643, 0); + x_823 = x_643; +} else { + lean_dec_ref(x_643); + x_823 = lean_box(0); +} +if (lean_is_scalar(x_823)) { + x_824 = lean_alloc_ctor(1, 1, 0); +} else { + x_824 = x_823; +} +lean_ctor_set(x_824, 0, x_822); +return x_824; +} +} +else +{ +uint8_t x_825; lean_object* x_826; +lean_dec(x_641); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_825 = lean_unbox(x_40); +lean_dec(x_40); +lean_ctor_set_uint8(x_34, 0, x_825); +x_826 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_826, 0, x_34); +return x_826; +} +} +} +else +{ +uint8_t x_827; +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_827 = !lean_is_exclusive(x_45); +if (x_827 == 0) +{ +return x_45; +} +else +{ +lean_object* x_828; lean_object* x_829; +x_828 = lean_ctor_get(x_45, 0); +lean_inc(x_828); +lean_dec(x_45); +x_829 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_829, 0, x_828); +return x_829; +} +} +} +else +{ +lean_object* x_830; uint8_t x_831; uint8_t x_832; lean_object* x_833; lean_object* x_834; +lean_dec(x_40); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_830 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_831 = lean_unbox(x_37); +x_832 = lean_unbox(x_37); +lean_inc_ref(x_18); +x_833 = l_Lean_Expr_betaRev(x_18, x_830, x_831, x_832); +x_834 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_833, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_834) == 0) +{ +uint8_t x_835; +x_835 = !lean_is_exclusive(x_834); +if (x_835 == 0) +{ +lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; uint8_t x_842; +x_836 = lean_ctor_get(x_834, 0); +x_837 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_838 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_839 = l_Lean_mkConst(x_837, x_838); +x_840 = l_Lean_mkApp3(x_839, x_29, x_21, x_18); +x_841 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_841, 0, x_836); +lean_ctor_set(x_841, 1, x_840); +x_842 = lean_unbox(x_37); +lean_dec(x_37); +lean_ctor_set_uint8(x_841, sizeof(void*)*2, x_842); +lean_ctor_set(x_834, 0, x_841); +return x_834; +} +else +{ +lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; uint8_t x_849; lean_object* x_850; +x_843 = lean_ctor_get(x_834, 0); +lean_inc(x_843); +lean_dec(x_834); +x_844 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_845 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_846 = l_Lean_mkConst(x_844, x_845); +x_847 = l_Lean_mkApp3(x_846, x_29, x_21, x_18); +x_848 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_848, 0, x_843); +lean_ctor_set(x_848, 1, x_847); +x_849 = lean_unbox(x_37); +lean_dec(x_37); +lean_ctor_set_uint8(x_848, sizeof(void*)*2, x_849); +x_850 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_850, 0, x_848); +return x_850; +} +} +else +{ +uint8_t x_851; +lean_dec(x_37); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +x_851 = !lean_is_exclusive(x_834); +if (x_851 == 0) +{ +return x_834; +} +else +{ +lean_object* x_852; lean_object* x_853; +x_852 = lean_ctor_get(x_834, 0); +lean_inc(x_852); +lean_dec(x_834); +x_853 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_853, 0, x_852); +return x_853; +} +} +} +} +else +{ +uint8_t x_854; +lean_dec(x_37); +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_854 = !lean_is_exclusive(x_39); +if (x_854 == 0) +{ +return x_39; +} +else +{ +lean_object* x_855; lean_object* x_856; +x_855 = lean_ctor_get(x_39, 0); +lean_inc(x_855); +lean_dec(x_39); +x_856 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_856, 0, x_855); +return x_856; +} +} +} +else +{ +lean_object* x_857; lean_object* x_858; lean_object* x_859; +lean_dec(x_37); +lean_free_object(x_34); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_857 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +lean_inc_ref(x_21); +x_858 = l_Lean_Expr_betaRev(x_21, x_857, x_1, x_1); +x_859 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_858, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_859) == 0) +{ +uint8_t x_860; +x_860 = !lean_is_exclusive(x_859); +if (x_860 == 0) +{ +lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; +x_861 = lean_ctor_get(x_859, 0); +x_862 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_863 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_864 = l_Lean_mkConst(x_862, x_863); +x_865 = l_Lean_mkApp3(x_864, x_29, x_21, x_18); +x_866 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_866, 0, x_861); +lean_ctor_set(x_866, 1, x_865); +lean_ctor_set_uint8(x_866, sizeof(void*)*2, x_1); +lean_ctor_set(x_859, 0, x_866); +return x_859; +} +else +{ +lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; +x_867 = lean_ctor_get(x_859, 0); +lean_inc(x_867); +lean_dec(x_859); +x_868 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_869 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_870 = l_Lean_mkConst(x_868, x_869); +x_871 = l_Lean_mkApp3(x_870, x_29, x_21, x_18); +x_872 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_872, 0, x_867); +lean_ctor_set(x_872, 1, x_871); +lean_ctor_set_uint8(x_872, sizeof(void*)*2, x_1); +x_873 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_873, 0, x_872); +return x_873; +} +} +else +{ +uint8_t x_874; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +x_874 = !lean_is_exclusive(x_859); +if (x_874 == 0) +{ +return x_859; +} +else +{ +lean_object* x_875; lean_object* x_876; +x_875 = lean_ctor_get(x_859, 0); +lean_inc(x_875); +lean_dec(x_859); +x_876 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_876, 0, x_875); +return x_876; +} +} +} +} +else +{ +uint8_t x_877; +lean_free_object(x_34); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_877 = !lean_is_exclusive(x_36); +if (x_877 == 0) +{ +return x_36; +} +else +{ +lean_object* x_878; lean_object* x_879; +x_878 = lean_ctor_get(x_36, 0); +lean_inc(x_878); +lean_dec(x_36); +x_879 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_879, 0, x_878); +return x_879; +} +} +} +else +{ +lean_object* x_880; +lean_dec(x_34); +x_880 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_880) == 0) +{ +lean_object* x_881; uint8_t x_882; +x_881 = lean_ctor_get(x_880, 0); +lean_inc(x_881); +lean_dec_ref(x_880); +x_882 = lean_unbox(x_881); +if (x_882 == 0) +{ +lean_object* x_883; +x_883 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_26, x_6); +if (lean_obj_tag(x_883) == 0) +{ +lean_object* x_884; uint8_t x_885; +x_884 = lean_ctor_get(x_883, 0); +lean_inc(x_884); +lean_dec_ref(x_883); +x_885 = lean_unbox(x_884); +if (x_885 == 0) +{ +lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; +lean_dec(x_881); +x_886 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_26); +x_887 = l_Lean_Expr_app___override(x_886, x_26); +x_888 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_889 = l_Lean_Meta_trySynthInstance(x_887, x_888, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_889) == 0) +{ +lean_object* x_890; lean_object* x_891; +x_890 = lean_ctor_get(x_889, 0); +lean_inc(x_890); +if (lean_is_exclusive(x_889)) { + lean_ctor_release(x_889, 0); + x_891 = x_889; +} else { + lean_dec_ref(x_889); + x_891 = lean_box(0); +} +if (lean_obj_tag(x_890) == 1) +{ +lean_object* x_892; lean_object* x_893; +lean_dec(x_891); +x_892 = lean_ctor_get(x_890, 0); +lean_inc(x_892); +lean_dec_ref(x_890); +x_893 = l_Lean_Meta_Sym_shareCommon___redArg(x_892, x_7); +if (lean_obj_tag(x_893) == 0) +{ +lean_object* x_894; lean_object* x_895; lean_object* x_896; +x_894 = lean_ctor_get(x_893, 0); +lean_inc(x_894); +lean_dec_ref(x_893); +x_895 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_894); +lean_inc_ref(x_26); +x_896 = l_Lean_Meta_Sym_Internal_mkAppS_u2082___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__0(x_895, x_26, x_894, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_896) == 0) +{ +lean_object* x_897; lean_object* x_898; +x_897 = lean_ctor_get(x_896, 0); +lean_inc(x_897); +lean_dec_ref(x_896); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc_ref(x_6); +lean_inc(x_5); +lean_inc_ref(x_4); +lean_inc(x_3); +x_898 = lean_sym_simp(x_897, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_898) == 0) +{ +lean_object* x_899; lean_object* x_900; +x_899 = lean_ctor_get(x_898, 0); +lean_inc(x_899); +if (lean_is_exclusive(x_898)) { + lean_ctor_release(x_898, 0); + x_900 = x_898; +} else { + lean_dec_ref(x_898); + x_900 = lean_box(0); +} +if (lean_obj_tag(x_899) == 0) +{ +lean_object* x_901; lean_object* x_902; lean_object* x_903; +lean_dec(x_894); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +if (lean_is_exclusive(x_899)) { + x_901 = x_899; +} else { + lean_dec_ref(x_899); + x_901 = lean_box(0); +} +if (lean_is_scalar(x_901)) { + x_902 = lean_alloc_ctor(0, 0, 1); +} else { + x_902 = x_901; +} +lean_ctor_set_uint8(x_902, 0, x_32); +if (lean_is_scalar(x_900)) { + x_903 = lean_alloc_ctor(0, 1, 0); +} else { + x_903 = x_900; +} +lean_ctor_set(x_903, 0, x_902); +return x_903; +} +else +{ +lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; +lean_dec(x_900); +x_904 = lean_ctor_get(x_899, 0); +lean_inc_ref(x_904); +x_905 = lean_ctor_get(x_899, 1); +lean_inc_ref(x_905); +if (lean_is_exclusive(x_899)) { + lean_ctor_release(x_899, 0); + lean_ctor_release(x_899, 1); + x_906 = x_899; +} else { + lean_dec_ref(x_899); + x_906 = lean_box(0); +} +x_907 = l_Lean_Meta_Sym_isBoolTrueExpr___redArg(x_904, x_6); +if (lean_obj_tag(x_907) == 0) +{ +lean_object* x_908; uint8_t x_909; +x_908 = lean_ctor_get(x_907, 0); +lean_inc(x_908); +lean_dec_ref(x_907); +x_909 = lean_unbox(x_908); +if (x_909 == 0) +{ +lean_object* x_910; +lean_dec(x_884); +x_910 = l_Lean_Meta_Sym_isBoolFalseExpr___redArg(x_904, x_6); +lean_dec_ref(x_904); +if (lean_obj_tag(x_910) == 0) +{ +lean_object* x_911; lean_object* x_912; uint8_t x_913; +x_911 = lean_ctor_get(x_910, 0); +lean_inc(x_911); +if (lean_is_exclusive(x_910)) { + lean_ctor_release(x_910, 0); + x_912 = x_910; +} else { + lean_dec_ref(x_910); + x_912 = lean_box(0); +} +x_913 = lean_unbox(x_911); +lean_dec(x_911); +if (x_913 == 0) +{ +lean_object* x_914; lean_object* x_915; +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_905); +lean_dec(x_894); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_914 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_914, 0, x_32); +if (lean_is_scalar(x_912)) { + x_915 = lean_alloc_ctor(0, 1, 0); +} else { + x_915 = x_912; +} +lean_ctor_set(x_915, 0, x_914); +return x_915; +} +else +{ +lean_object* x_916; lean_object* x_917; lean_object* x_918; +lean_dec(x_912); +x_916 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10; +lean_inc_ref(x_26); +x_917 = l_Lean_mkApp3(x_916, x_26, x_894, x_905); +x_918 = l_Lean_Meta_Sym_shareCommon___redArg(x_917, x_7); +if (lean_obj_tag(x_918) == 0) +{ +lean_object* x_919; lean_object* x_920; +x_919 = lean_ctor_get(x_918, 0); +lean_inc(x_919); +lean_dec_ref(x_918); +x_920 = l_Lean_Meta_Sym_getFalseExpr___redArg(x_6); +if (lean_obj_tag(x_920) == 0) +{ +lean_object* x_921; lean_object* x_922; lean_object* x_923; uint8_t x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; uint8_t x_930; uint8_t x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; +x_921 = lean_ctor_get(x_920, 0); +lean_inc(x_921); +lean_dec_ref(x_920); +x_922 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13; +x_923 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_924 = 0; +x_925 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_926 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_919); +lean_inc(x_921); +lean_inc_ref(x_26); +x_927 = l_Lean_mkApp4(x_925, x_26, x_921, x_919, x_926); +x_928 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_929 = lean_array_push(x_928, x_927); +x_930 = lean_unbox(x_908); +x_931 = lean_unbox(x_908); +x_932 = l_Lean_Expr_betaRev(x_21, x_929, x_930, x_931); +lean_dec_ref(x_929); +lean_inc(x_921); +x_933 = l_Lean_mkLambda(x_923, x_924, x_921, x_932); +x_934 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_933, x_7); +if (lean_obj_tag(x_934) == 0) +{ +lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; uint8_t x_940; uint8_t x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; +x_935 = lean_ctor_get(x_934, 0); +lean_inc(x_935); +lean_dec_ref(x_934); +lean_inc(x_921); +x_936 = l_Lean_mkNot(x_921); +x_937 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_919); +lean_inc(x_921); +x_938 = l_Lean_mkApp4(x_937, x_26, x_921, x_919, x_926); +x_939 = lean_array_push(x_928, x_938); +x_940 = lean_unbox(x_908); +x_941 = lean_unbox(x_908); +x_942 = l_Lean_Expr_betaRev(x_18, x_939, x_940, x_941); +lean_dec_ref(x_939); +x_943 = l_Lean_mkLambda(x_923, x_924, x_936, x_942); +x_944 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_943, x_7); +if (lean_obj_tag(x_944) == 0) +{ +lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; +x_945 = lean_ctor_get(x_944, 0); +lean_inc(x_945); +lean_dec_ref(x_944); +x_946 = lean_unsigned_to_nat(4u); +x_947 = l_Lean_Expr_getBoundedAppFn(x_946, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_945); +lean_inc(x_935); +lean_inc(x_921); +x_948 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_947, x_921, x_922, x_935, x_945, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_948) == 0) +{ +lean_object* x_949; lean_object* x_950; uint8_t x_951; uint8_t x_952; lean_object* x_953; lean_object* x_954; +x_949 = lean_ctor_get(x_948, 0); +lean_inc(x_949); +lean_dec_ref(x_948); +x_950 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_951 = lean_unbox(x_908); +x_952 = lean_unbox(x_908); +lean_inc(x_945); +x_953 = l_Lean_Expr_betaRev(x_945, x_950, x_951, x_952); +x_954 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_953, x_7); +if (lean_obj_tag(x_954) == 0) +{ +lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; +x_955 = lean_ctor_get(x_954, 0); +lean_inc(x_955); +lean_dec_ref(x_954); +x_956 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_957 = l_Lean_Expr_replaceFn(x_2, x_956); +x_958 = l_Lean_mkApp3(x_957, x_921, x_922, x_919); +x_959 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_960 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_961 = l_Lean_mkConst(x_959, x_960); +x_962 = l_Lean_mkApp3(x_961, x_29, x_935, x_945); +lean_inc(x_955); +x_963 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_949, x_958, x_955, x_962, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_963) == 0) +{ +lean_object* x_964; lean_object* x_965; lean_object* x_966; uint8_t x_967; lean_object* x_968; +x_964 = lean_ctor_get(x_963, 0); +lean_inc(x_964); +if (lean_is_exclusive(x_963)) { + lean_ctor_release(x_963, 0); + x_965 = x_963; +} else { + lean_dec_ref(x_963); + x_965 = lean_box(0); +} +if (lean_is_scalar(x_906)) { + x_966 = lean_alloc_ctor(1, 2, 1); +} else { + x_966 = x_906; +} +lean_ctor_set(x_966, 0, x_955); +lean_ctor_set(x_966, 1, x_964); +x_967 = lean_unbox(x_908); +lean_dec(x_908); +lean_ctor_set_uint8(x_966, sizeof(void*)*2, x_967); +if (lean_is_scalar(x_965)) { + x_968 = lean_alloc_ctor(0, 1, 0); +} else { + x_968 = x_965; +} +lean_ctor_set(x_968, 0, x_966); +return x_968; +} +else +{ +lean_object* x_969; lean_object* x_970; lean_object* x_971; +lean_dec(x_955); +lean_dec(x_908); +lean_dec(x_906); +x_969 = lean_ctor_get(x_963, 0); +lean_inc(x_969); +if (lean_is_exclusive(x_963)) { + lean_ctor_release(x_963, 0); + x_970 = x_963; +} else { + lean_dec_ref(x_963); + x_970 = lean_box(0); +} +if (lean_is_scalar(x_970)) { + x_971 = lean_alloc_ctor(1, 1, 0); +} else { + x_971 = x_970; +} +lean_ctor_set(x_971, 0, x_969); +return x_971; +} +} +else +{ +lean_object* x_972; lean_object* x_973; lean_object* x_974; +lean_dec(x_949); +lean_dec(x_945); +lean_dec(x_935); +lean_dec(x_921); +lean_dec(x_919); +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_972 = lean_ctor_get(x_954, 0); +lean_inc(x_972); +if (lean_is_exclusive(x_954)) { + lean_ctor_release(x_954, 0); + x_973 = x_954; +} else { + lean_dec_ref(x_954); + x_973 = lean_box(0); +} +if (lean_is_scalar(x_973)) { + x_974 = lean_alloc_ctor(1, 1, 0); +} else { + x_974 = x_973; +} +lean_ctor_set(x_974, 0, x_972); +return x_974; +} +} +else +{ +lean_object* x_975; lean_object* x_976; lean_object* x_977; +lean_dec(x_945); +lean_dec(x_935); +lean_dec(x_921); +lean_dec(x_919); +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_975 = lean_ctor_get(x_948, 0); +lean_inc(x_975); +if (lean_is_exclusive(x_948)) { + lean_ctor_release(x_948, 0); + x_976 = x_948; +} else { + lean_dec_ref(x_948); + x_976 = lean_box(0); +} +if (lean_is_scalar(x_976)) { + x_977 = lean_alloc_ctor(1, 1, 0); +} else { + x_977 = x_976; +} +lean_ctor_set(x_977, 0, x_975); +return x_977; +} +} +else +{ +lean_object* x_978; lean_object* x_979; lean_object* x_980; +lean_dec(x_935); +lean_dec(x_921); +lean_dec(x_919); +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_978 = lean_ctor_get(x_944, 0); +lean_inc(x_978); +if (lean_is_exclusive(x_944)) { + lean_ctor_release(x_944, 0); + x_979 = x_944; +} else { + lean_dec_ref(x_944); + x_979 = lean_box(0); +} +if (lean_is_scalar(x_979)) { + x_980 = lean_alloc_ctor(1, 1, 0); +} else { + x_980 = x_979; +} +lean_ctor_set(x_980, 0, x_978); +return x_980; +} +} +else +{ +lean_object* x_981; lean_object* x_982; lean_object* x_983; +lean_dec(x_921); +lean_dec(x_919); +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_981 = lean_ctor_get(x_934, 0); +lean_inc(x_981); +if (lean_is_exclusive(x_934)) { + lean_ctor_release(x_934, 0); + x_982 = x_934; +} else { + lean_dec_ref(x_934); + x_982 = lean_box(0); +} +if (lean_is_scalar(x_982)) { + x_983 = lean_alloc_ctor(1, 1, 0); +} else { + x_983 = x_982; +} +lean_ctor_set(x_983, 0, x_981); +return x_983; +} +} +else +{ +lean_object* x_984; lean_object* x_985; lean_object* x_986; +lean_dec(x_919); +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_984 = lean_ctor_get(x_920, 0); +lean_inc(x_984); +if (lean_is_exclusive(x_920)) { + lean_ctor_release(x_920, 0); + x_985 = x_920; +} else { + lean_dec_ref(x_920); + x_985 = lean_box(0); +} +if (lean_is_scalar(x_985)) { + x_986 = lean_alloc_ctor(1, 1, 0); +} else { + x_986 = x_985; +} +lean_ctor_set(x_986, 0, x_984); +return x_986; +} +} +else +{ +lean_object* x_987; lean_object* x_988; lean_object* x_989; +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_987 = lean_ctor_get(x_918, 0); +lean_inc(x_987); +if (lean_is_exclusive(x_918)) { + lean_ctor_release(x_918, 0); + x_988 = x_918; +} else { + lean_dec_ref(x_918); + x_988 = lean_box(0); +} +if (lean_is_scalar(x_988)) { + x_989 = lean_alloc_ctor(1, 1, 0); +} else { + x_989 = x_988; +} +lean_ctor_set(x_989, 0, x_987); +return x_989; +} +} +} +else +{ +lean_object* x_990; lean_object* x_991; lean_object* x_992; +lean_dec(x_908); +lean_dec(x_906); +lean_dec_ref(x_905); +lean_dec(x_894); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_990 = lean_ctor_get(x_910, 0); +lean_inc(x_990); +if (lean_is_exclusive(x_910)) { + lean_ctor_release(x_910, 0); + x_991 = x_910; +} else { + lean_dec_ref(x_910); + x_991 = lean_box(0); +} +if (lean_is_scalar(x_991)) { + x_992 = lean_alloc_ctor(1, 1, 0); +} else { + x_992 = x_991; +} +lean_ctor_set(x_992, 0, x_990); +return x_992; +} +} +else +{ +lean_object* x_993; lean_object* x_994; lean_object* x_995; +lean_dec(x_908); +lean_dec_ref(x_904); +x_993 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22; +lean_inc_ref(x_26); +x_994 = l_Lean_mkApp3(x_993, x_26, x_894, x_905); +x_995 = l_Lean_Meta_Sym_shareCommon___redArg(x_994, x_7); +if (lean_obj_tag(x_995) == 0) +{ +lean_object* x_996; lean_object* x_997; +x_996 = lean_ctor_get(x_995, 0); +lean_inc(x_996); +lean_dec_ref(x_995); +x_997 = l_Lean_Meta_Sym_getTrueExpr___redArg(x_6); +if (lean_obj_tag(x_997) == 0) +{ +lean_object* x_998; lean_object* x_999; lean_object* x_1000; uint8_t x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; uint8_t x_1007; uint8_t x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; +x_998 = lean_ctor_get(x_997, 0); +lean_inc(x_998); +lean_dec_ref(x_997); +x_999 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25; +x_1000 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_1001 = 0; +x_1002 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_1003 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_996); +lean_inc(x_998); +lean_inc_ref(x_26); +x_1004 = l_Lean_mkApp4(x_1002, x_26, x_998, x_996, x_1003); +x_1005 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1006 = lean_array_push(x_1005, x_1004); +x_1007 = lean_unbox(x_884); +x_1008 = lean_unbox(x_884); +x_1009 = l_Lean_Expr_betaRev(x_21, x_1006, x_1007, x_1008); +lean_dec_ref(x_1006); +lean_inc(x_998); +x_1010 = l_Lean_mkLambda(x_1000, x_1001, x_998, x_1009); +x_1011 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1010, x_7); +if (lean_obj_tag(x_1011) == 0) +{ +lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; uint8_t x_1017; uint8_t x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; +x_1012 = lean_ctor_get(x_1011, 0); +lean_inc(x_1012); +lean_dec_ref(x_1011); +lean_inc(x_998); +x_1013 = l_Lean_mkNot(x_998); +x_1014 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_996); +lean_inc(x_998); +x_1015 = l_Lean_mkApp4(x_1014, x_26, x_998, x_996, x_1003); +x_1016 = lean_array_push(x_1005, x_1015); +x_1017 = lean_unbox(x_884); +x_1018 = lean_unbox(x_884); +x_1019 = l_Lean_Expr_betaRev(x_18, x_1016, x_1017, x_1018); +lean_dec_ref(x_1016); +x_1020 = l_Lean_mkLambda(x_1000, x_1001, x_1013, x_1019); +x_1021 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1020, x_7); +if (lean_obj_tag(x_1021) == 0) +{ +lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; +x_1022 = lean_ctor_get(x_1021, 0); +lean_inc(x_1022); +lean_dec_ref(x_1021); +x_1023 = lean_unsigned_to_nat(4u); +x_1024 = l_Lean_Expr_getBoundedAppFn(x_1023, x_2); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +lean_inc(x_7); +lean_inc(x_1022); +lean_inc(x_1012); +lean_inc(x_998); +x_1025 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_1024, x_998, x_999, x_1012, x_1022, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_1025) == 0) +{ +lean_object* x_1026; lean_object* x_1027; uint8_t x_1028; uint8_t x_1029; lean_object* x_1030; lean_object* x_1031; +x_1026 = lean_ctor_get(x_1025, 0); +lean_inc(x_1026); +lean_dec_ref(x_1025); +x_1027 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +x_1028 = lean_unbox(x_884); +x_1029 = lean_unbox(x_884); +lean_inc(x_1012); +x_1030 = l_Lean_Expr_betaRev(x_1012, x_1027, x_1028, x_1029); +x_1031 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1030, x_7); +if (lean_obj_tag(x_1031) == 0) +{ +lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; +x_1032 = lean_ctor_get(x_1031, 0); +lean_inc(x_1032); +lean_dec_ref(x_1031); +x_1033 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +lean_inc_ref(x_2); +x_1034 = l_Lean_Expr_replaceFn(x_2, x_1033); +x_1035 = l_Lean_mkApp3(x_1034, x_998, x_999, x_996); +x_1036 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_1037 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_1038 = l_Lean_mkConst(x_1036, x_1037); +x_1039 = l_Lean_mkApp3(x_1038, x_29, x_1012, x_1022); +lean_inc(x_1032); +x_1040 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_2, x_1026, x_1035, x_1032, x_1039, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_7); +if (lean_obj_tag(x_1040) == 0) +{ +lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; uint8_t x_1044; lean_object* x_1045; +x_1041 = lean_ctor_get(x_1040, 0); +lean_inc(x_1041); +if (lean_is_exclusive(x_1040)) { + lean_ctor_release(x_1040, 0); + x_1042 = x_1040; +} else { + lean_dec_ref(x_1040); + x_1042 = lean_box(0); +} +if (lean_is_scalar(x_906)) { + x_1043 = lean_alloc_ctor(1, 2, 1); +} else { + x_1043 = x_906; +} +lean_ctor_set(x_1043, 0, x_1032); +lean_ctor_set(x_1043, 1, x_1041); +x_1044 = lean_unbox(x_884); +lean_dec(x_884); +lean_ctor_set_uint8(x_1043, sizeof(void*)*2, x_1044); +if (lean_is_scalar(x_1042)) { + x_1045 = lean_alloc_ctor(0, 1, 0); +} else { + x_1045 = x_1042; +} +lean_ctor_set(x_1045, 0, x_1043); +return x_1045; +} +else +{ +lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; +lean_dec(x_1032); +lean_dec(x_906); +lean_dec(x_884); +x_1046 = lean_ctor_get(x_1040, 0); +lean_inc(x_1046); +if (lean_is_exclusive(x_1040)) { + lean_ctor_release(x_1040, 0); + x_1047 = x_1040; +} else { + lean_dec_ref(x_1040); + x_1047 = lean_box(0); +} +if (lean_is_scalar(x_1047)) { + x_1048 = lean_alloc_ctor(1, 1, 0); +} else { + x_1048 = x_1047; +} +lean_ctor_set(x_1048, 0, x_1046); +return x_1048; +} +} +else +{ +lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; +lean_dec(x_1026); +lean_dec(x_1022); +lean_dec(x_1012); +lean_dec(x_998); +lean_dec(x_996); +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1049 = lean_ctor_get(x_1031, 0); +lean_inc(x_1049); +if (lean_is_exclusive(x_1031)) { + lean_ctor_release(x_1031, 0); + x_1050 = x_1031; +} else { + lean_dec_ref(x_1031); + x_1050 = lean_box(0); +} +if (lean_is_scalar(x_1050)) { + x_1051 = lean_alloc_ctor(1, 1, 0); +} else { + x_1051 = x_1050; +} +lean_ctor_set(x_1051, 0, x_1049); +return x_1051; +} +} +else +{ +lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; +lean_dec(x_1022); +lean_dec(x_1012); +lean_dec(x_998); +lean_dec(x_996); +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1052 = lean_ctor_get(x_1025, 0); +lean_inc(x_1052); +if (lean_is_exclusive(x_1025)) { + lean_ctor_release(x_1025, 0); + x_1053 = x_1025; +} else { + lean_dec_ref(x_1025); + x_1053 = lean_box(0); +} +if (lean_is_scalar(x_1053)) { + x_1054 = lean_alloc_ctor(1, 1, 0); +} else { + x_1054 = x_1053; +} +lean_ctor_set(x_1054, 0, x_1052); +return x_1054; +} +} +else +{ +lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; +lean_dec(x_1012); +lean_dec(x_998); +lean_dec(x_996); +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1055 = lean_ctor_get(x_1021, 0); +lean_inc(x_1055); +if (lean_is_exclusive(x_1021)) { + lean_ctor_release(x_1021, 0); + x_1056 = x_1021; +} else { + lean_dec_ref(x_1021); + x_1056 = lean_box(0); +} +if (lean_is_scalar(x_1056)) { + x_1057 = lean_alloc_ctor(1, 1, 0); +} else { + x_1057 = x_1056; +} +lean_ctor_set(x_1057, 0, x_1055); +return x_1057; +} +} +else +{ +lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; +lean_dec(x_998); +lean_dec(x_996); +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1058 = lean_ctor_get(x_1011, 0); +lean_inc(x_1058); +if (lean_is_exclusive(x_1011)) { + lean_ctor_release(x_1011, 0); + x_1059 = x_1011; +} else { + lean_dec_ref(x_1011); + x_1059 = lean_box(0); +} +if (lean_is_scalar(x_1059)) { + x_1060 = lean_alloc_ctor(1, 1, 0); +} else { + x_1060 = x_1059; +} +lean_ctor_set(x_1060, 0, x_1058); +return x_1060; +} +} +else +{ +lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; +lean_dec(x_996); +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1061 = lean_ctor_get(x_997, 0); +lean_inc(x_1061); +if (lean_is_exclusive(x_997)) { + lean_ctor_release(x_997, 0); + x_1062 = x_997; +} else { + lean_dec_ref(x_997); + x_1062 = lean_box(0); +} +if (lean_is_scalar(x_1062)) { + x_1063 = lean_alloc_ctor(1, 1, 0); +} else { + x_1063 = x_1062; +} +lean_ctor_set(x_1063, 0, x_1061); +return x_1063; +} +} +else +{ +lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; +lean_dec(x_906); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1064 = lean_ctor_get(x_995, 0); +lean_inc(x_1064); +if (lean_is_exclusive(x_995)) { + lean_ctor_release(x_995, 0); + x_1065 = x_995; +} else { + lean_dec_ref(x_995); + x_1065 = lean_box(0); +} +if (lean_is_scalar(x_1065)) { + x_1066 = lean_alloc_ctor(1, 1, 0); +} else { + x_1066 = x_1065; +} +lean_ctor_set(x_1066, 0, x_1064); +return x_1066; +} +} +} +else +{ +lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; +lean_dec(x_906); +lean_dec_ref(x_905); +lean_dec_ref(x_904); +lean_dec(x_894); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1067 = lean_ctor_get(x_907, 0); +lean_inc(x_1067); +if (lean_is_exclusive(x_907)) { + lean_ctor_release(x_907, 0); + x_1068 = x_907; +} else { + lean_dec_ref(x_907); + x_1068 = lean_box(0); +} +if (lean_is_scalar(x_1068)) { + x_1069 = lean_alloc_ctor(1, 1, 0); +} else { + x_1069 = x_1068; +} +lean_ctor_set(x_1069, 0, x_1067); +return x_1069; +} +} +} +else +{ +lean_dec(x_894); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_898; +} +} +else +{ +lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; +lean_dec(x_894); +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1070 = lean_ctor_get(x_896, 0); +lean_inc(x_1070); +if (lean_is_exclusive(x_896)) { + lean_ctor_release(x_896, 0); + x_1071 = x_896; +} else { + lean_dec_ref(x_896); + x_1071 = lean_box(0); +} +if (lean_is_scalar(x_1071)) { + x_1072 = lean_alloc_ctor(1, 1, 0); +} else { + x_1072 = x_1071; +} +lean_ctor_set(x_1072, 0, x_1070); +return x_1072; +} +} +else +{ +lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1073 = lean_ctor_get(x_893, 0); +lean_inc(x_1073); +if (lean_is_exclusive(x_893)) { + lean_ctor_release(x_893, 0); + x_1074 = x_893; +} else { + lean_dec_ref(x_893); + x_1074 = lean_box(0); +} +if (lean_is_scalar(x_1074)) { + x_1075 = lean_alloc_ctor(1, 1, 0); +} else { + x_1075 = x_1074; +} +lean_ctor_set(x_1075, 0, x_1073); +return x_1075; +} +} +else +{ +lean_object* x_1076; uint8_t x_1077; lean_object* x_1078; +lean_dec(x_890); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1076 = lean_alloc_ctor(0, 0, 1); +x_1077 = lean_unbox(x_884); +lean_dec(x_884); +lean_ctor_set_uint8(x_1076, 0, x_1077); +if (lean_is_scalar(x_891)) { + x_1078 = lean_alloc_ctor(0, 1, 0); +} else { + x_1078 = x_891; +} +lean_ctor_set(x_1078, 0, x_1076); +return x_1078; +} +} +else +{ +lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; +lean_dec(x_884); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1079 = lean_ctor_get(x_889, 0); +lean_inc(x_1079); +if (lean_is_exclusive(x_889)) { + lean_ctor_release(x_889, 0); + x_1080 = x_889; +} else { + lean_dec_ref(x_889); + x_1080 = lean_box(0); +} +if (lean_is_scalar(x_1080)) { + x_1081 = lean_alloc_ctor(1, 1, 0); +} else { + x_1081 = x_1080; +} +lean_ctor_set(x_1081, 0, x_1079); +return x_1081; +} +} +else +{ +lean_object* x_1082; uint8_t x_1083; uint8_t x_1084; lean_object* x_1085; lean_object* x_1086; +lean_dec(x_884); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1082 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16; +x_1083 = lean_unbox(x_881); +x_1084 = lean_unbox(x_881); +lean_inc_ref(x_18); +x_1085 = l_Lean_Expr_betaRev(x_18, x_1082, x_1083, x_1084); +x_1086 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1085, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1086) == 0) +{ +lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; uint8_t x_1094; lean_object* x_1095; +x_1087 = lean_ctor_get(x_1086, 0); +lean_inc(x_1087); +if (lean_is_exclusive(x_1086)) { + lean_ctor_release(x_1086, 0); + x_1088 = x_1086; +} else { + lean_dec_ref(x_1086); + x_1088 = lean_box(0); +} +x_1089 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__20)); +x_1090 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_1091 = l_Lean_mkConst(x_1089, x_1090); +x_1092 = l_Lean_mkApp3(x_1091, x_29, x_21, x_18); +x_1093 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1093, 0, x_1087); +lean_ctor_set(x_1093, 1, x_1092); +x_1094 = lean_unbox(x_881); +lean_dec(x_881); +lean_ctor_set_uint8(x_1093, sizeof(void*)*2, x_1094); +if (lean_is_scalar(x_1088)) { + x_1095 = lean_alloc_ctor(0, 1, 0); +} else { + x_1095 = x_1088; +} +lean_ctor_set(x_1095, 0, x_1093); +return x_1095; +} +else +{ +lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; +lean_dec(x_881); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +x_1096 = lean_ctor_get(x_1086, 0); +lean_inc(x_1096); +if (lean_is_exclusive(x_1086)) { + lean_ctor_release(x_1086, 0); + x_1097 = x_1086; +} else { + lean_dec_ref(x_1086); + x_1097 = lean_box(0); +} +if (lean_is_scalar(x_1097)) { + x_1098 = lean_alloc_ctor(1, 1, 0); +} else { + x_1098 = x_1097; +} +lean_ctor_set(x_1098, 0, x_1096); +return x_1098; +} +} +} +else +{ +lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; +lean_dec(x_881); +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1099 = lean_ctor_get(x_883, 0); +lean_inc(x_1099); +if (lean_is_exclusive(x_883)) { + lean_ctor_release(x_883, 0); + x_1100 = x_883; +} else { + lean_dec_ref(x_883); + x_1100 = lean_box(0); +} +if (lean_is_scalar(x_1100)) { + x_1101 = lean_alloc_ctor(1, 1, 0); +} else { + x_1101 = x_1100; +} +lean_ctor_set(x_1101, 0, x_1099); +return x_1101; +} +} +else +{ +lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; +lean_dec(x_881); +lean_dec_ref(x_26); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1102 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25; +lean_inc_ref(x_21); +x_1103 = l_Lean_Expr_betaRev(x_21, x_1102, x_1, x_1); +x_1104 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1103, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1104) == 0) +{ +lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; +x_1105 = lean_ctor_get(x_1104, 0); +lean_inc(x_1105); +if (lean_is_exclusive(x_1104)) { + lean_ctor_release(x_1104, 0); + x_1106 = x_1104; +} else { + lean_dec_ref(x_1104); + x_1106 = lean_box(0); +} +x_1107 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__27)); +x_1108 = l_Lean_Expr_constLevels_x21(x_30); +lean_dec_ref(x_30); +x_1109 = l_Lean_mkConst(x_1107, x_1108); +x_1110 = l_Lean_mkApp3(x_1109, x_29, x_21, x_18); +x_1111 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1111, 0, x_1105); +lean_ctor_set(x_1111, 1, x_1110); +lean_ctor_set_uint8(x_1111, sizeof(void*)*2, x_1); +if (lean_is_scalar(x_1106)) { + x_1112 = lean_alloc_ctor(0, 1, 0); +} else { + x_1112 = x_1106; +} +lean_ctor_set(x_1112, 0, x_1111); +return x_1112; +} +else +{ +lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +x_1113 = lean_ctor_get(x_1104, 0); +lean_inc(x_1113); +if (lean_is_exclusive(x_1104)) { + lean_ctor_release(x_1104, 0); + x_1114 = x_1104; +} else { + lean_dec_ref(x_1104); + x_1114 = lean_box(0); +} +if (lean_is_scalar(x_1114)) { + x_1115 = lean_alloc_ctor(1, 1, 0); +} else { + x_1115 = x_1114; +} +lean_ctor_set(x_1115, 0, x_1113); +return x_1115; +} +} +} +else +{ +lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1116 = lean_ctor_get(x_880, 0); +lean_inc(x_1116); +if (lean_is_exclusive(x_880)) { + lean_ctor_release(x_880, 0); + x_1117 = x_880; +} else { + lean_dec_ref(x_880); + x_1117 = lean_box(0); +} +if (lean_is_scalar(x_1117)) { + x_1118 = lean_alloc_ctor(1, 1, 0); +} else { + x_1118 = x_1117; +} +lean_ctor_set(x_1118, 0, x_1116); +return x_1118; +} +} +} +else +{ +uint8_t x_1119; +lean_dec_ref(x_30); +lean_dec_ref(x_29); +x_1119 = !lean_is_exclusive(x_34); +if (x_1119 == 0) +{ +lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; +x_1120 = lean_ctor_get(x_34, 0); +x_1121 = lean_ctor_get(x_34, 1); +x_1122 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_1120, x_6); +if (lean_obj_tag(x_1122) == 0) +{ +lean_object* x_1123; uint8_t x_1124; +x_1123 = lean_ctor_get(x_1122, 0); +lean_inc(x_1123); +lean_dec_ref(x_1122); +x_1124 = lean_unbox(x_1123); +if (x_1124 == 0) +{ +lean_object* x_1125; +x_1125 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_1120, x_6); +if (lean_obj_tag(x_1125) == 0) +{ +lean_object* x_1126; uint8_t x_1127; +x_1126 = lean_ctor_get(x_1125, 0); +lean_inc(x_1126); +lean_dec_ref(x_1125); +x_1127 = lean_unbox(x_1126); +if (x_1127 == 0) +{ +lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; +lean_dec(x_1123); +x_1128 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_1120); +x_1129 = l_Lean_Expr_app___override(x_1128, x_1120); +x_1130 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_1131 = l_Lean_Meta_trySynthInstance(x_1129, x_1130, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1131) == 0) +{ +uint8_t x_1132; +x_1132 = !lean_is_exclusive(x_1131); +if (x_1132 == 0) +{ +lean_object* x_1133; +x_1133 = lean_ctor_get(x_1131, 0); +if (lean_obj_tag(x_1133) == 1) +{ +lean_object* x_1134; lean_object* x_1135; +lean_free_object(x_1131); +x_1134 = lean_ctor_get(x_1133, 0); +lean_inc(x_1134); +lean_dec_ref(x_1133); +x_1135 = l_Lean_Meta_Sym_shareCommon___redArg(x_1134, x_7); +if (lean_obj_tag(x_1135) == 0) +{ +lean_object* x_1136; lean_object* x_1137; +x_1136 = lean_ctor_get(x_1135, 0); +lean_inc(x_1136); +lean_dec_ref(x_1135); +x_1137 = l_Lean_Meta_Sym_shareCommon___redArg(x_1121, x_7); +if (lean_obj_tag(x_1137) == 0) +{ +lean_object* x_1138; lean_object* x_1139; uint8_t x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; uint8_t x_1146; uint8_t x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; +x_1138 = lean_ctor_get(x_1137, 0); +lean_inc(x_1138); +lean_dec_ref(x_1137); +x_1139 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_1140 = 0; +x_1141 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_1142 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_1138); +lean_inc_ref(x_1120); +lean_inc_ref(x_26); +x_1143 = l_Lean_mkApp4(x_1141, x_26, x_1120, x_1138, x_1142); +x_1144 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1145 = lean_array_push(x_1144, x_1143); +x_1146 = lean_unbox(x_1126); +x_1147 = lean_unbox(x_1126); +x_1148 = l_Lean_Expr_betaRev(x_21, x_1145, x_1146, x_1147); +lean_dec_ref(x_1145); +lean_inc_ref(x_1120); +x_1149 = l_Lean_mkLambda(x_1139, x_1140, x_1120, x_1148); +x_1150 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1149, x_7); +if (lean_obj_tag(x_1150) == 0) +{ +lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; uint8_t x_1156; uint8_t x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; +x_1151 = lean_ctor_get(x_1150, 0); +lean_inc(x_1151); +lean_dec_ref(x_1150); +lean_inc_ref(x_1120); +x_1152 = l_Lean_mkNot(x_1120); +x_1153 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_1138); +lean_inc_ref(x_1120); +x_1154 = l_Lean_mkApp4(x_1153, x_26, x_1120, x_1138, x_1142); +x_1155 = lean_array_push(x_1144, x_1154); +x_1156 = lean_unbox(x_1126); +x_1157 = lean_unbox(x_1126); +x_1158 = l_Lean_Expr_betaRev(x_18, x_1155, x_1156, x_1157); +lean_dec_ref(x_1155); +x_1159 = l_Lean_mkLambda(x_1139, x_1140, x_1152, x_1158); +x_1160 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1159, x_7); +if (lean_obj_tag(x_1160) == 0) +{ +lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; +x_1161 = lean_ctor_get(x_1160, 0); +lean_inc(x_1161); +lean_dec_ref(x_1160); +x_1162 = lean_unsigned_to_nat(4u); +x_1163 = l_Lean_Expr_getBoundedAppFn(x_1162, x_2); +lean_inc(x_1136); +lean_inc_ref(x_1120); +x_1164 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_1163, x_1120, x_1136, x_1151, x_1161, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_1164) == 0) +{ +uint8_t x_1165; +x_1165 = !lean_is_exclusive(x_1164); +if (x_1165 == 0) +{ +lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; uint8_t x_1170; +x_1166 = lean_ctor_get(x_1164, 0); +x_1167 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +x_1168 = l_Lean_Expr_replaceFn(x_2, x_1167); +x_1169 = l_Lean_mkApp3(x_1168, x_1120, x_1136, x_1138); +lean_ctor_set(x_34, 1, x_1169); +lean_ctor_set(x_34, 0, x_1166); +x_1170 = lean_unbox(x_1126); +lean_dec(x_1126); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1170); +lean_ctor_set(x_1164, 0, x_34); +return x_1164; +} +else +{ +lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; uint8_t x_1175; lean_object* x_1176; +x_1171 = lean_ctor_get(x_1164, 0); +lean_inc(x_1171); +lean_dec(x_1164); +x_1172 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +x_1173 = l_Lean_Expr_replaceFn(x_2, x_1172); +x_1174 = l_Lean_mkApp3(x_1173, x_1120, x_1136, x_1138); +lean_ctor_set(x_34, 1, x_1174); +lean_ctor_set(x_34, 0, x_1171); +x_1175 = lean_unbox(x_1126); +lean_dec(x_1126); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1175); +x_1176 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1176, 0, x_34); +return x_1176; +} +} +else +{ +uint8_t x_1177; +lean_dec(x_1138); +lean_dec(x_1136); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_2); +x_1177 = !lean_is_exclusive(x_1164); +if (x_1177 == 0) +{ +return x_1164; +} +else +{ +lean_object* x_1178; lean_object* x_1179; +x_1178 = lean_ctor_get(x_1164, 0); +lean_inc(x_1178); +lean_dec(x_1164); +x_1179 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1179, 0, x_1178); +return x_1179; +} +} +} +else +{ +uint8_t x_1180; +lean_dec(x_1151); +lean_dec(x_1138); +lean_dec(x_1136); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1180 = !lean_is_exclusive(x_1160); +if (x_1180 == 0) +{ +return x_1160; +} +else +{ +lean_object* x_1181; lean_object* x_1182; +x_1181 = lean_ctor_get(x_1160, 0); +lean_inc(x_1181); +lean_dec(x_1160); +x_1182 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1182, 0, x_1181); +return x_1182; +} +} +} +else +{ +uint8_t x_1183; +lean_dec(x_1138); +lean_dec(x_1136); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1183 = !lean_is_exclusive(x_1150); +if (x_1183 == 0) +{ +return x_1150; +} +else +{ +lean_object* x_1184; lean_object* x_1185; +x_1184 = lean_ctor_get(x_1150, 0); +lean_inc(x_1184); +lean_dec(x_1150); +x_1185 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1185, 0, x_1184); +return x_1185; +} +} +} +else +{ +uint8_t x_1186; +lean_dec(x_1136); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1186 = !lean_is_exclusive(x_1137); +if (x_1186 == 0) +{ +return x_1137; +} +else +{ +lean_object* x_1187; lean_object* x_1188; +x_1187 = lean_ctor_get(x_1137, 0); +lean_inc(x_1187); +lean_dec(x_1137); +x_1188 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1188, 0, x_1187); +return x_1188; +} +} +} +else +{ +uint8_t x_1189; +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1189 = !lean_is_exclusive(x_1135); +if (x_1189 == 0) +{ +return x_1135; +} +else +{ +lean_object* x_1190; lean_object* x_1191; +x_1190 = lean_ctor_get(x_1135, 0); +lean_inc(x_1190); +lean_dec(x_1135); +x_1191 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1191, 0, x_1190); +return x_1191; +} +} +} +else +{ +lean_object* x_1192; uint8_t x_1193; +lean_dec(x_1133); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1192 = lean_alloc_ctor(0, 0, 1); +x_1193 = lean_unbox(x_1126); +lean_dec(x_1126); +lean_ctor_set_uint8(x_1192, 0, x_1193); +lean_ctor_set(x_1131, 0, x_1192); +return x_1131; +} +} +else +{ +lean_object* x_1194; +x_1194 = lean_ctor_get(x_1131, 0); +lean_inc(x_1194); +lean_dec(x_1131); +if (lean_obj_tag(x_1194) == 1) +{ +lean_object* x_1195; lean_object* x_1196; +x_1195 = lean_ctor_get(x_1194, 0); +lean_inc(x_1195); +lean_dec_ref(x_1194); +x_1196 = l_Lean_Meta_Sym_shareCommon___redArg(x_1195, x_7); +if (lean_obj_tag(x_1196) == 0) +{ +lean_object* x_1197; lean_object* x_1198; +x_1197 = lean_ctor_get(x_1196, 0); +lean_inc(x_1197); +lean_dec_ref(x_1196); +x_1198 = l_Lean_Meta_Sym_shareCommon___redArg(x_1121, x_7); +if (lean_obj_tag(x_1198) == 0) +{ +lean_object* x_1199; lean_object* x_1200; uint8_t x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; uint8_t x_1207; uint8_t x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; +x_1199 = lean_ctor_get(x_1198, 0); +lean_inc(x_1199); +lean_dec_ref(x_1198); +x_1200 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_1201 = 0; +x_1202 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_1203 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_1199); +lean_inc_ref(x_1120); +lean_inc_ref(x_26); +x_1204 = l_Lean_mkApp4(x_1202, x_26, x_1120, x_1199, x_1203); +x_1205 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1206 = lean_array_push(x_1205, x_1204); +x_1207 = lean_unbox(x_1126); +x_1208 = lean_unbox(x_1126); +x_1209 = l_Lean_Expr_betaRev(x_21, x_1206, x_1207, x_1208); +lean_dec_ref(x_1206); +lean_inc_ref(x_1120); +x_1210 = l_Lean_mkLambda(x_1200, x_1201, x_1120, x_1209); +x_1211 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1210, x_7); +if (lean_obj_tag(x_1211) == 0) +{ +lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; uint8_t x_1217; uint8_t x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; +x_1212 = lean_ctor_get(x_1211, 0); +lean_inc(x_1212); +lean_dec_ref(x_1211); +lean_inc_ref(x_1120); +x_1213 = l_Lean_mkNot(x_1120); +x_1214 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_1199); +lean_inc_ref(x_1120); +x_1215 = l_Lean_mkApp4(x_1214, x_26, x_1120, x_1199, x_1203); +x_1216 = lean_array_push(x_1205, x_1215); +x_1217 = lean_unbox(x_1126); +x_1218 = lean_unbox(x_1126); +x_1219 = l_Lean_Expr_betaRev(x_18, x_1216, x_1217, x_1218); +lean_dec_ref(x_1216); +x_1220 = l_Lean_mkLambda(x_1200, x_1201, x_1213, x_1219); +x_1221 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1220, x_7); +if (lean_obj_tag(x_1221) == 0) +{ +lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; +x_1222 = lean_ctor_get(x_1221, 0); +lean_inc(x_1222); +lean_dec_ref(x_1221); +x_1223 = lean_unsigned_to_nat(4u); +x_1224 = l_Lean_Expr_getBoundedAppFn(x_1223, x_2); +lean_inc(x_1197); +lean_inc_ref(x_1120); +x_1225 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_1224, x_1120, x_1197, x_1212, x_1222, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_1225) == 0) +{ +lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; uint8_t x_1231; lean_object* x_1232; +x_1226 = lean_ctor_get(x_1225, 0); +lean_inc(x_1226); +if (lean_is_exclusive(x_1225)) { + lean_ctor_release(x_1225, 0); + x_1227 = x_1225; +} else { + lean_dec_ref(x_1225); + x_1227 = lean_box(0); +} +x_1228 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +x_1229 = l_Lean_Expr_replaceFn(x_2, x_1228); +x_1230 = l_Lean_mkApp3(x_1229, x_1120, x_1197, x_1199); +lean_ctor_set(x_34, 1, x_1230); +lean_ctor_set(x_34, 0, x_1226); +x_1231 = lean_unbox(x_1126); +lean_dec(x_1126); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1231); +if (lean_is_scalar(x_1227)) { + x_1232 = lean_alloc_ctor(0, 1, 0); +} else { + x_1232 = x_1227; +} +lean_ctor_set(x_1232, 0, x_34); +return x_1232; +} +else +{ +lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; +lean_dec(x_1199); +lean_dec(x_1197); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_2); +x_1233 = lean_ctor_get(x_1225, 0); +lean_inc(x_1233); +if (lean_is_exclusive(x_1225)) { + lean_ctor_release(x_1225, 0); + x_1234 = x_1225; +} else { + lean_dec_ref(x_1225); + x_1234 = lean_box(0); +} +if (lean_is_scalar(x_1234)) { + x_1235 = lean_alloc_ctor(1, 1, 0); +} else { + x_1235 = x_1234; +} +lean_ctor_set(x_1235, 0, x_1233); +return x_1235; +} +} +else +{ +lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; +lean_dec(x_1212); +lean_dec(x_1199); +lean_dec(x_1197); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1236 = lean_ctor_get(x_1221, 0); +lean_inc(x_1236); +if (lean_is_exclusive(x_1221)) { + lean_ctor_release(x_1221, 0); + x_1237 = x_1221; +} else { + lean_dec_ref(x_1221); + x_1237 = lean_box(0); +} +if (lean_is_scalar(x_1237)) { + x_1238 = lean_alloc_ctor(1, 1, 0); +} else { + x_1238 = x_1237; +} +lean_ctor_set(x_1238, 0, x_1236); +return x_1238; +} +} +else +{ +lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; +lean_dec(x_1199); +lean_dec(x_1197); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1239 = lean_ctor_get(x_1211, 0); +lean_inc(x_1239); +if (lean_is_exclusive(x_1211)) { + lean_ctor_release(x_1211, 0); + x_1240 = x_1211; +} else { + lean_dec_ref(x_1211); + x_1240 = lean_box(0); +} +if (lean_is_scalar(x_1240)) { + x_1241 = lean_alloc_ctor(1, 1, 0); +} else { + x_1241 = x_1240; +} +lean_ctor_set(x_1241, 0, x_1239); +return x_1241; +} +} +else +{ +lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; +lean_dec(x_1197); +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1242 = lean_ctor_get(x_1198, 0); +lean_inc(x_1242); +if (lean_is_exclusive(x_1198)) { + lean_ctor_release(x_1198, 0); + x_1243 = x_1198; +} else { + lean_dec_ref(x_1198); + x_1243 = lean_box(0); +} +if (lean_is_scalar(x_1243)) { + x_1244 = lean_alloc_ctor(1, 1, 0); +} else { + x_1244 = x_1243; +} +lean_ctor_set(x_1244, 0, x_1242); +return x_1244; +} +} +else +{ +lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1245 = lean_ctor_get(x_1196, 0); +lean_inc(x_1245); +if (lean_is_exclusive(x_1196)) { + lean_ctor_release(x_1196, 0); + x_1246 = x_1196; +} else { + lean_dec_ref(x_1196); + x_1246 = lean_box(0); +} +if (lean_is_scalar(x_1246)) { + x_1247 = lean_alloc_ctor(1, 1, 0); +} else { + x_1247 = x_1246; +} +lean_ctor_set(x_1247, 0, x_1245); +return x_1247; +} +} +else +{ +lean_object* x_1248; uint8_t x_1249; lean_object* x_1250; +lean_dec(x_1194); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1248 = lean_alloc_ctor(0, 0, 1); +x_1249 = lean_unbox(x_1126); +lean_dec(x_1126); +lean_ctor_set_uint8(x_1248, 0, x_1249); +x_1250 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1250, 0, x_1248); +return x_1250; +} +} +} +else +{ +uint8_t x_1251; +lean_dec(x_1126); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1251 = !lean_is_exclusive(x_1131); +if (x_1251 == 0) +{ +return x_1131; +} +else +{ +lean_object* x_1252; lean_object* x_1253; +x_1252 = lean_ctor_get(x_1131, 0); +lean_inc(x_1252); +lean_dec(x_1131); +x_1253 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1253, 0, x_1252); +return x_1253; +} +} +} +else +{ +lean_object* x_1254; lean_object* x_1255; +lean_dec(x_1126); +lean_dec_ref(x_1120); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_inc_ref(x_1121); +x_1254 = l_Lean_Meta_mkOfEqFalseCore(x_26, x_1121); +x_1255 = l_Lean_Meta_Sym_shareCommon___redArg(x_1254, x_7); +if (lean_obj_tag(x_1255) == 0) +{ +lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; uint8_t x_1259; uint8_t x_1260; lean_object* x_1261; lean_object* x_1262; +x_1256 = lean_ctor_get(x_1255, 0); +lean_inc(x_1256); +lean_dec_ref(x_1255); +x_1257 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1258 = lean_array_push(x_1257, x_1256); +x_1259 = lean_unbox(x_1123); +x_1260 = lean_unbox(x_1123); +x_1261 = l_Lean_Expr_betaRev(x_18, x_1258, x_1259, x_1260); +lean_dec_ref(x_1258); +x_1262 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1261, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1262) == 0) +{ +uint8_t x_1263; +x_1263 = !lean_is_exclusive(x_1262); +if (x_1263 == 0) +{ +lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; uint8_t x_1268; +x_1264 = lean_ctor_get(x_1262, 0); +x_1265 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29)); +x_1266 = l_Lean_Expr_replaceFn(x_2, x_1265); +x_1267 = l_Lean_Expr_app___override(x_1266, x_1121); +lean_ctor_set(x_34, 1, x_1267); +lean_ctor_set(x_34, 0, x_1264); +x_1268 = lean_unbox(x_1123); +lean_dec(x_1123); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1268); +lean_ctor_set(x_1262, 0, x_34); +return x_1262; +} +else +{ +lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; uint8_t x_1273; lean_object* x_1274; +x_1269 = lean_ctor_get(x_1262, 0); +lean_inc(x_1269); +lean_dec(x_1262); +x_1270 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29)); +x_1271 = l_Lean_Expr_replaceFn(x_2, x_1270); +x_1272 = l_Lean_Expr_app___override(x_1271, x_1121); +lean_ctor_set(x_34, 1, x_1272); +lean_ctor_set(x_34, 0, x_1269); +x_1273 = lean_unbox(x_1123); +lean_dec(x_1123); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1273); +x_1274 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1274, 0, x_34); +return x_1274; +} +} +else +{ +uint8_t x_1275; +lean_dec(x_1123); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_2); +x_1275 = !lean_is_exclusive(x_1262); +if (x_1275 == 0) +{ +return x_1262; +} +else +{ +lean_object* x_1276; lean_object* x_1277; +x_1276 = lean_ctor_get(x_1262, 0); +lean_inc(x_1276); +lean_dec(x_1262); +x_1277 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1277, 0, x_1276); +return x_1277; +} +} +} +else +{ +uint8_t x_1278; +lean_dec(x_1123); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_18); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1278 = !lean_is_exclusive(x_1255); +if (x_1278 == 0) +{ +return x_1255; +} +else +{ +lean_object* x_1279; lean_object* x_1280; +x_1279 = lean_ctor_get(x_1255, 0); +lean_inc(x_1279); +lean_dec(x_1255); +x_1280 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1280, 0, x_1279); +return x_1280; +} +} +} +} +else +{ +uint8_t x_1281; +lean_dec(x_1123); +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1281 = !lean_is_exclusive(x_1125); +if (x_1281 == 0) +{ +return x_1125; +} +else +{ +lean_object* x_1282; lean_object* x_1283; +x_1282 = lean_ctor_get(x_1125, 0); +lean_inc(x_1282); +lean_dec(x_1125); +x_1283 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1283, 0, x_1282); +return x_1283; +} +} +} +else +{ +lean_object* x_1284; lean_object* x_1285; +lean_dec(x_1123); +lean_dec_ref(x_1120); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_inc_ref(x_1121); +x_1284 = l_Lean_Meta_mkOfEqTrueCore(x_26, x_1121); +x_1285 = l_Lean_Meta_Sym_shareCommon___redArg(x_1284, x_7); +if (lean_obj_tag(x_1285) == 0) +{ +lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; +x_1286 = lean_ctor_get(x_1285, 0); +lean_inc(x_1286); +lean_dec_ref(x_1285); +x_1287 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1288 = lean_array_push(x_1287, x_1286); +x_1289 = l_Lean_Expr_betaRev(x_21, x_1288, x_1, x_1); +lean_dec_ref(x_1288); +x_1290 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1289, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1290) == 0) +{ +uint8_t x_1291; +x_1291 = !lean_is_exclusive(x_1290); +if (x_1291 == 0) +{ +lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; +x_1292 = lean_ctor_get(x_1290, 0); +x_1293 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31)); +x_1294 = l_Lean_Expr_replaceFn(x_2, x_1293); +x_1295 = l_Lean_Expr_app___override(x_1294, x_1121); +lean_ctor_set(x_34, 1, x_1295); +lean_ctor_set(x_34, 0, x_1292); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1); +lean_ctor_set(x_1290, 0, x_34); +return x_1290; +} +else +{ +lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; +x_1296 = lean_ctor_get(x_1290, 0); +lean_inc(x_1296); +lean_dec(x_1290); +x_1297 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31)); +x_1298 = l_Lean_Expr_replaceFn(x_2, x_1297); +x_1299 = l_Lean_Expr_app___override(x_1298, x_1121); +lean_ctor_set(x_34, 1, x_1299); +lean_ctor_set(x_34, 0, x_1296); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_1); +x_1300 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1300, 0, x_34); +return x_1300; +} +} +else +{ +uint8_t x_1301; +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_2); +x_1301 = !lean_is_exclusive(x_1290); +if (x_1301 == 0) +{ +return x_1290; +} +else +{ +lean_object* x_1302; lean_object* x_1303; +x_1302 = lean_ctor_get(x_1290, 0); +lean_inc(x_1302); +lean_dec(x_1290); +x_1303 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1303, 0, x_1302); +return x_1303; +} +} +} +else +{ +uint8_t x_1304; +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_21); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1304 = !lean_is_exclusive(x_1285); +if (x_1304 == 0) +{ +return x_1285; +} +else +{ +lean_object* x_1305; lean_object* x_1306; +x_1305 = lean_ctor_get(x_1285, 0); +lean_inc(x_1305); +lean_dec(x_1285); +x_1306 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1306, 0, x_1305); +return x_1306; +} +} +} +} +else +{ +uint8_t x_1307; +lean_free_object(x_34); +lean_dec_ref(x_1121); +lean_dec_ref(x_1120); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1307 = !lean_is_exclusive(x_1122); +if (x_1307 == 0) +{ +return x_1122; +} +else +{ +lean_object* x_1308; lean_object* x_1309; +x_1308 = lean_ctor_get(x_1122, 0); +lean_inc(x_1308); +lean_dec(x_1122); +x_1309 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1309, 0, x_1308); +return x_1309; +} +} +} +else +{ +lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; +x_1310 = lean_ctor_get(x_34, 0); +x_1311 = lean_ctor_get(x_34, 1); +lean_inc(x_1311); +lean_inc(x_1310); +lean_dec(x_34); +x_1312 = l_Lean_Meta_Sym_isTrueExpr___redArg(x_1310, x_6); +if (lean_obj_tag(x_1312) == 0) +{ +lean_object* x_1313; uint8_t x_1314; +x_1313 = lean_ctor_get(x_1312, 0); +lean_inc(x_1313); +lean_dec_ref(x_1312); +x_1314 = lean_unbox(x_1313); +if (x_1314 == 0) +{ +lean_object* x_1315; +x_1315 = l_Lean_Meta_Sym_isFalseExpr___redArg(x_1310, x_6); +if (lean_obj_tag(x_1315) == 0) +{ +lean_object* x_1316; uint8_t x_1317; +x_1316 = lean_ctor_get(x_1315, 0); +lean_inc(x_1316); +lean_dec_ref(x_1315); +x_1317 = lean_unbox(x_1316); +if (x_1317 == 0) +{ +lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; +lean_dec(x_1313); +x_1318 = l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4; +lean_inc_ref(x_1310); +x_1319 = l_Lean_Expr_app___override(x_1318, x_1310); +x_1320 = lean_box(0); +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_1321 = l_Lean_Meta_trySynthInstance(x_1319, x_1320, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1321) == 0) +{ +lean_object* x_1322; lean_object* x_1323; +x_1322 = lean_ctor_get(x_1321, 0); +lean_inc(x_1322); +if (lean_is_exclusive(x_1321)) { + lean_ctor_release(x_1321, 0); + x_1323 = x_1321; +} else { + lean_dec_ref(x_1321); + x_1323 = lean_box(0); +} +if (lean_obj_tag(x_1322) == 1) +{ +lean_object* x_1324; lean_object* x_1325; +lean_dec(x_1323); +x_1324 = lean_ctor_get(x_1322, 0); +lean_inc(x_1324); +lean_dec_ref(x_1322); +x_1325 = l_Lean_Meta_Sym_shareCommon___redArg(x_1324, x_7); +if (lean_obj_tag(x_1325) == 0) +{ +lean_object* x_1326; lean_object* x_1327; +x_1326 = lean_ctor_get(x_1325, 0); +lean_inc(x_1326); +lean_dec_ref(x_1325); +x_1327 = l_Lean_Meta_Sym_shareCommon___redArg(x_1311, x_7); +if (lean_obj_tag(x_1327) == 0) +{ +lean_object* x_1328; lean_object* x_1329; uint8_t x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; uint8_t x_1336; uint8_t x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; +x_1328 = lean_ctor_get(x_1327, 0); +lean_inc(x_1328); +lean_dec_ref(x_1327); +x_1329 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__3)); +x_1330 = 0; +x_1331 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7; +x_1332 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8; +lean_inc(x_1328); +lean_inc_ref(x_1310); +lean_inc_ref(x_26); +x_1333 = l_Lean_mkApp4(x_1331, x_26, x_1310, x_1328, x_1332); +x_1334 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1335 = lean_array_push(x_1334, x_1333); +x_1336 = lean_unbox(x_1316); +x_1337 = lean_unbox(x_1316); +x_1338 = l_Lean_Expr_betaRev(x_21, x_1335, x_1336, x_1337); +lean_dec_ref(x_1335); +lean_inc_ref(x_1310); +x_1339 = l_Lean_mkLambda(x_1329, x_1330, x_1310, x_1338); +x_1340 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1339, x_7); +if (lean_obj_tag(x_1340) == 0) +{ +lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; uint8_t x_1346; uint8_t x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; +x_1341 = lean_ctor_get(x_1340, 0); +lean_inc(x_1341); +lean_dec_ref(x_1340); +lean_inc_ref(x_1310); +x_1342 = l_Lean_mkNot(x_1310); +x_1343 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12; +lean_inc(x_1328); +lean_inc_ref(x_1310); +x_1344 = l_Lean_mkApp4(x_1343, x_26, x_1310, x_1328, x_1332); +x_1345 = lean_array_push(x_1334, x_1344); +x_1346 = lean_unbox(x_1316); +x_1347 = lean_unbox(x_1316); +x_1348 = l_Lean_Expr_betaRev(x_18, x_1345, x_1346, x_1347); +lean_dec_ref(x_1345); +x_1349 = l_Lean_mkLambda(x_1329, x_1330, x_1342, x_1348); +x_1350 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1349, x_7); +if (lean_obj_tag(x_1350) == 0) +{ +lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; +x_1351 = lean_ctor_get(x_1350, 0); +lean_inc(x_1351); +lean_dec_ref(x_1350); +x_1352 = lean_unsigned_to_nat(4u); +x_1353 = l_Lean_Expr_getBoundedAppFn(x_1352, x_2); +lean_inc(x_1326); +lean_inc_ref(x_1310); +x_1354 = l_Lean_Meta_Sym_Internal_mkAppS_u2084___at___00Lean_Meta_Sym_Simp_simpIteCbv_spec__1(x_1353, x_1310, x_1326, x_1341, x_1351, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_1354) == 0) +{ +lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; uint8_t x_1361; lean_object* x_1362; +x_1355 = lean_ctor_get(x_1354, 0); +lean_inc(x_1355); +if (lean_is_exclusive(x_1354)) { + lean_ctor_release(x_1354, 0); + x_1356 = x_1354; +} else { + lean_dec_ref(x_1354); + x_1356 = lean_box(0); +} +x_1357 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__18)); +x_1358 = l_Lean_Expr_replaceFn(x_2, x_1357); +x_1359 = l_Lean_mkApp3(x_1358, x_1310, x_1326, x_1328); +x_1360 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1360, 0, x_1355); +lean_ctor_set(x_1360, 1, x_1359); +x_1361 = lean_unbox(x_1316); +lean_dec(x_1316); +lean_ctor_set_uint8(x_1360, sizeof(void*)*2, x_1361); +if (lean_is_scalar(x_1356)) { + x_1362 = lean_alloc_ctor(0, 1, 0); +} else { + x_1362 = x_1356; +} +lean_ctor_set(x_1362, 0, x_1360); +return x_1362; +} +else +{ +lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; +lean_dec(x_1328); +lean_dec(x_1326); +lean_dec(x_1316); +lean_dec_ref(x_1310); +lean_dec_ref(x_2); +x_1363 = lean_ctor_get(x_1354, 0); +lean_inc(x_1363); +if (lean_is_exclusive(x_1354)) { + lean_ctor_release(x_1354, 0); + x_1364 = x_1354; +} else { + lean_dec_ref(x_1354); + x_1364 = lean_box(0); +} +if (lean_is_scalar(x_1364)) { + x_1365 = lean_alloc_ctor(1, 1, 0); +} else { + x_1365 = x_1364; +} +lean_ctor_set(x_1365, 0, x_1363); +return x_1365; +} +} +else +{ +lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; +lean_dec(x_1341); +lean_dec(x_1328); +lean_dec(x_1326); +lean_dec(x_1316); +lean_dec_ref(x_1310); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1366 = lean_ctor_get(x_1350, 0); +lean_inc(x_1366); +if (lean_is_exclusive(x_1350)) { + lean_ctor_release(x_1350, 0); + x_1367 = x_1350; +} else { + lean_dec_ref(x_1350); + x_1367 = lean_box(0); +} +if (lean_is_scalar(x_1367)) { + x_1368 = lean_alloc_ctor(1, 1, 0); +} else { + x_1368 = x_1367; +} +lean_ctor_set(x_1368, 0, x_1366); +return x_1368; +} +} +else +{ +lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; +lean_dec(x_1328); +lean_dec(x_1326); +lean_dec(x_1316); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1369 = lean_ctor_get(x_1340, 0); +lean_inc(x_1369); +if (lean_is_exclusive(x_1340)) { + lean_ctor_release(x_1340, 0); + x_1370 = x_1340; +} else { + lean_dec_ref(x_1340); + x_1370 = lean_box(0); +} +if (lean_is_scalar(x_1370)) { + x_1371 = lean_alloc_ctor(1, 1, 0); +} else { + x_1371 = x_1370; +} +lean_ctor_set(x_1371, 0, x_1369); +return x_1371; +} +} +else +{ +lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; +lean_dec(x_1326); +lean_dec(x_1316); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1372 = lean_ctor_get(x_1327, 0); +lean_inc(x_1372); +if (lean_is_exclusive(x_1327)) { + lean_ctor_release(x_1327, 0); + x_1373 = x_1327; +} else { + lean_dec_ref(x_1327); + x_1373 = lean_box(0); +} +if (lean_is_scalar(x_1373)) { + x_1374 = lean_alloc_ctor(1, 1, 0); +} else { + x_1374 = x_1373; +} +lean_ctor_set(x_1374, 0, x_1372); +return x_1374; +} +} +else +{ +lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; +lean_dec(x_1316); +lean_dec_ref(x_1311); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1375 = lean_ctor_get(x_1325, 0); +lean_inc(x_1375); +if (lean_is_exclusive(x_1325)) { + lean_ctor_release(x_1325, 0); + x_1376 = x_1325; +} else { + lean_dec_ref(x_1325); + x_1376 = lean_box(0); +} +if (lean_is_scalar(x_1376)) { + x_1377 = lean_alloc_ctor(1, 1, 0); +} else { + x_1377 = x_1376; +} +lean_ctor_set(x_1377, 0, x_1375); +return x_1377; +} +} +else +{ +lean_object* x_1378; uint8_t x_1379; lean_object* x_1380; +lean_dec(x_1322); +lean_dec_ref(x_1311); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1378 = lean_alloc_ctor(0, 0, 1); +x_1379 = lean_unbox(x_1316); +lean_dec(x_1316); +lean_ctor_set_uint8(x_1378, 0, x_1379); +if (lean_is_scalar(x_1323)) { + x_1380 = lean_alloc_ctor(0, 1, 0); +} else { + x_1380 = x_1323; +} +lean_ctor_set(x_1380, 0, x_1378); +return x_1380; +} +} +else +{ +lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; +lean_dec(x_1316); +lean_dec_ref(x_1311); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1381 = lean_ctor_get(x_1321, 0); +lean_inc(x_1381); +if (lean_is_exclusive(x_1321)) { + lean_ctor_release(x_1321, 0); + x_1382 = x_1321; +} else { + lean_dec_ref(x_1321); + x_1382 = lean_box(0); +} +if (lean_is_scalar(x_1382)) { + x_1383 = lean_alloc_ctor(1, 1, 0); +} else { + x_1383 = x_1382; +} +lean_ctor_set(x_1383, 0, x_1381); +return x_1383; +} +} +else +{ +lean_object* x_1384; lean_object* x_1385; +lean_dec(x_1316); +lean_dec_ref(x_1310); +lean_dec_ref(x_21); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_inc_ref(x_1311); +x_1384 = l_Lean_Meta_mkOfEqFalseCore(x_26, x_1311); +x_1385 = l_Lean_Meta_Sym_shareCommon___redArg(x_1384, x_7); +if (lean_obj_tag(x_1385) == 0) +{ +lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; uint8_t x_1389; uint8_t x_1390; lean_object* x_1391; lean_object* x_1392; +x_1386 = lean_ctor_get(x_1385, 0); +lean_inc(x_1386); +lean_dec_ref(x_1385); +x_1387 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1388 = lean_array_push(x_1387, x_1386); +x_1389 = lean_unbox(x_1313); +x_1390 = lean_unbox(x_1313); +x_1391 = l_Lean_Expr_betaRev(x_18, x_1388, x_1389, x_1390); +lean_dec_ref(x_1388); +x_1392 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1391, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1392) == 0) +{ +lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; uint8_t x_1399; lean_object* x_1400; +x_1393 = lean_ctor_get(x_1392, 0); +lean_inc(x_1393); +if (lean_is_exclusive(x_1392)) { + lean_ctor_release(x_1392, 0); + x_1394 = x_1392; +} else { + lean_dec_ref(x_1392); + x_1394 = lean_box(0); +} +x_1395 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__29)); +x_1396 = l_Lean_Expr_replaceFn(x_2, x_1395); +x_1397 = l_Lean_Expr_app___override(x_1396, x_1311); +x_1398 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1398, 0, x_1393); +lean_ctor_set(x_1398, 1, x_1397); +x_1399 = lean_unbox(x_1313); +lean_dec(x_1313); +lean_ctor_set_uint8(x_1398, sizeof(void*)*2, x_1399); +if (lean_is_scalar(x_1394)) { + x_1400 = lean_alloc_ctor(0, 1, 0); +} else { + x_1400 = x_1394; +} +lean_ctor_set(x_1400, 0, x_1398); +return x_1400; +} +else +{ +lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; +lean_dec(x_1313); +lean_dec_ref(x_1311); +lean_dec_ref(x_2); +x_1401 = lean_ctor_get(x_1392, 0); +lean_inc(x_1401); +if (lean_is_exclusive(x_1392)) { + lean_ctor_release(x_1392, 0); + x_1402 = x_1392; +} else { + lean_dec_ref(x_1392); + x_1402 = lean_box(0); +} +if (lean_is_scalar(x_1402)) { + x_1403 = lean_alloc_ctor(1, 1, 0); +} else { + x_1403 = x_1402; +} +lean_ctor_set(x_1403, 0, x_1401); +return x_1403; +} +} +else +{ +lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; +lean_dec(x_1313); +lean_dec_ref(x_1311); +lean_dec_ref(x_18); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1404 = lean_ctor_get(x_1385, 0); +lean_inc(x_1404); +if (lean_is_exclusive(x_1385)) { + lean_ctor_release(x_1385, 0); + x_1405 = x_1385; +} else { + lean_dec_ref(x_1385); + x_1405 = lean_box(0); +} +if (lean_is_scalar(x_1405)) { + x_1406 = lean_alloc_ctor(1, 1, 0); +} else { + x_1406 = x_1405; +} +lean_ctor_set(x_1406, 0, x_1404); +return x_1406; +} +} +} +else +{ +lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; +lean_dec(x_1313); +lean_dec_ref(x_1311); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1407 = lean_ctor_get(x_1315, 0); +lean_inc(x_1407); +if (lean_is_exclusive(x_1315)) { + lean_ctor_release(x_1315, 0); + x_1408 = x_1315; +} else { + lean_dec_ref(x_1315); + x_1408 = lean_box(0); +} +if (lean_is_scalar(x_1408)) { + x_1409 = lean_alloc_ctor(1, 1, 0); +} else { + x_1409 = x_1408; +} +lean_ctor_set(x_1409, 0, x_1407); +return x_1409; +} +} +else +{ +lean_object* x_1410; lean_object* x_1411; +lean_dec(x_1313); +lean_dec_ref(x_1310); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_inc_ref(x_1311); +x_1410 = l_Lean_Meta_mkOfEqTrueCore(x_26, x_1311); +x_1411 = l_Lean_Meta_Sym_shareCommon___redArg(x_1410, x_7); +if (lean_obj_tag(x_1411) == 0) +{ +lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; +x_1412 = lean_ctor_get(x_1411, 0); +lean_inc(x_1412); +lean_dec_ref(x_1411); +x_1413 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9; +x_1414 = lean_array_push(x_1413, x_1412); +x_1415 = l_Lean_Expr_betaRev(x_21, x_1414, x_1, x_1); +lean_dec_ref(x_1414); +x_1416 = l_Lean_Meta_Sym_shareCommonInc___redArg(x_1415, x_7); +lean_dec(x_7); +if (lean_obj_tag(x_1416) == 0) +{ +lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; +x_1417 = lean_ctor_get(x_1416, 0); +lean_inc(x_1417); +if (lean_is_exclusive(x_1416)) { + lean_ctor_release(x_1416, 0); + x_1418 = x_1416; +} else { + lean_dec_ref(x_1416); + x_1418 = lean_box(0); +} +x_1419 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__31)); +x_1420 = l_Lean_Expr_replaceFn(x_2, x_1419); +x_1421 = l_Lean_Expr_app___override(x_1420, x_1311); +x_1422 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_1422, 0, x_1417); +lean_ctor_set(x_1422, 1, x_1421); +lean_ctor_set_uint8(x_1422, sizeof(void*)*2, x_1); +if (lean_is_scalar(x_1418)) { + x_1423 = lean_alloc_ctor(0, 1, 0); +} else { + x_1423 = x_1418; +} +lean_ctor_set(x_1423, 0, x_1422); +return x_1423; +} +else +{ +lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; +lean_dec_ref(x_1311); +lean_dec_ref(x_2); +x_1424 = lean_ctor_get(x_1416, 0); +lean_inc(x_1424); +if (lean_is_exclusive(x_1416)) { + lean_ctor_release(x_1416, 0); + x_1425 = x_1416; +} else { + lean_dec_ref(x_1416); + x_1425 = lean_box(0); +} +if (lean_is_scalar(x_1425)) { + x_1426 = lean_alloc_ctor(1, 1, 0); +} else { + x_1426 = x_1425; +} +lean_ctor_set(x_1426, 0, x_1424); +return x_1426; +} +} +else +{ +lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; +lean_dec_ref(x_1311); +lean_dec_ref(x_21); +lean_dec(x_7); +lean_dec_ref(x_2); +x_1427 = lean_ctor_get(x_1411, 0); +lean_inc(x_1427); +if (lean_is_exclusive(x_1411)) { + lean_ctor_release(x_1411, 0); + x_1428 = x_1411; +} else { + lean_dec_ref(x_1411); + x_1428 = lean_box(0); +} +if (lean_is_scalar(x_1428)) { + x_1429 = lean_alloc_ctor(1, 1, 0); +} else { + x_1429 = x_1428; +} +lean_ctor_set(x_1429, 0, x_1427); +return x_1429; +} +} +} +else +{ +lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; +lean_dec_ref(x_1311); +lean_dec_ref(x_1310); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_1430 = lean_ctor_get(x_1312, 0); +lean_inc(x_1430); +if (lean_is_exclusive(x_1312)) { + lean_ctor_release(x_1312, 0); + x_1431 = x_1312; +} else { + lean_dec_ref(x_1312); + x_1431 = lean_box(0); +} +if (lean_is_scalar(x_1431)) { + x_1432 = lean_alloc_ctor(1, 1, 0); +} else { + x_1432 = x_1431; +} +lean_ctor_set(x_1432, 0, x_1430); +return x_1432; +} +} +} +} +else +{ +lean_dec_ref(x_30); +lean_dec_ref(x_29); +lean_dec_ref(x_26); +lean_dec_ref(x_21); +lean_dec_ref(x_18); +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_33; +} +} +} +} +} +} +} +block_15: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_13, 0, x_1); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___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) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_1); +x_14 = l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv(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_12; lean_object* x_13; uint8_t x_14; +x_12 = l_Lean_Expr_getAppNumArgs(x_1); +x_13 = lean_unsigned_to_nat(5u); +x_14 = lean_nat_dec_lt(x_12, x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_box(x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___boxed), 12, 1); +lean_closure_set(x_16, 0, x_15); +x_17 = lean_nat_sub(x_12, x_13); +lean_dec(x_12); +x_18 = l_Lean_Meta_Sym_Simp_propagateOverApplied(x_1, x_17, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_17); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_12); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_19 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_19, 0, x_14); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Sym_Simp_simpDIteCbv___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_Lean_Meta_Sym_Simp_simpDIteCbv(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(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_13; +lean_inc(x_11); +lean_inc_ref(x_10); +lean_inc(x_9); +lean_inc_ref(x_8); +x_13 = l_Lean_Meta_Tactic_Cbv_getMatchTheorems(x_1, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0)); +x_16 = l_Lean_Meta_Sym_Simp_Theorems_rewrite(x_14, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_11); +lean_dec_ref(x_10); +lean_dec(x_9); +lean_dec_ref(x_8); +lean_dec(x_7); +lean_dec_ref(x_6); +lean_dec(x_5); +lean_dec_ref(x_4); +lean_dec(x_3); +lean_dec_ref(x_2); +x_17 = !lean_is_exclusive(x_13); +if (x_17 == 0) +{ +return x_13; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_13, 0); +lean_inc(x_18); +lean_dec(x_13); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___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) { +_start: +{ +lean_object* x_13; +x_13 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_8; +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_8 = l_Lean_Meta_reduceRecMatcher_x3f(x_1, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) +{ +lean_object* x_10; +x_10 = lean_ctor_get(x_8, 0); +if (lean_obj_tag(x_10) == 1) +{ +lean_object* x_11; lean_object* x_12; +lean_free_object(x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +lean_inc(x_11); +x_12 = l_Lean_Meta_Sym_mkEqRefl___redArg(x_11, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; uint8_t x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = 0; +x_16 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_16, 0, x_11); +lean_ctor_set(x_16, 1, x_14); +lean_ctor_set_uint8(x_16, sizeof(void*)*2, x_15); +lean_ctor_set(x_12, 0, x_16); +return x_12; +} +else +{ +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = 0; +x_19 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_19, 0, x_11); +lean_ctor_set(x_19, 1, x_17); +lean_ctor_set_uint8(x_19, sizeof(void*)*2, x_18); +x_20 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_20, 0, x_19); +return x_20; +} +} +else +{ +uint8_t x_21; +lean_dec(x_11); +x_21 = !lean_is_exclusive(x_12); +if (x_21 == 0) +{ +return x_12; +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_12, 0); +lean_inc(x_22); +lean_dec(x_12); +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; +} +} +} +else +{ +lean_object* x_24; +lean_dec(x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_24 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +lean_ctor_set(x_8, 0, x_24); +return x_8; +} +} +else +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_8, 0); +lean_inc(x_25); +lean_dec(x_8); +if (lean_obj_tag(x_25) == 1) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec_ref(x_25); +lean_inc(x_26); +x_27 = l_Lean_Meta_Sym_mkEqRefl___redArg(x_26, x_2, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + x_29 = x_27; +} else { + lean_dec_ref(x_27); + x_29 = lean_box(0); +} +x_30 = 0; +x_31 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_31, 0, x_26); +lean_ctor_set(x_31, 1, x_28); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_30); +if (lean_is_scalar(x_29)) { + x_32 = lean_alloc_ctor(0, 1, 0); +} else { + x_32 = x_29; +} +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_26); +x_33 = lean_ctor_get(x_27, 0); +lean_inc(x_33); +if (lean_is_exclusive(x_27)) { + lean_ctor_release(x_27, 0); + x_34 = x_27; +} else { + lean_dec_ref(x_27); + x_34 = lean_box(0); +} +if (lean_is_scalar(x_34)) { + x_35 = lean_alloc_ctor(1, 1, 0); +} else { + x_35 = x_34; +} +lean_ctor_set(x_35, 0, x_33); +return x_35; +} +} +else +{ +lean_object* x_36; lean_object* x_37; +lean_dec(x_25); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_36 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_37 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_37, 0, x_36); +return x_37; +} +} +} +else +{ +uint8_t x_38; +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +x_38 = !lean_is_exclusive(x_8); +if (x_38 == 0) +{ +return x_8; +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_8, 0); +lean_inc(x_39); +lean_dec(x_8); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_39); +return x_40; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___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) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_2); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher(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_12; +x_12 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___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_Lean_Meta_Tactic_Cbv_reduceRecMatcher(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_st_ref_get(x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc_ref(x_5); +lean_dec(x_4); +x_6 = l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(x_5, x_1); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg(x_1, x_2); +lean_dec(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0(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_12; +x_12 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg(x_1, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___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_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher(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_12; uint8_t x_17; +x_17 = l_Lean_Expr_isApp(x_1); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_18 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_18, 0, x_17); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = l_Lean_Expr_getAppFn(x_1); +x_21 = l_Lean_Expr_constName_x3f(x_20); +lean_dec_ref(x_20); +if (lean_obj_tag(x_21) == 1) +{ +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +lean_inc(x_22); +x_23 = l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg(x_22, x_10); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_23, 0); +if (lean_obj_tag(x_25) == 1) +{ +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_free_object(x_23); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec_ref(x_25); +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 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_27, x_29); +lean_dec(x_27); +x_31 = lean_nat_add(x_30, x_28); +lean_dec(x_28); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_32 = l_Lean_Meta_Sym_Simp_simpAppArgRange(x_1, x_30, x_31, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_31); +lean_dec(x_30); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +if (lean_obj_tag(x_33) == 0) +{ +uint8_t x_34; +x_34 = lean_ctor_get_uint8(x_33, 0); +lean_dec_ref(x_33); +if (x_34 == 0) +{ +lean_object* x_35; +lean_dec_ref(x_32); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_1); +x_35 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_22, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = x_35; +goto block_16; +} +else +{ +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_32; +goto block_16; +} +} +else +{ +uint8_t x_36; +x_36 = lean_ctor_get_uint8(x_33, sizeof(void*)*2); +if (x_36 == 0) +{ +uint8_t x_37; +lean_dec_ref(x_32); +x_37 = !lean_is_exclusive(x_33); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_33, 0); +x_39 = lean_ctor_get(x_33, 1); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_38); +x_40 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_22, x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_40) == 0) +{ +uint8_t x_41; +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) +{ +lean_object* x_42; +x_42 = lean_ctor_get(x_40, 0); +if (lean_obj_tag(x_42) == 0) +{ +uint8_t x_43; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_43 = lean_ctor_get_uint8(x_42, 0); +lean_dec_ref(x_42); +lean_ctor_set_uint8(x_33, sizeof(void*)*2, x_43); +lean_ctor_set(x_40, 0, x_33); +return x_40; +} +else +{ +uint8_t x_44; +lean_free_object(x_40); +lean_free_object(x_33); +x_44 = !lean_is_exclusive(x_42); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_42, 0); +x_46 = lean_ctor_get(x_42, 1); +lean_inc_ref(x_45); +x_47 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_38, x_39, x_45, x_46, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_47) == 0) +{ +uint8_t x_48; +x_48 = !lean_is_exclusive(x_47); +if (x_48 == 0) +{ +lean_object* x_49; +x_49 = lean_ctor_get(x_47, 0); +lean_ctor_set(x_42, 1, x_49); +lean_ctor_set(x_47, 0, x_42); +return x_47; +} +else +{ +lean_object* x_50; lean_object* x_51; +x_50 = lean_ctor_get(x_47, 0); +lean_inc(x_50); +lean_dec(x_47); +lean_ctor_set(x_42, 1, x_50); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_42); +return x_51; +} +} +else +{ +uint8_t x_52; +lean_free_object(x_42); +lean_dec_ref(x_45); +x_52 = !lean_is_exclusive(x_47); +if (x_52 == 0) +{ +return x_47; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_47, 0); +lean_inc(x_53); +lean_dec(x_47); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_53); +return x_54; +} +} +} +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_42, 0); +x_56 = lean_ctor_get(x_42, 1); +x_57 = lean_ctor_get_uint8(x_42, sizeof(void*)*2); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_42); +lean_inc_ref(x_55); +x_58 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_38, x_39, x_55, x_56, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + x_60 = x_58; +} else { + lean_dec_ref(x_58); + x_60 = lean_box(0); +} +x_61 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_61, 0, x_55); +lean_ctor_set(x_61, 1, x_59); +lean_ctor_set_uint8(x_61, sizeof(void*)*2, x_57); +if (lean_is_scalar(x_60)) { + x_62 = lean_alloc_ctor(0, 1, 0); +} else { + x_62 = x_60; +} +lean_ctor_set(x_62, 0, x_61); +return x_62; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +lean_dec_ref(x_55); +x_63 = lean_ctor_get(x_58, 0); +lean_inc(x_63); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + x_64 = x_58; +} else { + lean_dec_ref(x_58); + x_64 = lean_box(0); +} +if (lean_is_scalar(x_64)) { + x_65 = lean_alloc_ctor(1, 1, 0); +} else { + x_65 = x_64; +} +lean_ctor_set(x_65, 0, x_63); +return x_65; +} +} +} +} +else +{ +lean_object* x_66; +x_66 = lean_ctor_get(x_40, 0); +lean_inc(x_66); +lean_dec(x_40); +if (lean_obj_tag(x_66) == 0) +{ +uint8_t x_67; lean_object* x_68; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_67 = lean_ctor_get_uint8(x_66, 0); +lean_dec_ref(x_66); +lean_ctor_set_uint8(x_33, sizeof(void*)*2, x_67); +x_68 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_68, 0, x_33); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; uint8_t x_71; lean_object* x_72; lean_object* x_73; +lean_free_object(x_33); +x_69 = lean_ctor_get(x_66, 0); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_66, 1); +lean_inc_ref(x_70); +x_71 = lean_ctor_get_uint8(x_66, sizeof(void*)*2); +if (lean_is_exclusive(x_66)) { + lean_ctor_release(x_66, 0); + lean_ctor_release(x_66, 1); + x_72 = x_66; +} else { + lean_dec_ref(x_66); + x_72 = lean_box(0); +} +lean_inc_ref(x_69); +x_73 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_38, x_39, x_69, x_70, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_74 = lean_ctor_get(x_73, 0); +lean_inc(x_74); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + x_75 = x_73; +} else { + lean_dec_ref(x_73); + x_75 = lean_box(0); +} +if (lean_is_scalar(x_72)) { + x_76 = lean_alloc_ctor(1, 2, 1); +} else { + x_76 = x_72; +} +lean_ctor_set(x_76, 0, x_69); +lean_ctor_set(x_76, 1, x_74); +lean_ctor_set_uint8(x_76, sizeof(void*)*2, x_71); +if (lean_is_scalar(x_75)) { + x_77 = lean_alloc_ctor(0, 1, 0); +} else { + x_77 = x_75; +} +lean_ctor_set(x_77, 0, x_76); +return x_77; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; +lean_dec(x_72); +lean_dec_ref(x_69); +x_78 = lean_ctor_get(x_73, 0); +lean_inc(x_78); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + x_79 = x_73; +} else { + lean_dec_ref(x_73); + x_79 = lean_box(0); +} +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(1, 1, 0); +} else { + x_80 = x_79; +} +lean_ctor_set(x_80, 0, x_78); +return x_80; +} +} +} +} +else +{ +lean_free_object(x_33); +lean_dec_ref(x_39); +lean_dec_ref(x_38); +x_12 = x_40; +goto block_16; +} +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_33, 0); +x_82 = lean_ctor_get(x_33, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_33); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_81); +x_83 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_22, x_81, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + x_85 = x_83; +} else { + lean_dec_ref(x_83); + x_85 = lean_box(0); +} +if (lean_obj_tag(x_84) == 0) +{ +uint8_t x_86; lean_object* x_87; lean_object* x_88; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_86 = lean_ctor_get_uint8(x_84, 0); +lean_dec_ref(x_84); +x_87 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_87, 0, x_81); +lean_ctor_set(x_87, 1, x_82); +lean_ctor_set_uint8(x_87, sizeof(void*)*2, x_86); +if (lean_is_scalar(x_85)) { + x_88 = lean_alloc_ctor(0, 1, 0); +} else { + x_88 = x_85; +} +lean_ctor_set(x_88, 0, x_87); +return x_88; +} +else +{ +lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_85); +x_89 = lean_ctor_get(x_84, 0); +lean_inc_ref(x_89); +x_90 = lean_ctor_get(x_84, 1); +lean_inc_ref(x_90); +x_91 = lean_ctor_get_uint8(x_84, sizeof(void*)*2); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + lean_ctor_release(x_84, 1); + x_92 = x_84; +} else { + lean_dec_ref(x_84); + x_92 = lean_box(0); +} +lean_inc_ref(x_89); +x_93 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_81, x_82, x_89, x_90, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_94 = lean_ctor_get(x_93, 0); +lean_inc(x_94); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + x_95 = x_93; +} else { + lean_dec_ref(x_93); + x_95 = lean_box(0); +} +if (lean_is_scalar(x_92)) { + x_96 = lean_alloc_ctor(1, 2, 1); +} else { + x_96 = x_92; +} +lean_ctor_set(x_96, 0, x_89); +lean_ctor_set(x_96, 1, x_94); +lean_ctor_set_uint8(x_96, sizeof(void*)*2, x_91); +if (lean_is_scalar(x_95)) { + x_97 = lean_alloc_ctor(0, 1, 0); +} else { + x_97 = x_95; +} +lean_ctor_set(x_97, 0, x_96); +return x_97; +} +else +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec(x_92); +lean_dec_ref(x_89); +x_98 = lean_ctor_get(x_93, 0); +lean_inc(x_98); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + x_99 = x_93; +} else { + lean_dec_ref(x_93); + x_99 = lean_box(0); +} +if (lean_is_scalar(x_99)) { + x_100 = lean_alloc_ctor(1, 1, 0); +} else { + x_100 = x_99; +} +lean_ctor_set(x_100, 0, x_98); +return x_100; +} +} +} +else +{ +lean_dec_ref(x_82); +lean_dec_ref(x_81); +x_12 = x_83; +goto block_16; +} +} +} +else +{ +lean_dec_ref(x_33); +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_32; +goto block_16; +} +} +} +else +{ +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_32; +goto block_16; +} +} +else +{ +lean_object* x_101; +lean_dec(x_25); +lean_dec(x_22); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_101 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +lean_ctor_set(x_23, 0, x_101); +return x_23; +} +} +else +{ +lean_object* x_102; +x_102 = lean_ctor_get(x_23, 0); +lean_inc(x_102); +lean_dec(x_23); +if (lean_obj_tag(x_102) == 1) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +lean_dec_ref(x_102); +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); +lean_inc(x_105); +lean_dec(x_103); +x_106 = lean_unsigned_to_nat(1u); +x_107 = lean_nat_add(x_104, x_106); +lean_dec(x_104); +x_108 = lean_nat_add(x_107, x_105); +lean_dec(x_105); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_109 = l_Lean_Meta_Sym_Simp_simpAppArgRange(x_1, x_107, x_108, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_108); +lean_dec(x_107); +if (lean_obj_tag(x_109) == 0) +{ +lean_object* x_110; +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +if (lean_obj_tag(x_110) == 0) +{ +uint8_t x_111; +x_111 = lean_ctor_get_uint8(x_110, 0); +lean_dec_ref(x_110); +if (x_111 == 0) +{ +lean_object* x_112; +lean_dec_ref(x_109); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_1); +x_112 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_22, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = x_112; +goto block_16; +} +else +{ +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_109; +goto block_16; +} +} +else +{ +uint8_t x_113; +x_113 = lean_ctor_get_uint8(x_110, sizeof(void*)*2); +if (x_113 == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +lean_dec_ref(x_109); +x_114 = lean_ctor_get(x_110, 0); +lean_inc_ref(x_114); +x_115 = lean_ctor_get(x_110, 1); +lean_inc_ref(x_115); +if (lean_is_exclusive(x_110)) { + lean_ctor_release(x_110, 0); + lean_ctor_release(x_110, 1); + x_116 = x_110; +} else { + lean_dec_ref(x_110); + x_116 = lean_box(0); +} +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_114); +x_117 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(x_22, x_114, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_117) == 0) +{ +lean_object* x_118; lean_object* x_119; +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +if (lean_is_exclusive(x_117)) { + lean_ctor_release(x_117, 0); + x_119 = x_117; +} else { + lean_dec_ref(x_117); + x_119 = lean_box(0); +} +if (lean_obj_tag(x_118) == 0) +{ +uint8_t x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_120 = lean_ctor_get_uint8(x_118, 0); +lean_dec_ref(x_118); +if (lean_is_scalar(x_116)) { + x_121 = lean_alloc_ctor(1, 2, 1); +} else { + x_121 = x_116; +} +lean_ctor_set(x_121, 0, x_114); +lean_ctor_set(x_121, 1, x_115); +lean_ctor_set_uint8(x_121, sizeof(void*)*2, x_120); +if (lean_is_scalar(x_119)) { + x_122 = lean_alloc_ctor(0, 1, 0); +} else { + x_122 = x_119; +} +lean_ctor_set(x_122, 0, x_121); +return x_122; +} +else +{ +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_119); +lean_dec(x_116); +x_123 = lean_ctor_get(x_118, 0); +lean_inc_ref(x_123); +x_124 = lean_ctor_get(x_118, 1); +lean_inc_ref(x_124); +x_125 = lean_ctor_get_uint8(x_118, sizeof(void*)*2); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + x_126 = x_118; +} else { + lean_dec_ref(x_118); + x_126 = lean_box(0); +} +lean_inc_ref(x_123); +x_127 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_114, x_115, x_123, x_124, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_127) == 0) +{ +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_128 = lean_ctor_get(x_127, 0); +lean_inc(x_128); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + x_129 = x_127; +} else { + lean_dec_ref(x_127); + x_129 = lean_box(0); +} +if (lean_is_scalar(x_126)) { + x_130 = lean_alloc_ctor(1, 2, 1); +} else { + x_130 = x_126; +} +lean_ctor_set(x_130, 0, x_123); +lean_ctor_set(x_130, 1, x_128); +lean_ctor_set_uint8(x_130, sizeof(void*)*2, x_125); +if (lean_is_scalar(x_129)) { + x_131 = lean_alloc_ctor(0, 1, 0); +} else { + x_131 = x_129; +} +lean_ctor_set(x_131, 0, x_130); +return x_131; +} +else +{ +lean_object* x_132; lean_object* x_133; lean_object* x_134; +lean_dec(x_126); +lean_dec_ref(x_123); +x_132 = lean_ctor_get(x_127, 0); +lean_inc(x_132); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + x_133 = x_127; +} else { + lean_dec_ref(x_127); + x_133 = lean_box(0); +} +if (lean_is_scalar(x_133)) { + x_134 = lean_alloc_ctor(1, 1, 0); +} else { + x_134 = x_133; +} +lean_ctor_set(x_134, 0, x_132); +return x_134; +} +} +} +else +{ +lean_dec(x_116); +lean_dec_ref(x_115); +lean_dec_ref(x_114); +x_12 = x_117; +goto block_16; +} +} +else +{ +lean_dec_ref(x_110); +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_109; +goto block_16; +} +} +} +else +{ +lean_dec(x_22); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_109; +goto block_16; +} +} +else +{ +lean_object* x_135; lean_object* x_136; +lean_dec(x_102); +lean_dec(x_22); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_135 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_136 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_136, 0, x_135); +return x_136; +} +} +} +else +{ +lean_object* x_137; lean_object* x_138; +lean_dec(x_21); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_137 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_138 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_138, 0, x_137); +return x_138; +} +} +block_16: +{ +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = lean_ctor_get_uint8(x_13, 0); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec_ref(x_12); +x_15 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +return x_15; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher___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_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +static lean_object* _init_l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(5u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv(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: +{ +uint8_t x_12; +x_12 = l_Lean_Expr_isApp(x_1); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_13 = lean_alloc_ctor(0, 0, 1); +lean_ctor_set_uint8(x_13, 0, x_12); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; +} +else +{ +lean_object* x_15; +x_15 = l_Lean_Expr_getAppFn(x_1); +if (lean_obj_tag(x_15) == 4) +{ +lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +lean_dec_ref(x_15); +x_17 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__1)); +x_18 = lean_name_eq(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__1)); +x_20 = lean_name_eq(x_16, x_19); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = ((lean_object*)(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__1)); +x_22 = lean_name_eq(x_16, x_21); +if (x_22 == 0) +{ +lean_object* x_23; uint8_t x_24; +x_23 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__3)); +x_24 = lean_name_eq(x_16, x_23); +lean_dec(x_16); +if (x_24 == 0) +{ +lean_object* x_25; +x_25 = l___private_Lean_Meta_Tactic_Cbv_ControlFlow_0__Lean_Meta_Tactic_Cbv_tryMatcher(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_25; +} +else +{ +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; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_26 = l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4; +x_27 = lean_box(x_22); +x_28 = lean_array_push(x_26, x_27); +x_29 = lean_box(x_22); +x_30 = lean_array_push(x_28, x_29); +x_31 = lean_box(x_12); +x_32 = lean_array_push(x_30, x_31); +x_33 = lean_box(x_12); +x_34 = lean_array_push(x_32, x_33); +x_35 = lean_box(x_12); +x_36 = lean_array_push(x_34, x_35); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_1); +x_37 = l_Lean_Meta_Sym_Simp_simpInterlaced(x_1, x_36, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +if (lean_obj_tag(x_38) == 0) +{ +uint8_t x_39; +x_39 = lean_ctor_get_uint8(x_38, 0); +lean_dec_ref(x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec_ref(x_37); +x_40 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +return x_40; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_37; +} +} +else +{ +uint8_t x_41; +x_41 = lean_ctor_get_uint8(x_38, sizeof(void*)*2); +if (x_41 == 0) +{ +uint8_t x_42; +lean_dec_ref(x_37); +x_42 = !lean_is_exclusive(x_38); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_38, 0); +x_44 = lean_ctor_get(x_38, 1); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_43); +x_45 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_43, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_45) == 0) +{ +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_45, 0); +if (lean_obj_tag(x_47) == 0) +{ +uint8_t x_48; +lean_dec_ref(x_47); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_48 = 0; +lean_ctor_set_uint8(x_38, sizeof(void*)*2, x_48); +lean_ctor_set(x_45, 0, x_38); +return x_45; +} +else +{ +uint8_t x_49; +lean_free_object(x_45); +lean_free_object(x_38); +x_49 = !lean_is_exclusive(x_47); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; uint8_t x_52; lean_object* x_53; +x_50 = lean_ctor_get(x_47, 0); +x_51 = lean_ctor_get(x_47, 1); +x_52 = 0; +lean_inc_ref(x_50); +x_53 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_43, x_44, x_50, x_51, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_53) == 0) +{ +uint8_t x_54; +x_54 = !lean_is_exclusive(x_53); +if (x_54 == 0) +{ +lean_object* x_55; +x_55 = lean_ctor_get(x_53, 0); +lean_ctor_set(x_47, 1, x_55); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_52); +lean_ctor_set(x_53, 0, x_47); +return x_53; +} +else +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_53, 0); +lean_inc(x_56); +lean_dec(x_53); +lean_ctor_set(x_47, 1, x_56); +lean_ctor_set_uint8(x_47, sizeof(void*)*2, x_52); +x_57 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_57, 0, x_47); +return x_57; +} +} +else +{ +uint8_t x_58; +lean_free_object(x_47); +lean_dec_ref(x_50); +x_58 = !lean_is_exclusive(x_53); +if (x_58 == 0) +{ +return x_53; +} +else +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_53, 0); +lean_inc(x_59); +lean_dec(x_53); +x_60 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_60, 0, x_59); +return x_60; +} +} +} +else +{ +lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_47, 0); +x_62 = lean_ctor_get(x_47, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_47); +x_63 = 0; +lean_inc_ref(x_61); +x_64 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_43, x_44, x_61, x_62, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + x_66 = x_64; +} else { + lean_dec_ref(x_64); + x_66 = lean_box(0); +} +x_67 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_67, 0, x_61); +lean_ctor_set(x_67, 1, x_65); +lean_ctor_set_uint8(x_67, sizeof(void*)*2, x_63); +if (lean_is_scalar(x_66)) { + x_68 = lean_alloc_ctor(0, 1, 0); +} else { + x_68 = x_66; +} +lean_ctor_set(x_68, 0, x_67); +return x_68; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; +lean_dec_ref(x_61); +x_69 = lean_ctor_get(x_64, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + x_70 = x_64; +} else { + lean_dec_ref(x_64); + x_70 = lean_box(0); +} +if (lean_is_scalar(x_70)) { + x_71 = lean_alloc_ctor(1, 1, 0); +} else { + x_71 = x_70; +} +lean_ctor_set(x_71, 0, x_69); +return x_71; +} +} +} +} +else +{ +lean_object* x_72; +x_72 = lean_ctor_get(x_45, 0); +lean_inc(x_72); +lean_dec(x_45); +if (lean_obj_tag(x_72) == 0) +{ +uint8_t x_73; lean_object* x_74; +lean_dec_ref(x_72); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_73 = 0; +lean_ctor_set_uint8(x_38, sizeof(void*)*2, x_73); +x_74 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_74, 0, x_38); +return x_74; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; +lean_free_object(x_38); +x_75 = lean_ctor_get(x_72, 0); +lean_inc_ref(x_75); +x_76 = lean_ctor_get(x_72, 1); +lean_inc_ref(x_76); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_77 = x_72; +} else { + lean_dec_ref(x_72); + x_77 = lean_box(0); +} +x_78 = 0; +lean_inc_ref(x_75); +x_79 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_43, x_44, x_75, x_76, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_79) == 0) +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + x_81 = x_79; +} else { + lean_dec_ref(x_79); + x_81 = lean_box(0); +} +if (lean_is_scalar(x_77)) { + x_82 = lean_alloc_ctor(1, 2, 1); +} else { + x_82 = x_77; +} +lean_ctor_set(x_82, 0, x_75); +lean_ctor_set(x_82, 1, x_80); +lean_ctor_set_uint8(x_82, sizeof(void*)*2, x_78); +if (lean_is_scalar(x_81)) { + x_83 = lean_alloc_ctor(0, 1, 0); +} else { + x_83 = x_81; +} +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_77); +lean_dec_ref(x_75); +x_84 = lean_ctor_get(x_79, 0); +lean_inc(x_84); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + x_85 = x_79; +} else { + lean_dec_ref(x_79); + x_85 = lean_box(0); +} +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 1, 0); +} else { + x_86 = x_85; +} +lean_ctor_set(x_86, 0, x_84); +return x_86; +} +} +} +} +else +{ +lean_free_object(x_38); +lean_dec_ref(x_44); +lean_dec_ref(x_43); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_45; +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_38, 0); +x_88 = lean_ctor_get(x_38, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_38); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_87); +x_89 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_87, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; lean_object* x_91; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + x_91 = x_89; +} else { + lean_dec_ref(x_89); + x_91 = lean_box(0); +} +if (lean_obj_tag(x_90) == 0) +{ +uint8_t x_92; lean_object* x_93; lean_object* x_94; +lean_dec_ref(x_90); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_92 = 0; +x_93 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_93, 0, x_87); +lean_ctor_set(x_93, 1, x_88); +lean_ctor_set_uint8(x_93, sizeof(void*)*2, x_92); +if (lean_is_scalar(x_91)) { + x_94 = lean_alloc_ctor(0, 1, 0); +} else { + x_94 = x_91; +} +lean_ctor_set(x_94, 0, x_93); +return x_94; +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; lean_object* x_99; +lean_dec(x_91); +x_95 = lean_ctor_get(x_90, 0); +lean_inc_ref(x_95); +x_96 = lean_ctor_get(x_90, 1); +lean_inc_ref(x_96); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_97 = x_90; +} else { + lean_dec_ref(x_90); + x_97 = lean_box(0); +} +x_98 = 0; +lean_inc_ref(x_95); +x_99 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_87, x_88, x_95, x_96, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + x_101 = x_99; +} else { + lean_dec_ref(x_99); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_97)) { + x_102 = lean_alloc_ctor(1, 2, 1); +} else { + x_102 = x_97; +} +lean_ctor_set(x_102, 0, x_95); +lean_ctor_set(x_102, 1, x_100); +lean_ctor_set_uint8(x_102, sizeof(void*)*2, x_98); +if (lean_is_scalar(x_101)) { + x_103 = lean_alloc_ctor(0, 1, 0); +} else { + x_103 = x_101; +} +lean_ctor_set(x_103, 0, x_102); +return x_103; +} +else +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; +lean_dec(x_97); +lean_dec_ref(x_95); +x_104 = lean_ctor_get(x_99, 0); +lean_inc(x_104); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + x_105 = x_99; +} else { + lean_dec_ref(x_99); + x_105 = lean_box(0); +} +if (lean_is_scalar(x_105)) { + x_106 = lean_alloc_ctor(1, 1, 0); +} else { + x_106 = x_105; +} +lean_ctor_set(x_106, 0, x_104); +return x_106; +} +} +} +else +{ +lean_dec_ref(x_88); +lean_dec_ref(x_87); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_89; +} +} +} +else +{ +lean_dec_ref(x_38); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_37; +} +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_37; +} +} +} +else +{ +lean_object* x_107; +lean_dec(x_16); +x_107 = l_Lean_Meta_Sym_Simp_simpDIteCbv(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_107; +} +} +else +{ +lean_object* x_108; +lean_dec(x_16); +x_108 = l_Lean_Meta_Sym_Simp_simpCond(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_108; +} +} +else +{ +lean_object* x_109; +lean_dec(x_16); +x_109 = l_Lean_Meta_Sym_Simp_simpIteCbv(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_109; +} +} +else +{ +lean_object* x_110; lean_object* x_111; +lean_dec_ref(x_15); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_110 = ((lean_object*)(l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_111 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_111, 0, x_110); +return x_111; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Cbv_simpControlCbv___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_Lean_Meta_Tactic_Cbv_simpControlCbv(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +lean_object* initialize_Lean_Meta_Sym_Simp_SimpM(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Simp_Result(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Simp_Rewrite(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Simp_ControlFlow(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_AlphaShareBuilder(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_InstantiateS(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_InferType(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Simp_App(uint8_t builtin); +lean_object* initialize_Lean_Meta_SynthInstance(uint8_t builtin); +lean_object* initialize_Lean_Meta_WHNF(uint8_t builtin); +lean_object* initialize_Lean_Meta_AppBuilder(uint8_t builtin); +lean_object* initialize_Init_Sym_Lemmas(uint8_t builtin); +lean_object* initialize_Lean_Meta_Tactic_Cbv_TheoremsLookup(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Cbv_ControlFlow(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Lean_Meta_Sym_Simp_SimpM(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Simp_Result(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Simp_Rewrite(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Simp_ControlFlow(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_AlphaShareBuilder(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_InstantiateS(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_InferType(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Simp_App(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_SynthInstance(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_WHNF(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_AppBuilder(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Sym_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Cbv_TheoremsLookup(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__4); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__7); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__10); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__13); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__22); +l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25 = _init_l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpIteCbv___lam__0___closed__25); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__7); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__8); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__9); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__12); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__15); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__16); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__24); +l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25 = _init_l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25(); +lean_mark_persistent(l_Lean_Meta_Sym_Simp_simpDIteCbv___lam__0___closed__25); +l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4 = _init_l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4(); +lean_mark_persistent(l_Lean_Meta_Tactic_Cbv_simpControlCbv___closed__4); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cbv/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Cbv/Main.c index aef274fad8..675abb9241 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Cbv/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Cbv/Main.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Cbv.Main -// Imports: public import Lean.Meta.Sym.Simp.SimpM public import Lean.Meta.Tactic.Cbv.Opaque import Lean.Meta.Tactic.Cbv.Util import Lean.Meta.Tactic.Cbv.TheoremsLookup import Lean.Meta.Sym +// Imports: public import Lean.Meta.Sym.Simp.SimpM public import Lean.Meta.Tactic.Cbv.Opaque public import Lean.Meta.Tactic.Cbv.ControlFlow import Lean.Meta.Tactic.Cbv.Util import Lean.Meta.Tactic.Cbv.TheoremsLookup import Lean.Meta.Tactic.Cbv.CbvEvalExt import Lean.Meta.Sym #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -59,14 +59,8 @@ lean_object* l_Lean_Meta_Tactic_Cbv_getMatchTheorems(lean_object*, lean_object*, lean_object* l_Lean_Meta_Sym_Simp_Theorems_rewrite(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___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatchEquations(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___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 const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*0 + 8, .m_other = 0, .m_tag = 0}, .m_objs = {LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; -static const lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0 = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0_value; -lean_object* l_Lean_Meta_reduceRecMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_Sym_mkEqRefl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static const lean_ctor_object l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*0 + 8, .m_other = 0, .m_tag = 0}, .m_objs = {LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0 = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0_value; uint8_t l_Lean_Expr_isApp(lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l_Lean_Expr_constName_x3f(lean_object*); @@ -83,6 +77,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_ LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0(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_getMatcherInfo_x3f___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatcher_spec__0___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* l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Meta_Sym_Simp_simpAppArgRange(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_Sym_Simp_mkEqTrans___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -92,13 +87,17 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tact LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConstApp___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* l_Lean_Expr_headBeta(lean_object*); lean_object* l_Lean_Meta_Sym_shareCommonInc___redArg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_mkEqRefl___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce___redArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce___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* l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems___boxed(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_ConstantInfo_hasValue(lean_object*, uint8_t); -LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0_spec__0_spec__1_spec__2_spec__3_spec__4___redArg___closed__0; static lean_object* l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0_spec__0_spec__1_spec__2_spec__3_spec__4___redArg___closed__1; @@ -185,12 +184,9 @@ LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___00Lean_throwUnknownIdentifie LEAN_EXPORT lean_object* l_Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0_spec__0_spec__1_spec__2_spec__4_spec__6(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_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0_spec__0_spec__1_spec__2_spec__4_spec__6___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* l_Lean_Meta_Tactic_Cbv_isCbvOpaque___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_Simp_simpAppArgs(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___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___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___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* l_Lean_Expr_rawNatLit_x3f(lean_object*); @@ -245,13 +241,9 @@ uint8_t l_Lean_ConstantInfo_isDefinition(lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst___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* l_Lean_Meta_Sym_Simp_simpControl(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_Tactic_Cbv_simpControlCbv(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__0(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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__0___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_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__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_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__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 const lean_closure_object l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__0___boxed, .m_arity = 12, .m_num_fixed = 0, .m_objs = {} }; -static const lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___closed__0 = (const lean_object*)&l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___closed__0_value; lean_object* l_Lean_Meta_Tactic_Cbv_isBuiltinValue___redArg(lean_object*); lean_object* l_Lean_Meta_Tactic_Cbv_isProofTerm___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -597,229 +589,6 @@ x_13 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatchEqu return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_8; -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -x_8 = l_Lean_Meta_reduceRecMatcher_x3f(x_1, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; -x_10 = lean_ctor_get(x_8, 0); -if (lean_obj_tag(x_10) == 1) -{ -lean_object* x_11; lean_object* x_12; -lean_free_object(x_8); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec_ref(x_10); -lean_inc(x_11); -x_12 = l_Lean_Meta_Sym_mkEqRefl___redArg(x_11, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_12) == 0) -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; uint8_t x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_12, 0); -x_15 = 0; -x_16 = lean_alloc_ctor(1, 2, 1); -lean_ctor_set(x_16, 0, x_11); -lean_ctor_set(x_16, 1, x_14); -lean_ctor_set_uint8(x_16, sizeof(void*)*2, x_15); -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_12, 0); -lean_inc(x_17); -lean_dec(x_12); -x_18 = 0; -x_19 = lean_alloc_ctor(1, 2, 1); -lean_ctor_set(x_19, 0, x_11); -lean_ctor_set(x_19, 1, x_17); -lean_ctor_set_uint8(x_19, sizeof(void*)*2, x_18); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_19); -return x_20; -} -} -else -{ -uint8_t x_21; -lean_dec(x_11); -x_21 = !lean_is_exclusive(x_12); -if (x_21 == 0) -{ -return x_12; -} -else -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_12, 0); -lean_inc(x_22); -lean_dec(x_12); -x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_22); -return x_23; -} -} -} -else -{ -lean_object* x_24; -lean_dec(x_10); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_24 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); -lean_ctor_set(x_8, 0, x_24); -return x_8; -} -} -else -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_8, 0); -lean_inc(x_25); -lean_dec(x_8); -if (lean_obj_tag(x_25) == 1) -{ -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec_ref(x_25); -lean_inc(x_26); -x_27 = l_Lean_Meta_Sym_mkEqRefl___redArg(x_26, x_2, x_3, x_4, x_5, x_6); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - x_29 = x_27; -} else { - lean_dec_ref(x_27); - x_29 = lean_box(0); -} -x_30 = 0; -x_31 = lean_alloc_ctor(1, 2, 1); -lean_ctor_set(x_31, 0, x_26); -lean_ctor_set(x_31, 1, x_28); -lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_30); -if (lean_is_scalar(x_29)) { - x_32 = lean_alloc_ctor(0, 1, 0); -} else { - x_32 = x_29; -} -lean_ctor_set(x_32, 0, x_31); -return x_32; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -lean_dec(x_26); -x_33 = lean_ctor_get(x_27, 0); -lean_inc(x_33); -if (lean_is_exclusive(x_27)) { - lean_ctor_release(x_27, 0); - x_34 = x_27; -} else { - lean_dec_ref(x_27); - x_34 = lean_box(0); -} -if (lean_is_scalar(x_34)) { - x_35 = lean_alloc_ctor(1, 1, 0); -} else { - x_35 = x_34; -} -lean_ctor_set(x_35, 0, x_33); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; -lean_dec(x_25); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_36 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); -x_37 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_37, 0, x_36); -return x_37; -} -} -} -else -{ -uint8_t x_38; -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -x_38 = !lean_is_exclusive(x_8); -if (x_38 == 0) -{ -return x_8; -} -else -{ -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_8, 0); -lean_inc(x_39); -lean_dec(x_8); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -return x_40; -} -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___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) { -_start: -{ -lean_object* x_8; -x_8 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_2); -return x_8; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher(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_12; -x_12 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -return x_12; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations(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: { @@ -915,7 +684,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_25 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_25 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_26 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_26, 0, x_25); return x_26; @@ -1005,7 +774,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_24 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_24 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); lean_ctor_set(x_18, 0, x_24); return x_18; } @@ -1040,7 +809,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_29 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_29 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_30 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_30, 0, x_29); return x_30; @@ -1091,7 +860,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_34 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_34 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_35 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_35, 0, x_34); return x_35; @@ -1701,7 +1470,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_101 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_101 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); lean_ctor_set(x_23, 0, x_101); return x_23; } @@ -1963,7 +1732,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_135 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_135 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_136 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_136, 0, x_135); return x_136; @@ -1984,7 +1753,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_137 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_137 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_138 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_138, 0, x_137); return x_138; @@ -2004,7 +1773,7 @@ if (x_14 == 0) { lean_object* x_15; lean_dec_ref(x_12); -x_15 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +x_15 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); return x_15; } @@ -2260,26 +2029,175 @@ lean_dec(x_2); return x_12; } } -LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(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: { -uint8_t x_3; uint8_t x_4; -x_3 = 0; -x_4 = l_Lean_ConstantInfo_hasValue(x_1, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed(lean_object* x_1, lean_object* x_2) { -_start: +lean_object* x_12; lean_object* x_13; +x_12 = l_Lean_Expr_getAppFn(x_1); +x_13 = l_Lean_Expr_constName_x3f(x_12); +lean_dec_ref(x_12); +if (lean_obj_tag(x_13) == 1) { -uint8_t x_3; lean_object* x_4; -x_3 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(x_1, x_2); -lean_dec_ref(x_2); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +x_15 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(x_14, x_10); +lean_dec(x_14); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_15, 0); +if (lean_obj_tag(x_17) == 1) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_free_object(x_15); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0)); +x_20 = l_Lean_Meta_Sym_Simp_Theorems_rewrite(x_18, x_19, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_20; +} +else +{ +lean_object* x_21; +lean_dec(x_17); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); lean_dec_ref(x_1); -x_4 = lean_box(x_3); +x_21 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +lean_ctor_set(x_15, 0, x_21); +return x_15; +} +} +else +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_15, 0); +lean_inc(x_22); +lean_dec(x_15); +if (lean_obj_tag(x_22) == 1) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +lean_dec_ref(x_22); +x_24 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatchEquations___closed__0)); +x_25 = l_Lean_Meta_Sym_Simp_Theorems_rewrite(x_23, x_24, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; +lean_dec(x_22); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_26 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +x_27 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_27, 0, x_26); +return x_27; +} +} +} +else +{ +uint8_t x_28; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_28 = !lean_is_exclusive(x_15); +if (x_28 == 0) +{ +return x_15; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_15, 0); +lean_inc(x_29); +lean_dec(x_15); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +return x_30; +} +} +} +else +{ +lean_object* x_31; lean_object* x_32; +lean_dec(x_13); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_31 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +x_32 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems___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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT uint8_t l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(lean_object* x_1, uint8_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_ConstantInfo_hasValue(x_1, x_2); return x_4; } } +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox(x_2); +x_5 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0(x_1, x_4, x_3); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_6 = lean_box(x_5); +return x_6; +} +} static lean_object* _init_l_Lean_mkUnknownIdentifierMessageCore___at___00Lean_mkUnknownIdentifierMessage___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0_spec__0_spec__1_spec__2_spec__3_spec__4___redArg___closed__0() { _start: { @@ -3110,37 +3028,64 @@ lean_inc_ref(x_9); x_17 = l_Lean_getConstInfo___at___00__private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp_spec__0(x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_17) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_object* x_18; lean_object* x_19; x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); lean_dec_ref(x_17); -x_19 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed), 2, 1); -lean_closure_set(x_19, 0, x_18); -x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConstApp___boxed), 11, 0); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_19 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(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_19) == 0) +{ +lean_object* x_20; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +if (lean_obj_tag(x_20) == 0) +{ +uint8_t x_21; +x_21 = lean_ctor_get_uint8(x_20, 0); +lean_dec_ref(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec_ref(x_19); +x_22 = lean_box(x_21); +x_23 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleApp___lam__0___boxed), 3, 2); +lean_closure_set(x_23, 0, x_18); +lean_closure_set(x_23, 1, x_22); +x_24 = lean_alloc_closure((void*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConstApp___boxed), 11, 0); lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); lean_inc(x_6); lean_inc_ref(x_1); -x_21 = l_Lean_Meta_Tactic_Cbv_guardSimproc(x_19, x_20, 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_21) == 0) +x_25 = l_Lean_Meta_Tactic_Cbv_guardSimproc(x_23, x_24, 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_25) == 0) { -lean_object* x_22; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) +lean_object* x_26; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +if (lean_obj_tag(x_26) == 0) { -uint8_t x_23; -x_23 = lean_ctor_get_uint8(x_22, 0); -lean_dec_ref(x_22); -if (x_23 == 0) +uint8_t x_27; +x_27 = lean_ctor_get_uint8(x_26, 0); +lean_dec_ref(x_26); +if (x_27 == 0) { -lean_object* x_24; -lean_dec_ref(x_21); -x_24 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +lean_object* x_28; +lean_dec_ref(x_25); +x_28 = l_Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg(x_1, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); -return x_24; +return x_28; } else { @@ -3150,19 +3095,19 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_1); -return x_21; +return x_25; } } else { -lean_dec_ref(x_22); +lean_dec_ref(x_26); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_1); -return x_21; +return x_25; } } else @@ -3173,12 +3118,12 @@ lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); lean_dec_ref(x_1); -return x_21; +return x_25; } } else { -uint8_t x_25; +lean_dec(x_18); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -3189,38 +3134,87 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_25 = !lean_is_exclusive(x_17); -if (x_25 == 0) +return x_19; +} +} +else +{ +lean_dec_ref(x_20); +lean_dec(x_18); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_19; +} +} +else +{ +lean_dec(x_18); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_19; +} +} +else +{ +uint8_t x_29; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_29 = !lean_is_exclusive(x_17); +if (x_29 == 0) { return x_17; } else { -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_17, 0); -lean_inc(x_26); +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_17, 0); +lean_inc(x_30); lean_dec(x_17); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -return x_27; +x_31 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_31, 0, x_30); +return x_31; } } } case 6: { -lean_object* x_28; +lean_object* x_32; lean_dec_ref(x_15); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); -x_28 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +x_32 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_betaReduce___redArg(x_1, x_6, x_7, x_8, x_9, x_10); lean_dec(x_6); -return x_28; +return x_32; } default: { -lean_object* x_29; lean_object* x_30; +lean_object* x_33; lean_object* x_34; lean_dec_ref(x_15); lean_dec(x_10); lean_dec_ref(x_9); @@ -3232,10 +3226,10 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_29 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); -x_30 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_30, 0, x_29); -return x_30; +x_33 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; } } } @@ -3398,105 +3392,795 @@ lean_dec(x_3); return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = l_Lean_Expr_getAppFn(x_1); -x_5 = l_Lean_Expr_constName_x3f(x_4); -lean_dec_ref(x_4); -if (lean_obj_tag(x_5) == 1) -{ -lean_object* x_6; lean_object* x_7; -x_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -lean_dec_ref(x_5); -x_7 = l_Lean_Meta_Tactic_Cbv_isCbvOpaque___redArg(x_6, x_2); -lean_dec(x_6); -if (lean_obj_tag(x_7) == 0) -{ -uint8_t x_8; -x_8 = !lean_is_exclusive(x_7); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_9 = lean_ctor_get(x_7, 0); -x_10 = lean_alloc_ctor(0, 0, 1); -x_11 = lean_unbox(x_9); -lean_dec(x_9); -lean_ctor_set_uint8(x_10, 0, x_11); -lean_ctor_set(x_7, 0, x_10); -return x_7; -} -else -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_7, 0); -lean_inc(x_12); -lean_dec(x_7); -x_13 = lean_alloc_ctor(0, 0, 1); -x_14 = lean_unbox(x_12); -lean_dec(x_12); -lean_ctor_set_uint8(x_13, 0, x_14); -x_15 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_15, 0, x_13); -return x_15; -} -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_7); -if (x_16 == 0) -{ -return x_7; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_7, 0); -lean_inc(x_17); -lean_dec(x_7); -x_18 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -} -} -else -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_5); -x_19 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); -x_20 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_20, 0, x_19); -return x_20; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg(x_1, x_2); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_4; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp(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_12; -x_12 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg(x_1, x_10); +lean_object* x_12; lean_object* x_16; lean_object* x_17; +x_16 = l_Lean_Expr_getAppFn(x_1); +x_17 = l_Lean_Expr_constName_x3f(x_16); +lean_dec_ref(x_16); +if (lean_obj_tag(x_17) == 1) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(x_18, x_10); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec_ref(x_19); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_21 = l_Lean_Meta_Tactic_Cbv_isCbvOpaque___redArg(x_18, x_10); +lean_dec(x_10); +lean_dec(x_18); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_alloc_ctor(0, 0, 1); +x_25 = lean_unbox(x_23); +lean_dec(x_23); +lean_ctor_set_uint8(x_24, 0, x_25); +lean_ctor_set(x_21, 0, x_24); +return x_21; +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_21, 0); +lean_inc(x_26); +lean_dec(x_21); +x_27 = lean_alloc_ctor(0, 0, 1); +x_28 = lean_unbox(x_26); +lean_dec(x_26); +lean_ctor_set_uint8(x_27, 0, x_28); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_27); +return x_29; +} +} +else +{ +uint8_t x_30; +x_30 = !lean_is_exclusive(x_21); +if (x_30 == 0) +{ +return x_21; +} +else +{ +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_21, 0); +lean_inc(x_31); +lean_dec(x_21); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; +} +} +} +else +{ +lean_object* x_33; +lean_dec_ref(x_20); +lean_dec(x_18); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_33 = l_Lean_Meta_Sym_Simp_simpAppArgs(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_33) == 0) +{ +lean_object* x_34; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = lean_ctor_get_uint8(x_34, 0); +lean_dec_ref(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +lean_dec_ref(x_33); +x_36 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = x_36; +goto block_15; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_12 = x_33; +goto block_15; +} +} +else +{ +uint8_t x_37; +x_37 = lean_ctor_get_uint8(x_34, sizeof(void*)*2); +if (x_37 == 0) +{ +uint8_t x_38; +lean_dec_ref(x_33); +x_38 = !lean_is_exclusive(x_34); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_34, 0); +x_40 = lean_ctor_get(x_34, 1); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_39); +x_41 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(x_39, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_41) == 0) +{ +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) +{ +lean_object* x_43; +x_43 = lean_ctor_get(x_41, 0); +if (lean_obj_tag(x_43) == 0) +{ +uint8_t x_44; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_44 = lean_ctor_get_uint8(x_43, 0); +lean_dec_ref(x_43); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_44); +lean_ctor_set(x_41, 0, x_34); +return x_41; +} +else +{ +uint8_t x_45; +lean_free_object(x_41); +lean_free_object(x_34); +x_45 = !lean_is_exclusive(x_43); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_43, 0); +x_47 = lean_ctor_get(x_43, 1); +lean_inc_ref(x_46); +x_48 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_39, x_40, x_46, x_47, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_48) == 0) +{ +uint8_t x_49; +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +lean_object* x_50; +x_50 = lean_ctor_get(x_48, 0); +lean_ctor_set(x_43, 1, x_50); +lean_ctor_set(x_48, 0, x_43); +return x_48; +} +else +{ +lean_object* x_51; lean_object* x_52; +x_51 = lean_ctor_get(x_48, 0); +lean_inc(x_51); +lean_dec(x_48); +lean_ctor_set(x_43, 1, x_51); +x_52 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_52, 0, x_43); +return x_52; +} +} +else +{ +uint8_t x_53; +lean_free_object(x_43); +lean_dec_ref(x_46); +x_53 = !lean_is_exclusive(x_48); +if (x_53 == 0) +{ +return x_48; +} +else +{ +lean_object* x_54; lean_object* x_55; +x_54 = lean_ctor_get(x_48, 0); +lean_inc(x_54); +lean_dec(x_48); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_54); +return x_55; +} +} +} +else +{ +lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_object* x_59; +x_56 = lean_ctor_get(x_43, 0); +x_57 = lean_ctor_get(x_43, 1); +x_58 = lean_ctor_get_uint8(x_43, sizeof(void*)*2); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_43); +lean_inc_ref(x_56); +x_59 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_39, x_40, x_56, x_57, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + x_61 = x_59; +} else { + lean_dec_ref(x_59); + x_61 = lean_box(0); +} +x_62 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_62, 0, x_56); +lean_ctor_set(x_62, 1, x_60); +lean_ctor_set_uint8(x_62, sizeof(void*)*2, x_58); +if (lean_is_scalar(x_61)) { + x_63 = lean_alloc_ctor(0, 1, 0); +} else { + x_63 = x_61; +} +lean_ctor_set(x_63, 0, x_62); +return x_63; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec_ref(x_56); +x_64 = lean_ctor_get(x_59, 0); +lean_inc(x_64); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + x_65 = x_59; +} else { + lean_dec_ref(x_59); + x_65 = lean_box(0); +} +if (lean_is_scalar(x_65)) { + x_66 = lean_alloc_ctor(1, 1, 0); +} else { + x_66 = x_65; +} +lean_ctor_set(x_66, 0, x_64); +return x_66; +} +} +} +} +else +{ +lean_object* x_67; +x_67 = lean_ctor_get(x_41, 0); +lean_inc(x_67); +lean_dec(x_41); +if (lean_obj_tag(x_67) == 0) +{ +uint8_t x_68; lean_object* x_69; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_68 = lean_ctor_get_uint8(x_67, 0); +lean_dec_ref(x_67); +lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_68); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_34); +return x_69; +} +else +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; +lean_free_object(x_34); +x_70 = lean_ctor_get(x_67, 0); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_67, 1); +lean_inc_ref(x_71); +x_72 = lean_ctor_get_uint8(x_67, sizeof(void*)*2); +if (lean_is_exclusive(x_67)) { + lean_ctor_release(x_67, 0); + lean_ctor_release(x_67, 1); + x_73 = x_67; +} else { + lean_dec_ref(x_67); + x_73 = lean_box(0); +} +lean_inc_ref(x_70); +x_74 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_39, x_40, x_70, x_71, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_74) == 0) +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + x_76 = x_74; +} else { + lean_dec_ref(x_74); + x_76 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_77 = lean_alloc_ctor(1, 2, 1); +} else { + x_77 = x_73; +} +lean_ctor_set(x_77, 0, x_70); +lean_ctor_set(x_77, 1, x_75); +lean_ctor_set_uint8(x_77, sizeof(void*)*2, x_72); +if (lean_is_scalar(x_76)) { + x_78 = lean_alloc_ctor(0, 1, 0); +} else { + x_78 = x_76; +} +lean_ctor_set(x_78, 0, x_77); +return x_78; +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; +lean_dec(x_73); +lean_dec_ref(x_70); +x_79 = lean_ctor_get(x_74, 0); +lean_inc(x_79); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + x_80 = x_74; +} else { + lean_dec_ref(x_74); + x_80 = lean_box(0); +} +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(1, 1, 0); +} else { + x_81 = x_80; +} +lean_ctor_set(x_81, 0, x_79); +return x_81; +} +} +} +} +else +{ +lean_free_object(x_34); +lean_dec_ref(x_40); +lean_dec_ref(x_39); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_12 = x_41; +goto block_15; +} +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_34, 0); +x_83 = lean_ctor_get(x_34, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_34); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_82); +x_84 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(x_82, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_84) == 0) +{ +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_84, 0); +lean_inc(x_85); +if (lean_is_exclusive(x_84)) { + lean_ctor_release(x_84, 0); + x_86 = x_84; +} else { + lean_dec_ref(x_84); + x_86 = lean_box(0); +} +if (lean_obj_tag(x_85) == 0) +{ +uint8_t x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_87 = lean_ctor_get_uint8(x_85, 0); +lean_dec_ref(x_85); +x_88 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_88, 0, x_82); +lean_ctor_set(x_88, 1, x_83); +lean_ctor_set_uint8(x_88, sizeof(void*)*2, x_87); +if (lean_is_scalar(x_86)) { + x_89 = lean_alloc_ctor(0, 1, 0); +} else { + x_89 = x_86; +} +lean_ctor_set(x_89, 0, x_88); +return x_89; +} +else +{ +lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_86); +x_90 = lean_ctor_get(x_85, 0); +lean_inc_ref(x_90); +x_91 = lean_ctor_get(x_85, 1); +lean_inc_ref(x_91); +x_92 = lean_ctor_get_uint8(x_85, sizeof(void*)*2); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_93 = x_85; +} else { + lean_dec_ref(x_85); + x_93 = lean_box(0); +} +lean_inc_ref(x_90); +x_94 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_82, x_83, x_90, x_91, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_94) == 0) +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + x_96 = x_94; +} else { + lean_dec_ref(x_94); + x_96 = lean_box(0); +} +if (lean_is_scalar(x_93)) { + x_97 = lean_alloc_ctor(1, 2, 1); +} else { + x_97 = x_93; +} +lean_ctor_set(x_97, 0, x_90); +lean_ctor_set(x_97, 1, x_95); +lean_ctor_set_uint8(x_97, sizeof(void*)*2, x_92); +if (lean_is_scalar(x_96)) { + x_98 = lean_alloc_ctor(0, 1, 0); +} else { + x_98 = x_96; +} +lean_ctor_set(x_98, 0, x_97); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_dec(x_93); +lean_dec_ref(x_90); +x_99 = lean_ctor_get(x_94, 0); +lean_inc(x_99); +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + x_100 = x_94; +} else { + lean_dec_ref(x_94); + x_100 = lean_box(0); +} +if (lean_is_scalar(x_100)) { + x_101 = lean_alloc_ctor(1, 1, 0); +} else { + x_101 = x_100; +} +lean_ctor_set(x_101, 0, x_99); +return x_101; +} +} +} +else +{ +lean_dec_ref(x_83); +lean_dec_ref(x_82); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +x_12 = x_84; +goto block_15; +} +} +} +else +{ +lean_dec_ref(x_34); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_12 = x_33; +goto block_15; +} +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_12 = x_33; +goto block_15; +} +} +} +else +{ +uint8_t x_102; +lean_dec(x_18); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_102 = !lean_is_exclusive(x_19); +if (x_102 == 0) +{ +return x_19; +} +else +{ +lean_object* x_103; lean_object* x_104; +x_103 = lean_ctor_get(x_19, 0); +lean_inc(x_103); +lean_dec(x_19); +x_104 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_104, 0, x_103); +return x_104; +} +} +} +else +{ +lean_object* x_105; lean_object* x_106; +lean_dec(x_17); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_105 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +block_15: +{ +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = lean_ctor_get_uint8(x_13, 0); +if (x_14 == 0) +{ return x_12; } +else +{ +return x_12; +} +} +else +{ +return x_12; +} +} +else +{ +return x_12; +} +} +} } LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_12; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst(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: +{ +if (lean_obj_tag(x_1) == 4) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_1, 0); +x_13 = l_Lean_Meta_Tactic_Cbv_getCbvEvalLemmas___redArg(x_12, x_10); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec_ref(x_13); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; +lean_inc(x_12); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +x_15 = l_Lean_Meta_Tactic_Cbv_isCbvOpaque___redArg(x_12, x_10); +lean_dec(x_10); +lean_dec(x_12); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_alloc_ctor(0, 0, 1); +x_19 = lean_unbox(x_17); +lean_dec(x_17); +lean_ctor_set_uint8(x_18, 0, x_19); +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; +x_20 = lean_ctor_get(x_15, 0); +lean_inc(x_20); +lean_dec(x_15); +x_21 = lean_alloc_ctor(0, 0, 1); +x_22 = lean_unbox(x_20); +lean_dec(x_20); +lean_ctor_set_uint8(x_21, 0, x_22); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_21); +return x_23; +} +} +else +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_15); +if (x_24 == 0) +{ +return x_15; +} +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_15, 0); +lean_inc(x_25); +lean_dec(x_15); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} +} +} +else +{ +lean_object* x_27; +lean_dec_ref(x_14); +x_27 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryCbvTheorems(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_27) == 0) +{ +lean_object* x_28; +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +if (lean_obj_tag(x_28) == 0) +{ +uint8_t x_29; +x_29 = lean_ctor_get_uint8(x_28, 0); +lean_dec_ref(x_28); +if (x_29 == 0) +{ +return x_27; +} +else +{ +return x_27; +} +} +else +{ +lean_dec(x_28); +return x_27; +} +} +else +{ +return x_27; +} +} +} +else +{ +uint8_t x_30; lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -3507,110 +4191,48 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -return x_12; -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg(lean_object* x_1, lean_object* x_2) { -_start: +x_30 = !lean_is_exclusive(x_13); +if (x_30 == 0) { -if (lean_obj_tag(x_1) == 4) -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 0); -x_5 = l_Lean_Meta_Tactic_Cbv_isCbvOpaque___redArg(x_4, x_2); -if (lean_obj_tag(x_5) == 0) -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_5); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_ctor_get(x_5, 0); -x_8 = lean_alloc_ctor(0, 0, 1); -x_9 = lean_unbox(x_7); -lean_dec(x_7); -lean_ctor_set_uint8(x_8, 0, x_9); -lean_ctor_set(x_5, 0, x_8); -return x_5; -} -else -{ -lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_10 = lean_ctor_get(x_5, 0); -lean_inc(x_10); -lean_dec(x_5); -x_11 = lean_alloc_ctor(0, 0, 1); -x_12 = lean_unbox(x_10); -lean_dec(x_10); -lean_ctor_set_uint8(x_11, 0, x_12); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_11); return x_13; } -} else { -uint8_t x_14; -x_14 = !lean_is_exclusive(x_5); -if (x_14 == 0) -{ -return x_5; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_5, 0); -lean_inc(x_15); -lean_dec(x_5); -x_16 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_16, 0, x_15); -return x_16; +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_13, 0); +lean_inc(x_31); +lean_dec(x_13); +x_32 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_32, 0, x_31); +return x_32; } } } else { -lean_object* x_17; lean_object* x_18; -x_17 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); -x_18 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_18, 0, x_17); -return x_18; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg(x_1, x_2); +lean_object* x_33; lean_object* x_34; +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -return x_4; +x_33 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); +x_34 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_34, 0, x_33); +return x_34; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst(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_12; -x_12 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg(x_1, x_10); -return x_12; -} } LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___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_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); return x_12; } } @@ -3722,7 +4344,7 @@ lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_1); -x_28 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_28 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_29 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_29, 0, x_28); return x_29; @@ -3878,7 +4500,7 @@ lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); lean_dec_ref(x_1); -x_31 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_31 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_32 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_32, 0, x_31); return x_32; @@ -4513,7 +5135,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_91 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_91 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_92 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_92, 0, x_91); return x_92; @@ -4941,7 +5563,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_82 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_82 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_83 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_83, 0, x_82); return x_83; @@ -5090,7 +5712,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_33 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_33 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); lean_ctor_set(x_27, 0, x_33); return x_27; } @@ -5125,7 +5747,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_38 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_38 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_39 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_39, 0, x_38); return x_39; @@ -5380,7 +6002,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_69 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_69 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); if (lean_is_scalar(x_65)) { x_70 = lean_alloc_ctor(0, 1, 0); } else { @@ -5561,7 +6183,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -x_84 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_reduceRecMatcher___redArg___closed__0)); +x_84 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryEquations___closed__0)); x_85 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_85, 0, x_84); return x_85; @@ -5590,7 +6212,7 @@ lean_inc(x_5); lean_inc_ref(x_4); lean_inc(x_3); lean_inc_ref(x_2); -x_13 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_tryMatcher(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; @@ -5605,7 +6227,7 @@ if (x_15 == 0) { lean_object* x_16; lean_dec_ref(x_13); -x_16 = l_Lean_Meta_Sym_Simp_simpControl(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_16 = l_Lean_Meta_Tactic_Cbv_simpControlCbv(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_16; } else @@ -5643,7 +6265,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_19); -x_21 = l_Lean_Meta_Sym_Simp_simpControl(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = l_Lean_Meta_Tactic_Cbv_simpControlCbv(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_21) == 0) { uint8_t x_22; @@ -5910,7 +6532,7 @@ lean_inc(x_9); lean_inc_ref(x_8); lean_inc(x_7); lean_inc_ref(x_62); -x_64 = l_Lean_Meta_Sym_Simp_simpControl(x_62, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_64 = l_Lean_Meta_Tactic_Cbv_simpControlCbv(x_62, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_64) == 0) { lean_object* x_65; lean_object* x_66; @@ -6073,73 +6695,368 @@ x_13 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___la return x_13; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__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) { -_start: -{ -lean_object* x_14; -x_14 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueApp___redArg(x_3, x_12); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_box(0); -x_17 = lean_ctor_get_uint8(x_15, 0); -lean_dec(x_15); -if (x_17 == 0) -{ -lean_object* x_18; -lean_dec_ref(x_14); -x_18 = lean_apply_12(x_1, x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, lean_box(0)); -return x_18; -} -else -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_1); -return x_14; -} -} -else -{ -lean_dec(x_12); -lean_dec_ref(x_11); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec_ref(x_1); -return x_14; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__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___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__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); -return x_14; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre(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_12; lean_object* x_20; lean_object* x_28; +lean_object* x_12; lean_object* x_17; lean_object* x_25; lean_object* x_98; lean_inc_ref(x_1); -x_28 = l_Lean_Meta_Tactic_Cbv_isBuiltinValue___redArg(x_1); +x_98 = l_Lean_Meta_Tactic_Cbv_isBuiltinValue___redArg(x_1); +if (lean_obj_tag(x_98) == 0) +{ +lean_object* x_99; +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = lean_ctor_get_uint8(x_99, 0); +lean_dec_ref(x_99); +if (x_100 == 0) +{ +lean_object* x_101; +lean_dec_ref(x_98); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc_ref(x_1); +x_101 = l_Lean_Meta_Tactic_Cbv_isProofTerm___redArg(x_1, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +if (lean_obj_tag(x_102) == 0) +{ +uint8_t x_103; +x_103 = lean_ctor_get_uint8(x_102, 0); +lean_dec_ref(x_102); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +lean_dec_ref(x_101); +x_104 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_skipBinders___redArg(x_1); +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +x_106 = lean_box(0); +x_107 = lean_ctor_get_uint8(x_105, 0); +lean_dec(x_105); +if (x_107 == 0) +{ +lean_object* x_108; +lean_dec_ref(x_104); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_108 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__0(x_106, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_25 = x_108; +goto block_97; +} +else +{ +x_25 = x_104; +goto block_97; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_101; +} +} +else +{ +lean_dec_ref(x_102); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_101; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_101; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_98; +} +} +else +{ +lean_dec_ref(x_99); +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_98; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_98; +} +block_16: +{ +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_14; +x_14 = lean_ctor_get_uint8(x_13, 0); +if (x_14 == 0) +{ +lean_object* x_15; +lean_dec_ref(x_12); +x_15 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_zetaReduce___redArg(x_1, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +return x_15; +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_1); +return x_12; +} +} +block_24: +{ +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_17, 0); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = lean_ctor_get_uint8(x_18, 0); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec_ref(x_17); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_20 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_simplifyAppFn(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_20) == 0) +{ +lean_object* x_21; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +if (lean_obj_tag(x_21) == 0) +{ +uint8_t x_22; +x_22 = lean_ctor_get_uint8(x_21, 0); +lean_dec_ref(x_21); +if (x_22 == 0) +{ +lean_object* x_23; +lean_dec_ref(x_20); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_1); +x_23 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleProj(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = x_23; +goto block_16; +} +else +{ +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_20; +goto block_16; +} +} +else +{ +lean_dec_ref(x_21); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_20; +goto block_16; +} +} +else +{ +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_12 = x_20; +goto block_16; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_17; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_17; +} +} +else +{ +lean_dec(x_10); +lean_dec_ref(x_9); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +lean_dec_ref(x_1); +return x_17; +} +} +block_97: +{ +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; +x_26 = lean_ctor_get(x_25, 0); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +x_27 = lean_ctor_get_uint8(x_26, 0); +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec_ref(x_25); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_1); +x_28 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst(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_28) == 0) { lean_object* x_29; @@ -6158,33 +7075,36 @@ lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); lean_inc_ref(x_1); -x_31 = l_Lean_Meta_Tactic_Cbv_isProofTerm___redArg(x_1, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_31) == 0) +x_31 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_17 = x_31; +goto block_24; +} +else { -lean_object* x_32; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -if (lean_obj_tag(x_32) == 0) +x_17 = x_28; +goto block_24; +} +} +else +{ +uint8_t x_32; +x_32 = lean_ctor_get_uint8(x_29, sizeof(void*)*2); +if (x_32 == 0) { uint8_t x_33; -x_33 = lean_ctor_get_uint8(x_32, 0); -lean_dec_ref(x_32); +lean_dec_ref(x_28); +x_33 = !lean_is_exclusive(x_29); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -lean_dec_ref(x_31); -x_34 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_skipBinders___redArg(x_1); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = ((lean_object*)(l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___closed__0)); -x_37 = lean_box(0); -x_38 = lean_ctor_get_uint8(x_35, 0); -lean_dec(x_35); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec_ref(x_34); +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_29, 0); +x_35 = lean_ctor_get(x_29, 1); lean_inc(x_10); lean_inc_ref(x_9); lean_inc(x_8); @@ -6194,92 +7114,410 @@ lean_inc_ref(x_5); lean_inc(x_4); lean_inc_ref(x_3); lean_inc(x_2); -lean_inc_ref(x_1); -x_39 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_cbvPre___lam__1(x_36, x_37, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_20 = x_39; -goto block_27; -} -else +lean_inc_ref(x_34); +x_36 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst(x_34, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_36) == 0) { -x_20 = x_34; -goto block_27; -} -} -else +uint8_t x_37; +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_37 = !lean_is_exclusive(x_36); +if (x_37 == 0) { +lean_object* x_38; +x_38 = lean_ctor_get(x_36, 0); +if (lean_obj_tag(x_38) == 0) +{ +uint8_t x_39; lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); lean_dec_ref(x_1); -return x_31; +x_39 = lean_ctor_get_uint8(x_38, 0); +lean_dec_ref(x_38); +lean_ctor_set_uint8(x_29, sizeof(void*)*2, x_39); +lean_ctor_set(x_36, 0, x_29); +return x_36; +} +else +{ +uint8_t x_40; +lean_free_object(x_36); +lean_free_object(x_29); +x_40 = !lean_is_exclusive(x_38); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_38, 0); +x_42 = lean_ctor_get(x_38, 1); +lean_inc_ref(x_41); +x_43 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_34, x_35, x_41, x_42, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_43) == 0) +{ +uint8_t x_44; +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) +{ +lean_object* x_45; +x_45 = lean_ctor_get(x_43, 0); +lean_ctor_set(x_38, 1, x_45); +lean_ctor_set(x_43, 0, x_38); +return x_43; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_43, 0); +lean_inc(x_46); +lean_dec(x_43); +lean_ctor_set(x_38, 1, x_46); +x_47 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_47, 0, x_38); +return x_47; } } else { -lean_dec_ref(x_32); +uint8_t x_48; +lean_free_object(x_38); +lean_dec_ref(x_41); +x_48 = !lean_is_exclusive(x_43); +if (x_48 == 0) +{ +return x_43; +} +else +{ +lean_object* x_49; lean_object* x_50; +x_49 = lean_ctor_get(x_43, 0); +lean_inc(x_49); +lean_dec(x_43); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +return x_50; +} +} +} +else +{ +lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; +x_51 = lean_ctor_get(x_38, 0); +x_52 = lean_ctor_get(x_38, 1); +x_53 = lean_ctor_get_uint8(x_38, sizeof(void*)*2); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_38); +lean_inc_ref(x_51); +x_54 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_34, x_35, x_51, x_52, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + x_56 = x_54; +} else { + lean_dec_ref(x_54); + x_56 = lean_box(0); +} +x_57 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_57, 0, x_51); +lean_ctor_set(x_57, 1, x_55); +lean_ctor_set_uint8(x_57, sizeof(void*)*2, x_53); +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 1, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_57); +return x_58; +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_dec_ref(x_51); +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + x_60 = x_54; +} else { + lean_dec_ref(x_54); + x_60 = lean_box(0); +} +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(1, 1, 0); +} else { + x_61 = x_60; +} +lean_ctor_set(x_61, 0, x_59); +return x_61; +} +} +} +} +else +{ +lean_object* x_62; +x_62 = lean_ctor_get(x_36, 0); +lean_inc(x_62); +lean_dec(x_36); +if (lean_obj_tag(x_62) == 0) +{ +uint8_t x_63; lean_object* x_64; lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); lean_dec_ref(x_1); -return x_31; +x_63 = lean_ctor_get_uint8(x_62, 0); +lean_dec_ref(x_62); +lean_ctor_set_uint8(x_29, sizeof(void*)*2, x_63); +x_64 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_64, 0, x_29); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; +lean_free_object(x_29); +x_65 = lean_ctor_get(x_62, 0); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_62, 1); +lean_inc_ref(x_66); +x_67 = lean_ctor_get_uint8(x_62, sizeof(void*)*2); +if (lean_is_exclusive(x_62)) { + lean_ctor_release(x_62, 0); + lean_ctor_release(x_62, 1); + x_68 = x_62; +} else { + lean_dec_ref(x_62); + x_68 = lean_box(0); +} +lean_inc_ref(x_65); +x_69 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_34, x_35, x_65, x_66, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_69) == 0) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + x_71 = x_69; +} else { + lean_dec_ref(x_69); + x_71 = lean_box(0); +} +if (lean_is_scalar(x_68)) { + x_72 = lean_alloc_ctor(1, 2, 1); +} else { + x_72 = x_68; +} +lean_ctor_set(x_72, 0, x_65); +lean_ctor_set(x_72, 1, x_70); +lean_ctor_set_uint8(x_72, sizeof(void*)*2, x_67); +if (lean_is_scalar(x_71)) { + x_73 = lean_alloc_ctor(0, 1, 0); +} else { + x_73 = x_71; +} +lean_ctor_set(x_73, 0, x_72); +return x_73; +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +lean_dec(x_68); +lean_dec_ref(x_65); +x_74 = lean_ctor_get(x_69, 0); +lean_inc(x_74); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + x_75 = x_69; +} else { + lean_dec_ref(x_69); + x_75 = lean_box(0); +} +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(1, 1, 0); +} else { + x_76 = x_75; +} +lean_ctor_set(x_76, 0, x_74); +return x_76; +} +} } } else { +lean_free_object(x_29); +lean_dec_ref(x_35); +lean_dec_ref(x_34); +x_17 = x_36; +goto block_24; +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_29, 0); +x_78 = lean_ctor_get(x_29, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_29); +lean_inc(x_10); +lean_inc_ref(x_9); +lean_inc(x_8); +lean_inc_ref(x_7); +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +lean_inc(x_2); +lean_inc_ref(x_77); +x_79 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst(x_77, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_79) == 0) +{ +lean_object* x_80; lean_object* x_81; +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); +lean_dec(x_2); +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + x_81 = x_79; +} else { + lean_dec_ref(x_79); + x_81 = lean_box(0); +} +if (lean_obj_tag(x_80) == 0) +{ +uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); lean_dec_ref(x_7); lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); lean_dec_ref(x_1); -return x_31; +x_82 = lean_ctor_get_uint8(x_80, 0); +lean_dec_ref(x_80); +x_83 = lean_alloc_ctor(1, 2, 1); +lean_ctor_set(x_83, 0, x_77); +lean_ctor_set(x_83, 1, x_78); +lean_ctor_set_uint8(x_83, sizeof(void*)*2, x_82); +if (lean_is_scalar(x_81)) { + x_84 = lean_alloc_ctor(0, 1, 0); +} else { + x_84 = x_81; +} +lean_ctor_set(x_84, 0, x_83); +return x_84; +} +else +{ +lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; +lean_dec(x_81); +x_85 = lean_ctor_get(x_80, 0); +lean_inc_ref(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc_ref(x_86); +x_87 = lean_ctor_get_uint8(x_80, sizeof(void*)*2); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_88 = x_80; +} else { + lean_dec_ref(x_80); + x_88 = lean_box(0); +} +lean_inc_ref(x_85); +x_89 = l_Lean_Meta_Sym_Simp_mkEqTrans___redArg(x_1, x_77, x_78, x_85, x_86, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_6); +if (lean_obj_tag(x_89) == 0) +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + x_91 = x_89; +} else { + lean_dec_ref(x_89); + x_91 = lean_box(0); +} +if (lean_is_scalar(x_88)) { + x_92 = lean_alloc_ctor(1, 2, 1); +} else { + x_92 = x_88; +} +lean_ctor_set(x_92, 0, x_85); +lean_ctor_set(x_92, 1, x_90); +lean_ctor_set_uint8(x_92, sizeof(void*)*2, x_87); +if (lean_is_scalar(x_91)) { + x_93 = lean_alloc_ctor(0, 1, 0); +} else { + x_93 = x_91; +} +lean_ctor_set(x_93, 0, x_92); +return x_93; +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_88); +lean_dec_ref(x_85); +x_94 = lean_ctor_get(x_89, 0); +lean_inc(x_94); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + x_95 = x_89; +} else { + lean_dec_ref(x_89); + x_95 = lean_box(0); +} +if (lean_is_scalar(x_95)) { + x_96 = lean_alloc_ctor(1, 1, 0); +} else { + x_96 = x_95; +} +lean_ctor_set(x_96, 0, x_94); +return x_96; +} } } else { -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_28; +lean_dec_ref(x_78); +lean_dec_ref(x_77); +x_17 = x_79; +goto block_24; +} } } else { lean_dec_ref(x_29); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_28; +x_17 = x_28; +goto block_24; +} +} +} +else +{ +x_17 = x_28; +goto block_24; } } else @@ -6294,79 +7532,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -return x_28; -} -block_19: -{ -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; -x_13 = lean_ctor_get(x_12, 0); -if (lean_obj_tag(x_13) == 0) -{ -uint8_t x_14; -x_14 = lean_ctor_get_uint8(x_13, 0); -if (x_14 == 0) -{ -lean_object* x_15; -lean_dec_ref(x_12); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -lean_inc(x_2); -lean_inc_ref(x_1); -x_15 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_simplifyAppFn(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_15) == 0) -{ -lean_object* x_16; -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) -{ -uint8_t x_17; -x_17 = lean_ctor_get_uint8(x_16, 0); -lean_dec_ref(x_16); -if (x_17 == 0) -{ -lean_object* x_18; -lean_dec_ref(x_15); -x_18 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleProj(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_18; -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_15; -} -} -else -{ -lean_dec_ref(x_16); -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_15; +return x_25; } } else @@ -6381,7 +7547,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -return x_15; +return x_25; } } else @@ -6396,134 +7562,7 @@ lean_dec(x_4); lean_dec_ref(x_3); lean_dec(x_2); lean_dec_ref(x_1); -return x_12; -} -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_12; -} -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_12; -} -} -block_27: -{ -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; -x_21 = lean_ctor_get(x_20, 0); -if (lean_obj_tag(x_21) == 0) -{ -uint8_t x_22; -x_22 = lean_ctor_get_uint8(x_21, 0); -if (x_22 == 0) -{ -lean_object* x_23; -lean_dec_ref(x_20); -x_23 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_isOpaqueConst___redArg(x_1, x_10); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; uint8_t x_25; -x_24 = lean_ctor_get(x_23, 0); -lean_inc(x_24); -x_25 = lean_ctor_get_uint8(x_24, 0); -lean_dec(x_24); -if (x_25 == 0) -{ -lean_object* x_26; -lean_dec_ref(x_23); -lean_inc(x_10); -lean_inc_ref(x_9); -lean_inc(x_8); -lean_inc_ref(x_7); -lean_inc(x_6); -lean_inc_ref(x_5); -lean_inc(x_4); -lean_inc_ref(x_3); -lean_inc(x_2); -lean_inc_ref(x_1); -x_26 = l___private_Lean_Meta_Tactic_Cbv_Main_0__Lean_Meta_Tactic_Cbv_handleConst(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_12 = x_26; -goto block_19; -} -else -{ -x_12 = x_23; -goto block_19; -} -} -else -{ -x_12 = x_23; -goto block_19; -} -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_20; -} -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_20; -} -} -else -{ -lean_dec(x_10); -lean_dec_ref(x_9); -lean_dec(x_8); -lean_dec_ref(x_7); -lean_dec(x_6); -lean_dec_ref(x_5); -lean_dec(x_4); -lean_dec_ref(x_3); -lean_dec(x_2); -lean_dec_ref(x_1); -return x_20; +return x_25; } } } @@ -8099,8 +9138,10 @@ return x_7; } lean_object* initialize_Lean_Meta_Sym_Simp_SimpM(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_Cbv_Opaque(uint8_t builtin); +lean_object* initialize_Lean_Meta_Tactic_Cbv_ControlFlow(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_Cbv_Util(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_Cbv_TheoremsLookup(uint8_t builtin); +lean_object* initialize_Lean_Meta_Tactic_Cbv_CbvEvalExt(uint8_t builtin); lean_object* initialize_Lean_Meta_Sym(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Cbv_Main(uint8_t builtin) { @@ -8113,12 +9154,18 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Cbv_Opaque(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Cbv_ControlFlow(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Cbv_Util(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); res = initialize_Lean_Meta_Tactic_Cbv_TheoremsLookup(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Tactic_Cbv_CbvEvalExt(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Meta_Sym(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Grind/Attr.c b/stage0/stdlib/Lean/Meta/Tactic/Grind/Attr.c index a1c7ae391b..8f9385440e 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Grind/Attr.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Grind/Attr.c @@ -679,8 +679,20 @@ static lean_object* l_Lean_Meta_Grind_initFn___closed__1_00___x40_Lean_Meta_Tact LEAN_EXPORT lean_object* l_Lean_Meta_Grind_initFn_00___x40_Lean_Meta_Tactic_Grind_Attr_420965636____hygCtx___hyg_2_(); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_initFn_00___x40_Lean_Meta_Tactic_Grind_Attr_420965636____hygCtx___hyg_2____boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_extensionMapRef; -LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_registerAttr___auto__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___00__private_Std_Data_DHashMap_Internal_Defs_0__Std_DHashMap_Internal_Raw_u2080_expand_go___at___00Std_DHashMap_Internal_Raw_u2080_expand___at___00Std_DHashMap_Internal_Raw_u2080_insert___at___00Lean_Meta_Grind_registerAttr_spec__0_spec__1_spec__2_spec__3___redArg(lean_object*, lean_object*); @@ -10593,26 +10605,897 @@ x_2 = l_Lean_Meta_Grind_initFn_00___x40_Lean_Meta_Tactic_Grind_Attr_420965636___ return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = l_Lean_Meta_Grind_extensionMapRef; -x_4 = lean_st_ref_get(x_3); -x_5 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__5___redArg(x_4, x_1); +lean_object* x_4; uint8_t x_5; +x_4 = lean_ctor_get(x_2, 2); +x_5 = lean_ctor_get_uint8(x_4, sizeof(void*)*1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_1); +x_6 = lean_box(x_5); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_2, 13); +x_9 = ((lean_object*)(l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__5___redArg___closed__1)); +x_10 = l_Lean_Name_append(x_9, x_1); +x_11 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(x_8, x_4, x_10); +lean_dec(x_10); +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg(x_1, x_2); +lean_dec_ref(x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_3, 5); +x_7 = l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00Lean_Meta_Grind_getAttrKindCore_spec__0_spec__0(x_2, x_3, x_4); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_st_ref_take(x_4); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_10, 4); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; double x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_14 = lean_ctor_get(x_12, 0); +x_15 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__0; +x_16 = 0; +x_17 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__1)); +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_15); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_15); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_16); +x_19 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__2; +x_20 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_9); +lean_ctor_set(x_20, 2, x_19); +lean_inc(x_6); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_6); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_Lean_PersistentArray_push___redArg(x_14, x_21); +lean_ctor_set(x_12, 0, x_22); +x_23 = lean_st_ref_set(x_4, x_10); +x_24 = lean_box(0); +lean_ctor_set(x_7, 0, x_24); +return x_7; +} +else +{ +uint64_t x_25; lean_object* x_26; double x_27; uint8_t x_28; 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; +x_25 = lean_ctor_get_uint64(x_12, sizeof(void*)*1); +x_26 = lean_ctor_get(x_12, 0); +lean_inc(x_26); +lean_dec(x_12); +x_27 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__0; +x_28 = 0; +x_29 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__1)); +x_30 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_30, 0, x_1); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set_float(x_30, sizeof(void*)*2, x_27); +lean_ctor_set_float(x_30, sizeof(void*)*2 + 8, x_27); +lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 16, x_28); +x_31 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__2; +x_32 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_9); +lean_ctor_set(x_32, 2, x_31); +lean_inc(x_6); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_6); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_PersistentArray_push___redArg(x_26, x_33); +x_35 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set_uint64(x_35, sizeof(void*)*1, x_25); +lean_ctor_set(x_10, 4, x_35); +x_36 = lean_st_ref_set(x_4, x_10); +x_37 = lean_box(0); +lean_ctor_set(x_7, 0, x_37); +return x_7; +} +} +else +{ +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; lean_object* x_45; lean_object* x_46; uint64_t x_47; lean_object* x_48; lean_object* x_49; double x_50; uint8_t 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; +x_38 = lean_ctor_get(x_10, 4); +x_39 = lean_ctor_get(x_10, 0); +x_40 = lean_ctor_get(x_10, 1); +x_41 = lean_ctor_get(x_10, 2); +x_42 = lean_ctor_get(x_10, 3); +x_43 = lean_ctor_get(x_10, 5); +x_44 = lean_ctor_get(x_10, 6); +x_45 = lean_ctor_get(x_10, 7); +x_46 = lean_ctor_get(x_10, 8); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_38); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_10); +x_47 = lean_ctor_get_uint64(x_38, sizeof(void*)*1); +x_48 = lean_ctor_get(x_38, 0); +lean_inc_ref(x_48); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + x_49 = x_38; +} else { + lean_dec_ref(x_38); + x_49 = lean_box(0); +} +x_50 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__0; +x_51 = 0; +x_52 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__1)); +x_53 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set_float(x_53, sizeof(void*)*2, x_50); +lean_ctor_set_float(x_53, sizeof(void*)*2 + 8, x_50); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 16, x_51); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__2; +x_55 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_9); +lean_ctor_set(x_55, 2, x_54); +lean_inc(x_6); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_6); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Lean_PersistentArray_push___redArg(x_48, x_56); +if (lean_is_scalar(x_49)) { + x_58 = lean_alloc_ctor(0, 1, 8); +} else { + x_58 = x_49; +} +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set_uint64(x_58, sizeof(void*)*1, x_47); +x_59 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_59, 0, x_39); +lean_ctor_set(x_59, 1, x_40); +lean_ctor_set(x_59, 2, x_41); +lean_ctor_set(x_59, 3, x_42); +lean_ctor_set(x_59, 4, x_58); +lean_ctor_set(x_59, 5, x_43); +lean_ctor_set(x_59, 6, x_44); +lean_ctor_set(x_59, 7, x_45); +lean_ctor_set(x_59, 8, x_46); +x_60 = lean_st_ref_set(x_4, x_59); +x_61 = lean_box(0); +lean_ctor_set(x_7, 0, x_61); +return x_7; +} +} +else +{ +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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint64_t x_74; lean_object* x_75; lean_object* x_76; double x_77; uint8_t 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; +x_62 = lean_ctor_get(x_7, 0); +lean_inc(x_62); +lean_dec(x_7); +x_63 = lean_st_ref_take(x_4); +x_64 = lean_ctor_get(x_63, 4); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_63, 0); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +x_67 = lean_ctor_get(x_63, 2); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_63, 3); +lean_inc_ref(x_68); +x_69 = lean_ctor_get(x_63, 5); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_63, 6); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_63, 7); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_63, 8); +lean_inc_ref(x_72); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + lean_ctor_release(x_63, 2); + lean_ctor_release(x_63, 3); + lean_ctor_release(x_63, 4); + lean_ctor_release(x_63, 5); + lean_ctor_release(x_63, 6); + lean_ctor_release(x_63, 7); + lean_ctor_release(x_63, 8); + x_73 = x_63; +} else { + lean_dec_ref(x_63); + x_73 = lean_box(0); +} +x_74 = lean_ctor_get_uint64(x_64, sizeof(void*)*1); +x_75 = lean_ctor_get(x_64, 0); +lean_inc_ref(x_75); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + x_76 = x_64; +} else { + lean_dec_ref(x_64); + x_76 = lean_box(0); +} +x_77 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__0; +x_78 = 0; +x_79 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__1)); +x_80 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_80, 0, x_1); +lean_ctor_set(x_80, 1, x_79); +lean_ctor_set_float(x_80, sizeof(void*)*2, x_77); +lean_ctor_set_float(x_80, sizeof(void*)*2 + 8, x_77); +lean_ctor_set_uint8(x_80, sizeof(void*)*2 + 16, x_78); +x_81 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__6___closed__2; +x_82 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_62); +lean_ctor_set(x_82, 2, x_81); +lean_inc(x_6); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_6); +lean_ctor_set(x_83, 1, x_82); +x_84 = l_Lean_PersistentArray_push___redArg(x_75, x_83); +if (lean_is_scalar(x_76)) { + x_85 = lean_alloc_ctor(0, 1, 8); +} else { + x_85 = x_76; +} +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set_uint64(x_85, sizeof(void*)*1, x_74); +if (lean_is_scalar(x_73)) { + x_86 = lean_alloc_ctor(0, 9, 0); +} else { + x_86 = x_73; +} +lean_ctor_set(x_86, 0, x_65); +lean_ctor_set(x_86, 1, x_66); +lean_ctor_set(x_86, 2, x_67); +lean_ctor_set(x_86, 3, x_68); +lean_ctor_set(x_86, 4, x_85); +lean_ctor_set(x_86, 5, x_69); +lean_ctor_set(x_86, 6, x_70); +lean_ctor_set(x_86, 7, x_71); +lean_ctor_set(x_86, 8, x_72); +x_87 = lean_st_ref_set(x_4, x_86); +x_88 = lean_box(0); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_88); +return x_89; +} +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2(x_1, x_2, x_3, x_4); lean_dec(x_4); -x_6 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_6, 0, x_5); +lean_dec_ref(x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_3; -x_3 = l_Lean_Meta_Grind_getExtension_x3f(x_1); +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_46; uint8_t x_47; +x_7 = lean_st_ref_get(x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec(x_7); +x_9 = lean_ctor_get_uint8(x_8, sizeof(void*)*8); +lean_dec_ref(x_8); +x_10 = lean_st_ref_get(x_5); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); +lean_dec(x_10); +x_12 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__2; +lean_inc(x_1); +x_13 = lean_alloc_ctor(0, 1, 2); +lean_ctor_set(x_13, 0, x_1); +lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_9); +lean_ctor_set_uint8(x_13, sizeof(void*)*1 + 1, x_2); +x_14 = l___private_Lean_ExtraModUses_0__Lean_extraModUses; +x_15 = lean_box(1); +x_16 = lean_box(0); +x_46 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_12, x_14, x_11, x_15, x_16); +x_47 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3_spec__4___redArg(x_46, x_13); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_56; lean_object* x_57; uint8_t x_70; +x_48 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__4)); +x_49 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg(x_48, x_4); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_70 = lean_unbox(x_50); +lean_dec(x_50); +if (x_70 == 0) +{ +lean_dec(x_3); lean_dec(x_1); -return x_3; +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_object* x_71; lean_object* x_72; +x_71 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__11; +if (x_9 == 0) +{ +lean_object* x_80; +x_80 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__16)); +x_72 = x_80; +goto block_79; +} +else +{ +lean_object* x_81; +x_81 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__17)); +x_72 = x_81; +goto block_79; +} +block_79: +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_73 = l_Lean_stringToMessageData(x_72); +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_73); +x_75 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__13; +x_76 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +if (x_2 == 0) +{ +lean_object* x_77; +x_77 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__14)); +x_56 = x_76; +x_57 = x_77; +goto block_69; +} +else +{ +lean_object* x_78; +x_78 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__15)); +x_56 = x_76; +x_57 = x_78; +goto block_69; +} +} +} +block_55: +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__2(x_48, x_53, x_4, x_5); +if (lean_obj_tag(x_54) == 0) +{ +lean_dec_ref(x_54); +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_dec_ref(x_13); +return x_54; +} +} +block_69: +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_58 = l_Lean_stringToMessageData(x_57); +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_58); +x_60 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__6; +x_61 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_MessageData_ofName(x_1); +x_63 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_Name_isAnonymous(x_3); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__8; +x_66 = l_Lean_MessageData_ofName(x_3); +x_67 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_51 = x_63; +x_52 = x_67; +goto block_55; +} +else +{ +lean_object* x_68; +lean_dec(x_3); +x_68 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__3___closed__9; +x_51 = x_63; +x_52 = x_68; +goto block_55; +} +} +} +else +{ +lean_object* x_82; lean_object* x_83; +lean_dec_ref(x_13); +lean_dec(x_3); +lean_dec(x_1); +x_82 = lean_box(0); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +block_45: +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_st_ref_take(x_17); +x_20 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_20); +x_21 = !lean_is_exclusive(x_19); +if (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_19, 0); +x_23 = lean_ctor_get(x_19, 5); +lean_dec(x_23); +x_24 = lean_ctor_get(x_20, 2); +lean_inc(x_24); +lean_dec_ref(x_20); +x_25 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_22, x_13, x_24, x_16); +lean_dec(x_24); +x_26 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_Extension_addCasesAttr_spec__0___redArg___closed__2; +lean_ctor_set(x_19, 5, x_26); +lean_ctor_set(x_19, 0, x_25); +x_27 = lean_st_ref_set(x_17, x_19); +x_28 = lean_box(0); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +else +{ +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +x_32 = lean_ctor_get(x_19, 2); +x_33 = lean_ctor_get(x_19, 3); +x_34 = lean_ctor_get(x_19, 4); +x_35 = lean_ctor_get(x_19, 6); +x_36 = lean_ctor_get(x_19, 7); +x_37 = lean_ctor_get(x_19, 8); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +x_38 = lean_ctor_get(x_20, 2); +lean_inc(x_38); +lean_dec_ref(x_20); +x_39 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_30, x_13, x_38, x_16); +lean_dec(x_38); +x_40 = l_Lean_ScopedEnvExtension_add___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_Extension_addCasesAttr_spec__0___redArg___closed__2; +x_41 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_31); +lean_ctor_set(x_41, 2, x_32); +lean_ctor_set(x_41, 3, x_33); +lean_ctor_set(x_41, 4, x_34); +lean_ctor_set(x_41, 5, x_40); +lean_ctor_set(x_41, 6, x_35); +lean_ctor_set(x_41, 7, x_36); +lean_ctor_set(x_41, 8, x_37); +x_42 = lean_st_ref_set(x_17, x_41); +x_43 = lean_box(0); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +return x_44; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0(x_1, x_7, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_5, x_4); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_12 = l_Lean_Environment_header(x_1); +x_13 = lean_ctor_get(x_12, 3); +lean_inc_ref(x_13); +lean_dec_ref(x_12); +x_14 = l_Lean_instInhabitedEffectiveImport_default; +x_15 = lean_array_uget(x_3, x_5); +x_16 = lean_array_get(x_14, x_13, x_15); +lean_dec(x_15); +lean_dec_ref(x_13); +x_17 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_17); +lean_dec(x_16); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = 0; +lean_inc(x_2); +x_20 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0(x_18, x_19, x_2, x_7, x_8); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; size_t x_22; size_t x_23; +lean_dec_ref(x_20); +x_21 = lean_box(0); +x_22 = 1; +x_23 = lean_usize_add(x_5, x_22); +x_5 = x_23; +x_6 = x_21; +goto _start; +} +else +{ +lean_dec(x_2); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__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) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_11 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__1(x_1, x_2, x_3, x_10, x_11, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_21; +x_6 = lean_st_ref_get(x_4); +x_10 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_10); +lean_dec(x_6); +x_21 = l_Lean_Environment_getModuleIdxFor_x3f(x_10, x_1); +if (lean_obj_tag(x_21) == 0) +{ +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = l_Lean_Environment_header(x_10); +x_24 = lean_ctor_get(x_23, 3); +lean_inc_ref(x_24); +lean_dec_ref(x_23); +x_25 = lean_array_get_size(x_24); +x_26 = lean_nat_dec_lt(x_22, x_25); +if (x_26 == 0) +{ +lean_dec_ref(x_24); +lean_dec(x_22); +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_27 = lean_st_ref_get(x_4); +x_28 = lean_ctor_get(x_27, 0); +lean_inc_ref(x_28); +lean_dec(x_27); +x_29 = l_Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2___closed__2; +x_30 = lean_array_fget(x_24, x_22); +lean_dec(x_22); +lean_dec_ref(x_24); +if (x_2 == 0) +{ +lean_dec_ref(x_28); +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_43; +lean_inc(x_1); +x_43 = l_Lean_isMarkedMeta(x_28, x_1); +if (x_43 == 0) +{ +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_44; +x_44 = 0; +x_31 = x_44; +goto block_42; +} +} +block_42: +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_32); +lean_dec(x_30); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +lean_inc(x_1); +x_34 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0(x_33, x_31, x_1, x_3, x_4); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_dec_ref(x_34); +x_35 = l_Lean_indirectModUseExt; +x_36 = lean_box(1); +x_37 = lean_box(0); +lean_inc_ref(x_10); +x_38 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_29, x_35, x_10, x_36, x_37); +x_39 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__5___redArg(x_38, x_1); +lean_dec(x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; +x_40 = l_Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2___closed__3; +x_11 = lean_box(0); +x_12 = x_40; +goto block_20; +} +else +{ +lean_object* x_41; +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec_ref(x_39); +x_11 = lean_box(0); +x_12 = x_41; +goto block_20; +} +} +else +{ +lean_dec_ref(x_10); +lean_dec(x_1); +return x_34; +} +} +} +} +block_9: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_box(0); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +block_20: +{ +lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_box(0); +x_14 = lean_array_size(x_12); +x_15 = 0; +x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__1(x_10, x_1, x_12, x_14, x_15, x_13, x_3, x_4); +lean_dec_ref(x_12); +lean_dec_ref(x_10); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_13); +return x_16; +} +else +{ +lean_object* x_19; +lean_dec(x_16); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_13); +return x_19; +} +} +else +{ +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0(x_1, x_6, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = l_Lean_Meta_Grind_extensionMapRef; +x_6 = lean_st_ref_get(x_5); +x_7 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_Attr_0__Lean_Meta_Grind_mkGrindAttr_spec__2_spec__5___redArg(x_6, x_1); +lean_dec(x_6); +if (lean_obj_tag(x_7) == 1) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_8, 1); +lean_inc_ref(x_9); +lean_dec(x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = 1; +x_12 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0(x_10, x_11, x_2, x_3); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_12, 0); +lean_dec(x_14); +lean_ctor_set(x_12, 0, x_7); +return x_12; +} +else +{ +lean_object* x_15; +lean_dec(x_12); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_7); +return x_15; +} +} +else +{ +uint8_t x_16; +lean_dec_ref(x_7); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +else +{ +lean_object* x_19; +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_7); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_Grind_getExtension_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Meta_Grind_getExtension_x3f(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___redArg(x_1, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_Grind_getExtension_x3f_spec__0_spec__0_spec__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_5; } } static lean_object* _init_l_Lean_Meta_Grind_registerAttr___auto__1() { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Grind/EMatchTheorem.c b/stage0/stdlib/Lean/Meta/Tactic/Grind/EMatchTheorem.c index 500c611bff..2431032fc4 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Grind/EMatchTheorem.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Grind/EMatchTheorem.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Grind.EMatchTheorem -// Imports: public import Lean.Meta.Tactic.Grind.Extension import Lean.Meta.Tactic.Grind.Util import Lean.Meta.Tactic.TryThis import Lean.Meta.Sym.Util +// Imports: public import Lean.Meta.Tactic.Grind.Extension import Lean.Meta.Tactic.Grind.Util import Lean.Meta.Tactic.TryThis import Lean.Meta.Sym.Util import Lean.Meta.Sym.Eta #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -618,6 +618,7 @@ LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___00Lean_Meta_Grind_prepro lean_object* l_Lean_Meta_Grind_foldProjs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Sym_unfoldReducible(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_grind_normalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_Sym_etaReduceAll(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_preprocessPattern(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_preprocessPattern___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Grind_EMatchTheoremKind_isEqLhs(lean_object*); @@ -9368,7 +9369,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(26u); -x_3 = lean_unsigned_to_nat(135u); +x_3 = lean_unsigned_to_nat(136u); x_4 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__1)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -9381,7 +9382,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(26u); -x_3 = lean_unsigned_to_nat(134u); +x_3 = lean_unsigned_to_nat(135u); x_4 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__1)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -9394,7 +9395,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(26u); -x_3 = lean_unsigned_to_nat(131u); +x_3 = lean_unsigned_to_nat(132u); x_4 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__1)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -9407,7 +9408,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(26u); -x_3 = lean_unsigned_to_nat(130u); +x_3 = lean_unsigned_to_nat(131u); x_4 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__1)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -12965,11 +12966,22 @@ lean_inc_ref(x_3); x_24 = lean_grind_normalize(x_22, x_23, x_3, x_4, x_5, x_6); if (lean_obj_tag(x_24) == 0) { -lean_object* x_25; +lean_object* x_25; lean_object* x_26; x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); lean_dec_ref(x_24); -x_8 = x_25; +lean_inc(x_6); +lean_inc_ref(x_5); +lean_inc(x_4); +lean_inc_ref(x_3); +x_26 = l_Lean_Meta_Sym_etaReduceAll(x_25, x_3, x_4, x_5, x_6); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +lean_dec_ref(x_26); +x_8 = x_27; x_9 = x_3; x_10 = x_4; x_11 = x_5; @@ -12983,6 +12995,15 @@ lean_dec(x_6); lean_dec_ref(x_5); lean_dec(x_4); lean_dec_ref(x_3); +return x_26; +} +} +else +{ +lean_dec(x_6); +lean_dec_ref(x_5); +lean_dec(x_4); +lean_dec_ref(x_3); return x_24; } } @@ -13278,7 +13299,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(18u); -x_3 = lean_unsigned_to_nat(325u); +x_3 = lean_unsigned_to_nat(329u); x_4 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_EMatchTheoremKind_explainFailure___closed__2)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -13291,7 +13312,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(18u); -x_3 = lean_unsigned_to_nat(332u); +x_3 = lean_unsigned_to_nat(336u); x_4 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_EMatchTheoremKind_explainFailure___closed__2)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -18612,7 +18633,7 @@ return x_14; block_28: { lean_object* x_19; uint8_t x_20; -x_19 = l_Lean_isInductive___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_NormalizePattern_getPatternFn_x3f_spec__0___redArg(x_18, x_10); +x_19 = l_Lean_isInductive___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_NormalizePattern_getPatternFn_x3f_spec__0___redArg(x_16, x_10); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { @@ -18623,7 +18644,7 @@ lean_dec(x_21); if (x_22 == 0) { lean_free_object(x_19); -lean_dec_ref(x_17); +lean_dec_ref(x_18); x_12 = lean_box(0); goto block_15; } @@ -18631,7 +18652,7 @@ else { lean_object* x_23; x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_17); +lean_ctor_set(x_23, 0, x_18); lean_ctor_set(x_19, 0, x_23); return x_19; } @@ -18646,7 +18667,7 @@ x_25 = lean_unbox(x_24); lean_dec(x_24); if (x_25 == 0) { -lean_dec_ref(x_17); +lean_dec_ref(x_18); x_12 = lean_box(0); goto block_15; } @@ -18654,7 +18675,7 @@ else { lean_object* x_26; lean_object* x_27; x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_17); +lean_ctor_set(x_26, 0, x_18); x_27 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_27, 0, x_26); return x_27; @@ -18724,16 +18745,16 @@ lean_free_object(x_36); switch (x_4) { case 3: { -x_16 = lean_box(0); -x_17 = x_34; -x_18 = x_35; +x_16 = x_35; +x_17 = lean_box(0); +x_18 = x_34; goto block_28; } case 0: { -x_16 = lean_box(0); -x_17 = x_34; -x_18 = x_35; +x_16 = x_35; +x_17 = lean_box(0); +x_18 = x_34; goto block_28; } default: @@ -18810,16 +18831,16 @@ else switch (x_4) { case 3: { -x_16 = lean_box(0); -x_17 = x_34; -x_18 = x_35; +x_16 = x_35; +x_17 = lean_box(0); +x_18 = x_34; goto block_28; } case 0: { -x_16 = lean_box(0); -x_17 = x_34; -x_18 = x_35; +x_16 = x_35; +x_17 = lean_box(0); +x_18 = x_34; goto block_28; } default: @@ -19661,7 +19682,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 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_NormalizePattern_go___closed__1)); x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(620u); +x_3 = lean_unsigned_to_nat(624u); x_4 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_NormalizePattern_go___closed__0)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -24157,7 +24178,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 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_checkCoverage___lam__0___closed__1)); x_2 = lean_unsigned_to_nat(4u); -x_3 = lean_unsigned_to_nat(729u); +x_3 = lean_unsigned_to_nat(733u); x_4 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_checkCoverage___lam__0___closed__0)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -24212,14 +24233,14 @@ x_19 = lean_box(0); x_20 = lean_box(x_2); x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_16); +lean_ctor_set(x_21, 1, x_15); x_22 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_22, 0, x_14); lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_19); lean_ctor_set(x_23, 1, x_22); -x_24 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_checkCoverage_spec__6(x_3, x_1, x_5, x_15, x_12, x_23, x_7, x_8, x_9, x_10); +x_24 = l___private_Init_While_0__Lean_Loop_forIn_loop___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_checkCoverage_spec__6(x_3, x_1, x_5, x_13, x_12, x_23, x_7, x_8, x_9, x_10); if (lean_obj_tag(x_24) == 0) { uint8_t x_25; @@ -24409,9 +24430,9 @@ return x_64; else { lean_object* x_65; lean_object* x_66; -lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); +lean_dec(x_13); lean_dec(x_10); lean_dec_ref(x_9); lean_dec(x_8); @@ -24450,10 +24471,10 @@ if (lean_obj_tag(x_76) == 0) lean_object* x_77; x_77 = lean_ctor_get(x_76, 0); lean_inc(x_77); -x_13 = lean_box(0); +x_13 = x_73; x_14 = x_76; -x_15 = x_73; -x_16 = x_74; +x_15 = x_74; +x_16 = lean_box(0); x_17 = x_77; goto block_67; } @@ -24461,10 +24482,10 @@ else { lean_object* x_78; x_78 = lean_unsigned_to_nat(0u); -x_13 = lean_box(0); +x_13 = x_73; x_14 = x_76; -x_15 = x_73; -x_16 = x_74; +x_15 = x_74; +x_16 = lean_box(0); x_17 = x_78; goto block_67; } @@ -25469,7 +25490,7 @@ return x_4; LEAN_EXPORT lean_object* l_Lean_logAt___at___00Lean_log___at___00Lean_logInfo___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_logPatternWhen_spec__2_spec__2_spec__3(lean_object* x_1, lean_object* x_2, uint8_t x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; uint8_t x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; uint8_t x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; uint8_t x_56; lean_object* x_57; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; uint8_t x_94; uint8_t x_100; uint8_t x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; uint8_t x_107; uint8_t x_109; uint8_t x_125; x_100 = 2; x_125 = l_Lean_instBEqMessageSeverity_beq(x_3, x_100); if (x_125 == 0) @@ -25508,11 +25529,11 @@ lean_ctor_set(x_26, 1, x_10); x_27 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_27, 0, x_15); lean_ctor_set(x_27, 1, x_13); -lean_ctor_set(x_27, 2, x_14); +lean_ctor_set(x_27, 2, x_12); lean_ctor_set(x_27, 3, x_11); lean_ctor_set(x_27, 4, x_26); lean_ctor_set_uint8(x_27, sizeof(void*)*5, x_16); -lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 1, x_14); lean_ctor_set_uint8(x_27, sizeof(void*)*5 + 2, x_4); x_28 = l_Lean_MessageLog_add(x_27, x_24); lean_ctor_set(x_20, 6, x_28); @@ -25553,11 +25574,11 @@ lean_ctor_set(x_42, 1, x_10); x_43 = lean_alloc_ctor(0, 5, 3); lean_ctor_set(x_43, 0, x_15); lean_ctor_set(x_43, 1, x_13); -lean_ctor_set(x_43, 2, x_14); +lean_ctor_set(x_43, 2, x_12); lean_ctor_set(x_43, 3, x_11); lean_ctor_set(x_43, 4, x_42); lean_ctor_set_uint8(x_43, sizeof(void*)*5, x_16); -lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_12); +lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 1, x_14); lean_ctor_set_uint8(x_43, sizeof(void*)*5 + 2, x_4); x_44 = l_Lean_MessageLog_add(x_43, x_38); x_45 = lean_alloc_ctor(0, 9, 0); @@ -25588,23 +25609,23 @@ if (x_60 == 0) lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_61 = lean_ctor_get(x_59, 0); lean_inc_ref(x_52); -x_62 = l_Lean_FileMap_toPosition(x_52, x_51); -lean_dec(x_51); +x_62 = l_Lean_FileMap_toPosition(x_52, x_53); +lean_dec(x_53); x_63 = l_Lean_FileMap_toPosition(x_52, x_57); lean_dec(x_57); x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); x_65 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6___closed__1)); -if (x_53 == 0) +if (x_51 == 0) { lean_free_object(x_59); lean_dec_ref(x_50); x_10 = x_61; x_11 = x_65; -x_12 = x_54; +x_12 = x_64; x_13 = x_62; -x_14 = x_64; -x_15 = x_55; +x_14 = x_55; +x_15 = x_54; x_16 = x_56; x_17 = x_7; x_18 = x_8; @@ -25622,7 +25643,7 @@ lean_object* x_67; lean_dec_ref(x_64); lean_dec_ref(x_62); lean_dec(x_61); -lean_dec_ref(x_55); +lean_dec_ref(x_54); lean_dec_ref(x_7); x_67 = lean_box(0); lean_ctor_set(x_59, 0, x_67); @@ -25633,10 +25654,10 @@ else lean_free_object(x_59); x_10 = x_61; x_11 = x_65; -x_12 = x_54; +x_12 = x_64; x_13 = x_62; -x_14 = x_64; -x_15 = x_55; +x_14 = x_55; +x_15 = x_54; x_16 = x_56; x_17 = x_7; x_18 = x_8; @@ -25652,22 +25673,22 @@ x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); lean_inc_ref(x_52); -x_69 = l_Lean_FileMap_toPosition(x_52, x_51); -lean_dec(x_51); +x_69 = l_Lean_FileMap_toPosition(x_52, x_53); +lean_dec(x_53); x_70 = l_Lean_FileMap_toPosition(x_52, x_57); lean_dec(x_57); x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6___closed__1)); -if (x_53 == 0) +if (x_51 == 0) { lean_dec_ref(x_50); x_10 = x_68; x_11 = x_72; -x_12 = x_54; +x_12 = x_71; x_13 = x_69; -x_14 = x_71; -x_15 = x_55; +x_14 = x_55; +x_15 = x_54; x_16 = x_56; x_17 = x_7; x_18 = x_8; @@ -25685,7 +25706,7 @@ lean_object* x_74; lean_object* x_75; lean_dec_ref(x_71); lean_dec_ref(x_69); lean_dec(x_68); -lean_dec_ref(x_55); +lean_dec_ref(x_54); lean_dec_ref(x_7); x_74 = lean_box(0); x_75 = lean_alloc_ctor(0, 1, 0); @@ -25696,10 +25717,10 @@ else { x_10 = x_68; x_11 = x_72; -x_12 = x_54; +x_12 = x_71; x_13 = x_69; -x_14 = x_71; -x_15 = x_55; +x_14 = x_55; +x_15 = x_54; x_16 = x_56; x_17 = x_7; x_18 = x_8; @@ -25712,16 +25733,16 @@ goto block_49; block_87: { lean_object* x_85; -x_85 = l_Lean_Syntax_getTailPos_x3f(x_82, x_83); -lean_dec(x_82); +x_85 = l_Lean_Syntax_getTailPos_x3f(x_78, x_83); +lean_dec(x_78); if (lean_obj_tag(x_85) == 0) { lean_inc(x_84); x_50 = x_77; -x_51 = x_84; -x_52 = x_78; -x_53 = x_79; -x_54 = x_80; +x_51 = x_79; +x_52 = x_80; +x_53 = x_84; +x_54 = x_82; x_55 = x_81; x_56 = x_83; x_57 = x_84; @@ -25734,10 +25755,10 @@ x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); lean_dec_ref(x_85); x_50 = x_77; -x_51 = x_84; -x_52 = x_78; -x_53 = x_79; -x_54 = x_80; +x_51 = x_79; +x_52 = x_80; +x_53 = x_84; +x_54 = x_82; x_55 = x_81; x_56 = x_83; x_57 = x_86; @@ -25747,19 +25768,19 @@ goto block_76; block_99: { lean_object* x_95; lean_object* x_96; -x_95 = l_Lean_replaceRef(x_1, x_90); -lean_dec(x_90); +x_95 = l_Lean_replaceRef(x_1, x_92); +lean_dec(x_92); x_96 = l_Lean_Syntax_getPos_x3f(x_95, x_93); if (lean_obj_tag(x_96) == 0) { lean_object* x_97; x_97 = lean_unsigned_to_nat(0u); x_77 = x_88; -x_78 = x_89; -x_79 = x_91; -x_80 = x_94; -x_81 = x_92; -x_82 = x_95; +x_78 = x_95; +x_79 = x_89; +x_80 = x_90; +x_81 = x_94; +x_82 = x_91; x_83 = x_93; x_84 = x_97; goto block_87; @@ -25771,11 +25792,11 @@ x_98 = lean_ctor_get(x_96, 0); lean_inc(x_98); lean_dec_ref(x_96); x_77 = x_88; -x_78 = x_89; -x_79 = x_91; -x_80 = x_94; -x_81 = x_92; -x_82 = x_95; +x_78 = x_95; +x_79 = x_89; +x_80 = x_90; +x_81 = x_94; +x_82 = x_91; x_83 = x_93; x_84 = x_98; goto block_87; @@ -25785,22 +25806,22 @@ block_108: { if (x_107 == 0) { -x_88 = x_104; +x_88 = x_105; x_89 = x_101; x_90 = x_102; -x_91 = x_103; -x_92 = x_105; +x_91 = x_104; +x_92 = x_103; x_93 = x_106; x_94 = x_3; goto block_99; } else { -x_88 = x_104; +x_88 = x_105; x_89 = x_101; x_90 = x_102; -x_91 = x_103; -x_92 = x_105; +x_91 = x_104; +x_92 = x_103; x_93 = x_106; x_94 = x_100; goto block_99; @@ -25828,11 +25849,11 @@ if (x_119 == 0) lean_inc_ref(x_110); lean_inc(x_113); lean_inc_ref(x_111); -x_101 = x_111; -x_102 = x_113; -x_103 = x_114; -x_104 = x_117; -x_105 = x_110; +x_101 = x_114; +x_102 = x_111; +x_103 = x_113; +x_104 = x_110; +x_105 = x_117; x_106 = x_109; x_107 = x_119; goto block_108; @@ -25845,11 +25866,11 @@ x_121 = l_Lean_Option_get___at___00Lean_logAt___at___00Lean_log___at___00Lean_lo lean_inc_ref(x_110); lean_inc(x_113); lean_inc_ref(x_111); -x_101 = x_111; -x_102 = x_113; -x_103 = x_114; -x_104 = x_117; -x_105 = x_110; +x_101 = x_114; +x_102 = x_111; +x_103 = x_113; +x_104 = x_110; +x_105 = x_117; x_106 = x_109; x_107 = x_121; goto block_108; @@ -27134,15 +27155,15 @@ lean_inc(x_24); lean_inc_ref(x_23); lean_inc(x_22); lean_inc_ref(x_21); -x_26 = l_Lean_Meta_Grind_preprocessPattern(x_19, x_1, x_21, x_22, x_23, x_24); +x_26 = l_Lean_Meta_Grind_preprocessPattern(x_20, x_1, x_21, x_22, x_23, x_24); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); lean_dec_ref(x_26); -lean_inc(x_20); -x_28 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__5___redArg(x_20, x_23); +lean_inc(x_19); +x_28 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__5___redArg(x_19, x_23); x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); lean_dec_ref(x_28); @@ -27154,7 +27175,7 @@ lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); -lean_dec(x_20); +lean_dec(x_19); x_11 = x_27; x_12 = lean_box(0); goto block_18; @@ -27189,7 +27210,7 @@ x_39 = l_Lean_MessageData_ofExpr(x_33); x_40 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6(x_20, x_40, x_21, x_22, x_23, x_24); +x_41 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6(x_19, x_40, x_21, x_22, x_23, x_24); lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); @@ -27230,7 +27251,7 @@ lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); -lean_dec(x_20); +lean_dec(x_19); x_45 = !lean_is_exclusive(x_32); if (x_45 == 0) { @@ -27256,7 +27277,7 @@ lean_dec(x_24); lean_dec_ref(x_23); lean_dec(x_22); lean_dec_ref(x_21); -lean_dec(x_20); +lean_dec(x_19); x_48 = !lean_is_exclusive(x_26); if (x_48 == 0) { @@ -27281,19 +27302,19 @@ x_61 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_61, 0, x_60); x_62 = l_Lean_MessageData_ofFormat(x_61); x_63 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_63, 0, x_53); +lean_ctor_set(x_63, 0, x_54); lean_ctor_set(x_63, 1, x_62); -lean_inc(x_58); -x_64 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6(x_58, x_63, x_52, x_59, x_57, x_56); +lean_inc(x_57); +x_64 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6(x_57, x_63, x_53, x_56, x_55, x_59); if (lean_obj_tag(x_64) == 0) { lean_dec_ref(x_64); -x_19 = x_55; +x_19 = x_57; x_20 = x_58; -x_21 = x_52; -x_22 = x_59; -x_23 = x_57; -x_24 = x_56; +x_21 = x_53; +x_22 = x_56; +x_23 = x_55; +x_24 = x_59; x_25 = lean_box(0); goto block_51; } @@ -27301,11 +27322,11 @@ else { uint8_t x_65; lean_dec(x_59); -lean_dec(x_58); -lean_dec_ref(x_57); +lean_dec_ref(x_58); +lean_dec(x_57); lean_dec(x_56); lean_dec_ref(x_55); -lean_dec_ref(x_52); +lean_dec_ref(x_53); x_65 = !lean_is_exclusive(x_64); if (x_65 == 0) { @@ -27327,7 +27348,7 @@ block_90: { lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; x_75 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchEqTheoremCore___lam__0___closed__5)); -x_76 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__5___redArg(x_75, x_72); +x_76 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__5___redArg(x_75, x_71); x_77 = lean_ctor_get(x_76, 0); lean_inc(x_77); lean_dec_ref(x_76); @@ -27336,12 +27357,12 @@ lean_dec(x_77); if (x_78 == 0) { lean_dec_ref(x_2); -x_19 = x_74; -x_20 = x_75; -x_21 = x_70; -x_22 = x_73; -x_23 = x_72; -x_24 = x_71; +x_19 = x_75; +x_20 = x_74; +x_21 = x_69; +x_22 = x_72; +x_23 = x_71; +x_24 = x_73; x_25 = lean_box(0); goto block_51; } @@ -27370,13 +27391,13 @@ if (x_3 == 0) { lean_object* x_88; x_88 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchEqTheoremCore___lam__0___closed__12)); -x_52 = x_70; -x_53 = x_87; -x_54 = lean_box(0); -x_55 = x_74; -x_56 = x_71; -x_57 = x_72; -x_58 = x_75; +x_52 = lean_box(0); +x_53 = x_69; +x_54 = x_87; +x_55 = x_71; +x_56 = x_72; +x_57 = x_75; +x_58 = x_74; x_59 = x_73; x_60 = x_88; goto block_68; @@ -27385,13 +27406,13 @@ else { lean_object* x_89; x_89 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchEqTheoremCore___lam__0___closed__13)); -x_52 = x_70; -x_53 = x_87; -x_54 = lean_box(0); -x_55 = x_74; -x_56 = x_71; -x_57 = x_72; -x_58 = x_75; +x_52 = lean_box(0); +x_53 = x_69; +x_54 = x_87; +x_55 = x_71; +x_56 = x_72; +x_57 = x_75; +x_58 = x_74; x_59 = x_73; x_60 = x_89; goto block_68; @@ -27403,22 +27424,22 @@ block_98: if (x_3 == 0) { lean_dec_ref(x_91); -x_69 = lean_box(0); -x_70 = x_93; -x_71 = x_96; -x_72 = x_95; -x_73 = x_94; +x_69 = x_93; +x_70 = lean_box(0); +x_71 = x_95; +x_72 = x_94; +x_73 = x_96; x_74 = x_92; goto block_90; } else { lean_dec_ref(x_92); -x_69 = lean_box(0); -x_70 = x_93; -x_71 = x_96; -x_72 = x_95; -x_73 = x_94; +x_69 = x_93; +x_70 = lean_box(0); +x_71 = x_95; +x_72 = x_94; +x_73 = x_96; x_74 = x_91; goto block_90; } @@ -30554,26 +30575,26 @@ lean_dec(x_91); if (x_92 == 0) { lean_object* x_93; lean_object* x_94; -lean_dec_ref(x_81); +lean_dec_ref(x_79); x_93 = lean_box(0); -lean_inc(x_88); +lean_inc(x_86); lean_inc_ref(x_76); -lean_inc(x_78); +lean_inc(x_85); +lean_inc_ref(x_77); +lean_inc(x_81); +lean_inc_ref(x_78); +lean_inc(x_87); lean_inc_ref(x_82); -lean_inc(x_79); -lean_inc_ref(x_84); -lean_inc(x_83); -lean_inc_ref(x_80); -x_94 = lean_apply_10(x_87, x_93, x_80, x_83, x_84, x_79, x_82, x_78, x_76, x_88, lean_box(0)); +x_94 = lean_apply_10(x_84, x_93, x_82, x_87, x_78, x_81, x_77, x_85, x_76, x_86, lean_box(0)); x_57 = x_80; -x_58 = x_82; +x_58 = x_81; x_59 = x_76; -x_60 = x_83; -x_61 = x_84; -x_62 = x_77; -x_63 = x_86; -x_64 = x_78; -x_65 = x_79; +x_60 = x_82; +x_61 = x_77; +x_62 = x_85; +x_63 = x_78; +x_64 = x_86; +x_65 = x_87; x_66 = x_88; x_67 = x_94; goto block_72; @@ -30582,51 +30603,51 @@ else { lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; x_95 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___closed__1; -x_96 = l_Lean_Exception_toMessageData(x_81); +x_96 = l_Lean_Exception_toMessageData(x_79); x_97 = l_Lean_indentD(x_96); x_98 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_98, 0, x_95); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_addNewPattern_spec__1___redArg(x_75, x_98, x_82, x_78, x_76, x_88); +x_99 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_addNewPattern_spec__1___redArg(x_75, x_98, x_77, x_85, x_76, x_86); if (lean_obj_tag(x_99) == 0) { lean_object* x_100; lean_object* x_101; x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); lean_dec_ref(x_99); -lean_inc(x_88); +lean_inc(x_86); lean_inc_ref(x_76); -lean_inc(x_78); +lean_inc(x_85); +lean_inc_ref(x_77); +lean_inc(x_81); +lean_inc_ref(x_78); +lean_inc(x_87); lean_inc_ref(x_82); -lean_inc(x_79); -lean_inc_ref(x_84); -lean_inc(x_83); -lean_inc_ref(x_80); -x_101 = lean_apply_10(x_87, x_100, x_80, x_83, x_84, x_79, x_82, x_78, x_76, x_88, lean_box(0)); +x_101 = lean_apply_10(x_84, x_100, x_82, x_87, x_78, x_81, x_77, x_85, x_76, x_86, lean_box(0)); x_57 = x_80; -x_58 = x_82; +x_58 = x_81; x_59 = x_76; -x_60 = x_83; -x_61 = x_84; -x_62 = x_77; -x_63 = x_86; -x_64 = x_78; -x_65 = x_79; +x_60 = x_82; +x_61 = x_77; +x_62 = x_85; +x_63 = x_78; +x_64 = x_86; +x_65 = x_87; x_66 = x_88; x_67 = x_101; goto block_72; } else { -lean_dec(x_88); -lean_dec_ref(x_87); +lean_dec_ref(x_88); +lean_dec(x_87); lean_dec(x_86); +lean_dec(x_85); lean_dec_ref(x_84); -lean_dec(x_83); lean_dec_ref(x_82); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec(x_78); +lean_dec(x_81); +lean_dec(x_80); +lean_dec_ref(x_78); lean_dec_ref(x_77); lean_dec_ref(x_76); lean_dec_ref(x_1); @@ -30637,16 +30658,16 @@ return x_99; else { uint8_t x_102; -lean_dec(x_88); -lean_dec_ref(x_87); +lean_dec_ref(x_88); +lean_dec(x_87); lean_dec(x_86); +lean_dec(x_85); lean_dec_ref(x_84); -lean_dec(x_83); lean_dec_ref(x_82); -lean_dec_ref(x_81); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec(x_78); +lean_dec(x_81); +lean_dec(x_80); +lean_dec_ref(x_79); +lean_dec_ref(x_78); lean_dec_ref(x_77); lean_dec_ref(x_76); lean_dec_ref(x_1); @@ -30670,20 +30691,20 @@ return x_104; else { lean_object* x_105; -lean_dec(x_88); -lean_dec_ref(x_87); +lean_dec_ref(x_88); +lean_dec(x_87); lean_dec(x_86); +lean_dec(x_85); lean_dec_ref(x_84); -lean_dec(x_83); lean_dec_ref(x_82); -lean_dec_ref(x_80); -lean_dec(x_79); -lean_dec(x_78); +lean_dec(x_81); +lean_dec(x_80); +lean_dec_ref(x_78); lean_dec_ref(x_77); lean_dec_ref(x_76); lean_dec_ref(x_1); x_105 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_105, 0, x_81); +lean_ctor_set(x_105, 0, x_79); return x_105; } } @@ -30697,36 +30718,36 @@ uint8_t x_121; lean_inc_ref(x_118); x_121 = l_Lean_Exception_isRuntime(x_118); x_76 = x_109; -x_77 = x_112; +x_77 = x_111; x_78 = x_114; -x_79 = x_117; +x_79 = x_118; x_80 = x_107; -x_81 = x_118; -x_82 = x_108; -x_83 = x_110; -x_84 = x_111; -x_85 = lean_box(0); -x_86 = x_113; +x_81 = x_108; +x_82 = x_110; +x_83 = lean_box(0); +x_84 = x_113; +x_85 = x_112; +x_86 = x_115; x_87 = x_116; -x_88 = x_115; +x_88 = x_117; x_89 = x_121; goto block_106; } else { x_76 = x_109; -x_77 = x_112; +x_77 = x_111; x_78 = x_114; -x_79 = x_117; +x_79 = x_118; x_80 = x_107; -x_81 = x_118; -x_82 = x_108; -x_83 = x_110; -x_84 = x_111; -x_85 = lean_box(0); -x_86 = x_113; +x_81 = x_108; +x_82 = x_110; +x_83 = lean_box(0); +x_84 = x_113; +x_85 = x_112; +x_86 = x_115; x_87 = x_116; -x_88 = x_115; +x_88 = x_117; x_89 = x_120; goto block_106; } @@ -30736,20 +30757,20 @@ block_137: if (lean_obj_tag(x_134) == 0) { lean_object* x_135; -lean_dec_ref(x_131); +lean_dec_ref(x_128); x_135 = lean_ctor_get(x_134, 0); lean_inc(x_135); lean_dec_ref(x_134); x_42 = x_123; -x_43 = x_125; -x_44 = x_124; +x_43 = x_124; +x_44 = x_125; x_45 = x_126; x_46 = x_127; -x_47 = x_128; -x_48 = x_129; -x_49 = x_130; -x_50 = x_133; -x_51 = x_132; +x_47 = x_129; +x_48 = x_130; +x_49 = x_131; +x_50 = x_132; +x_51 = x_133; x_52 = x_135; x_53 = lean_box(0); goto block_56; @@ -30765,12 +30786,12 @@ x_108 = x_124; x_109 = x_125; x_110 = x_126; x_111 = x_127; -x_112 = x_128; -x_113 = x_129; +x_112 = x_129; +x_113 = x_128; x_114 = x_130; -x_115 = x_133; -x_116 = x_131; -x_117 = x_132; +x_115 = x_131; +x_116 = x_132; +x_117 = x_133; x_118 = x_136; x_119 = lean_box(0); goto block_122; @@ -30807,8 +30828,8 @@ x_153 = lean_unbox(x_152); lean_dec(x_152); if (x_153 == 0) { -x_11 = x_150; -x_12 = x_148; +x_11 = x_148; +x_12 = x_150; x_13 = x_138; x_14 = x_139; x_15 = x_140; @@ -30849,17 +30870,17 @@ lean_inc_ref(x_140); lean_inc_ref(x_138); lean_inc(x_150); x_160 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___lam__1(x_1, x_75, x_154, x_150, x_159, x_138, x_139, x_140, x_141, x_142, x_143, x_144, x_145); -x_123 = x_138; -x_124 = x_142; +x_123 = x_148; +x_124 = x_141; x_125 = x_144; -x_126 = x_139; -x_127 = x_140; -x_128 = x_150; -x_129 = x_148; -x_130 = x_143; -x_131 = x_155; -x_132 = x_141; -x_133 = x_145; +x_126 = x_138; +x_127 = x_142; +x_128 = x_155; +x_129 = x_143; +x_130 = x_140; +x_131 = x_145; +x_132 = x_139; +x_133 = x_150; x_134 = x_160; goto block_137; } @@ -30888,17 +30909,17 @@ lean_inc_ref(x_140); lean_inc_ref(x_138); lean_inc(x_150); x_166 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___lam__1(x_1, x_75, x_154, x_150, x_165, x_138, x_139, x_140, x_141, x_142, x_143, x_144, x_145); -x_123 = x_138; -x_124 = x_142; +x_123 = x_148; +x_124 = x_141; x_125 = x_144; -x_126 = x_139; -x_127 = x_140; -x_128 = x_150; -x_129 = x_148; -x_130 = x_143; -x_131 = x_155; -x_132 = x_141; -x_133 = x_145; +x_126 = x_138; +x_127 = x_142; +x_128 = x_155; +x_129 = x_143; +x_130 = x_140; +x_131 = x_145; +x_132 = x_139; +x_133 = x_150; x_134 = x_166; goto block_137; } @@ -30909,17 +30930,17 @@ lean_dec(x_154); x_167 = lean_ctor_get(x_164, 0); lean_inc(x_167); lean_dec_ref(x_164); -x_107 = x_138; -x_108 = x_142; +x_107 = x_148; +x_108 = x_141; x_109 = x_144; -x_110 = x_139; -x_111 = x_140; -x_112 = x_150; -x_113 = x_148; -x_114 = x_143; +x_110 = x_138; +x_111 = x_142; +x_112 = x_143; +x_113 = x_155; +x_114 = x_140; x_115 = x_145; -x_116 = x_155; -x_117 = x_141; +x_116 = x_139; +x_117 = x_150; x_118 = x_167; x_119 = lean_box(0); goto block_122; @@ -30933,17 +30954,17 @@ lean_dec(x_154); x_168 = lean_ctor_get(x_156, 0); lean_inc(x_168); lean_dec_ref(x_156); -x_107 = x_138; -x_108 = x_142; +x_107 = x_148; +x_108 = x_141; x_109 = x_144; -x_110 = x_139; -x_111 = x_140; -x_112 = x_150; -x_113 = x_148; -x_114 = x_143; +x_110 = x_138; +x_111 = x_142; +x_112 = x_143; +x_113 = x_155; +x_114 = x_140; x_115 = x_145; -x_116 = x_155; -x_117 = x_141; +x_116 = x_139; +x_117 = x_150; x_118 = x_168; x_119 = lean_box(0); goto block_122; @@ -31207,15 +31228,15 @@ block_41: { 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; size_t x_30; size_t x_31; lean_object* x_32; x_22 = l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectOffsets_spec__0_spec__0___lam__1___closed__0; -lean_inc(x_12); -x_23 = lean_mk_array(x_12, x_22); +lean_inc(x_11); +x_23 = lean_mk_array(x_11, x_22); x_24 = lean_unsigned_to_nat(1u); -x_25 = lean_nat_sub(x_12, x_24); -lean_dec(x_12); +x_25 = lean_nat_sub(x_11, x_24); +lean_dec(x_11); x_26 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_23, x_25); x_27 = lean_unsigned_to_nat(0u); -x_28 = lean_array_get_size(x_11); -x_29 = l_Array_toSubarray___redArg(x_11, x_27, x_28); +x_28 = lean_array_get_size(x_12); +x_29 = l_Array_toSubarray___redArg(x_12, x_27, x_28); x_30 = lean_array_size(x_26); x_31 = 0; x_32 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect_spec__0(x_26, x_30, x_31, x_29, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); @@ -31268,32 +31289,32 @@ block_56: if (lean_obj_tag(x_52) == 0) { lean_dec_ref(x_52); -x_11 = x_47; -x_12 = x_48; -x_13 = x_42; -x_14 = x_45; -x_15 = x_46; -x_16 = x_51; -x_17 = x_44; -x_18 = x_49; -x_19 = x_43; -x_20 = x_50; +x_11 = x_42; +x_12 = x_51; +x_13 = x_45; +x_14 = x_50; +x_15 = x_48; +x_16 = x_43; +x_17 = x_46; +x_18 = x_47; +x_19 = x_44; +x_20 = x_49; x_21 = lean_box(0); goto block_41; } else { lean_object* x_54; lean_object* x_55; -lean_dec(x_51); +lean_dec_ref(x_51); lean_dec(x_50); lean_dec(x_49); -lean_dec(x_48); -lean_dec_ref(x_47); +lean_dec_ref(x_48); +lean_dec(x_47); lean_dec_ref(x_46); -lean_dec(x_45); +lean_dec_ref(x_45); lean_dec_ref(x_44); -lean_dec_ref(x_43); -lean_dec_ref(x_42); +lean_dec(x_43); +lean_dec(x_42); lean_dec_ref(x_1); x_54 = lean_ctor_get(x_52, 0); lean_inc(x_54); @@ -31312,15 +31333,15 @@ x_68 = lean_ctor_get(x_67, 0); lean_inc(x_68); lean_dec_ref(x_67); x_42 = x_57; -x_43 = x_59; -x_44 = x_58; +x_43 = x_58; +x_44 = x_59; x_45 = x_60; x_46 = x_61; x_47 = x_62; x_48 = x_63; x_49 = x_64; -x_50 = x_66; -x_51 = x_65; +x_50 = x_65; +x_51 = x_66; x_52 = x_68; x_53 = lean_box(0); goto block_56; @@ -31328,16 +31349,16 @@ goto block_56; else { uint8_t x_69; -lean_dec(x_66); +lean_dec_ref(x_66); lean_dec(x_65); lean_dec(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); +lean_dec_ref(x_63); +lean_dec(x_62); lean_dec_ref(x_61); -lean_dec(x_60); +lean_dec_ref(x_60); lean_dec_ref(x_59); -lean_dec_ref(x_58); -lean_dec_ref(x_57); +lean_dec(x_58); +lean_dec(x_57); lean_dec_ref(x_1); x_69 = !lean_is_exclusive(x_67); if (x_69 == 0) @@ -34131,7 +34152,7 @@ lean_dec(x_48); if (x_49 == 0) { lean_object* x_50; lean_object* x_51; -lean_dec_ref(x_44); +lean_dec_ref(x_43); x_50 = lean_box(0); x_51 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_normalizePattern_x3f___lam__2(x_42, x_41, x_50, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); x_18 = x_51; @@ -34141,7 +34162,7 @@ else { lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_52 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___closed__1; -x_53 = l_Lean_Exception_toMessageData(x_44); +x_53 = l_Lean_Exception_toMessageData(x_43); x_54 = l_Lean_indentD(x_53); x_55 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_55, 0, x_52); @@ -34200,7 +34221,7 @@ lean_dec_ref(x_6); lean_dec(x_5); lean_dec_ref(x_4); x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_44); +lean_ctor_set(x_62, 0, x_43); return x_62; } } @@ -34213,15 +34234,15 @@ if (x_66 == 0) uint8_t x_67; lean_inc_ref(x_64); x_67 = l_Lean_Exception_isRuntime(x_64); -x_43 = lean_box(0); -x_44 = x_64; +x_43 = x_64; +x_44 = lean_box(0); x_45 = x_67; goto block_63; } else { -x_43 = lean_box(0); -x_44 = x_64; +x_43 = x_64; +x_44 = lean_box(0); x_45 = x_66; goto block_63; } @@ -38446,21 +38467,21 @@ goto block_20; block_10: { uint8_t x_7; -lean_dec(x_5); +lean_dec(x_4); x_7 = lean_nat_dec_le(x_6, x_3); if (x_7 == 0) { lean_object* x_8; lean_dec(x_3); lean_inc(x_6); -x_8 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectUsedPriorities_spec__0___redArg(x_4, x_6, x_6); +x_8 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectUsedPriorities_spec__0___redArg(x_5, x_6, x_6); lean_dec(x_6); return x_8; } else { lean_object* x_9; -x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectUsedPriorities_spec__0___redArg(x_4, x_6, x_3); +x_9 = l___private_Init_Data_Array_QSort_Basic_0__Array_qsort_sort___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectUsedPriorities_spec__0___redArg(x_5, x_6, x_3); lean_dec(x_3); return x_9; } @@ -38485,16 +38506,16 @@ if (x_18 == 0) { lean_inc(x_17); x_3 = x_17; -x_4 = x_11; -x_5 = x_13; +x_4 = x_13; +x_5 = x_11; x_6 = x_17; goto block_10; } else { x_3 = x_17; -x_4 = x_11; -x_5 = x_13; +x_4 = x_13; +x_5 = x_11; x_6 = x_14; goto block_10; } @@ -39556,7 +39577,7 @@ block_100: if (x_73 == 0) { lean_object* x_74; -x_74 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__0___redArg(x_59, x_65, x_69); +x_74 = l_Lean_isTracingEnabledFor___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__0___redArg(x_59, x_63, x_72); if (lean_obj_tag(x_74) == 0) { lean_object* x_75; lean_object* x_76; uint8_t x_77; @@ -39568,21 +39589,21 @@ x_77 = lean_unbox(x_76); if (x_77 == 0) { lean_object* x_78; -lean_dec_ref(x_66); +lean_dec_ref(x_60); x_78 = lean_ctor_get(x_75, 1); lean_inc(x_78); lean_dec(x_75); x_18 = x_61; -x_19 = x_71; +x_19 = x_69; x_20 = x_78; -x_21 = x_64; -x_22 = x_72; -x_23 = x_67; -x_24 = x_63; -x_25 = x_62; -x_26 = x_68; -x_27 = x_69; -x_28 = x_70; +x_21 = x_67; +x_22 = x_64; +x_23 = x_68; +x_24 = x_62; +x_25 = x_71; +x_26 = x_66; +x_27 = x_72; +x_28 = x_65; x_29 = lean_box(0); goto block_58; } @@ -39597,12 +39618,12 @@ x_80 = lean_ctor_get(x_75, 1); x_81 = lean_ctor_get(x_75, 0); lean_dec(x_81); x_82 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___closed__1; -x_83 = l_Lean_Exception_toMessageData(x_66); +x_83 = l_Lean_Exception_toMessageData(x_60); x_84 = l_Lean_indentD(x_83); lean_ctor_set_tag(x_75, 7); lean_ctor_set(x_75, 1, x_84); lean_ctor_set(x_75, 0, x_82); -x_85 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__1___redArg(x_59, x_75, x_80, x_62, x_68, x_69, x_70); +x_85 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__1___redArg(x_59, x_75, x_80, x_71, x_66, x_72, x_65); if (lean_obj_tag(x_85) == 0) { lean_object* x_86; lean_object* x_87; @@ -39613,30 +39634,30 @@ x_87 = lean_ctor_get(x_86, 1); lean_inc(x_87); lean_dec(x_86); x_18 = x_61; -x_19 = x_71; +x_19 = x_69; x_20 = x_87; -x_21 = x_64; -x_22 = x_72; -x_23 = x_67; -x_24 = x_63; -x_25 = x_62; -x_26 = x_68; -x_27 = x_69; -x_28 = x_70; +x_21 = x_67; +x_22 = x_64; +x_23 = x_68; +x_24 = x_62; +x_25 = x_71; +x_26 = x_66; +x_27 = x_72; +x_28 = x_65; x_29 = lean_box(0); goto block_58; } else { -lean_dec(x_71); -lean_dec(x_70); +lean_dec_ref(x_72); +lean_dec_ref(x_71); lean_dec_ref(x_69); -lean_dec(x_68); +lean_dec_ref(x_68); lean_dec_ref(x_67); -lean_dec_ref(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_61); +lean_dec(x_66); +lean_dec(x_65); +lean_dec(x_62); +lean_dec(x_61); lean_dec_ref(x_1); return x_85; } @@ -39648,12 +39669,12 @@ x_88 = lean_ctor_get(x_75, 1); lean_inc(x_88); lean_dec(x_75); x_89 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_OldCollector_collect___closed__1; -x_90 = l_Lean_Exception_toMessageData(x_66); +x_90 = l_Lean_Exception_toMessageData(x_60); x_91 = l_Lean_indentD(x_90); x_92 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_92, 0, x_89); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__1___redArg(x_59, x_92, x_88, x_62, x_68, x_69, x_70); +x_93 = l_Lean_addTrace___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__1___redArg(x_59, x_92, x_88, x_71, x_66, x_72, x_65); if (lean_obj_tag(x_93) == 0) { lean_object* x_94; lean_object* x_95; @@ -39664,30 +39685,30 @@ x_95 = lean_ctor_get(x_94, 1); lean_inc(x_95); lean_dec(x_94); x_18 = x_61; -x_19 = x_71; +x_19 = x_69; x_20 = x_95; -x_21 = x_64; -x_22 = x_72; -x_23 = x_67; -x_24 = x_63; -x_25 = x_62; -x_26 = x_68; -x_27 = x_69; -x_28 = x_70; +x_21 = x_67; +x_22 = x_64; +x_23 = x_68; +x_24 = x_62; +x_25 = x_71; +x_26 = x_66; +x_27 = x_72; +x_28 = x_65; x_29 = lean_box(0); goto block_58; } else { -lean_dec(x_71); -lean_dec(x_70); +lean_dec_ref(x_72); +lean_dec_ref(x_71); lean_dec_ref(x_69); -lean_dec(x_68); +lean_dec_ref(x_68); lean_dec_ref(x_67); -lean_dec_ref(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_61); +lean_dec(x_66); +lean_dec(x_65); +lean_dec(x_62); +lean_dec(x_61); lean_dec_ref(x_1); return x_93; } @@ -39697,16 +39718,16 @@ return x_93; else { uint8_t x_96; -lean_dec(x_71); -lean_dec(x_70); +lean_dec_ref(x_72); +lean_dec_ref(x_71); lean_dec_ref(x_69); -lean_dec(x_68); +lean_dec_ref(x_68); lean_dec_ref(x_67); -lean_dec_ref(x_66); -lean_dec_ref(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_61); +lean_dec(x_66); +lean_dec(x_65); +lean_dec(x_62); +lean_dec(x_61); +lean_dec_ref(x_60); lean_dec_ref(x_1); x_96 = !lean_is_exclusive(x_74); if (x_96 == 0) @@ -39728,19 +39749,19 @@ return x_98; else { lean_object* x_99; -lean_dec(x_71); -lean_dec(x_70); +lean_dec_ref(x_72); +lean_dec_ref(x_71); lean_dec_ref(x_69); -lean_dec(x_68); +lean_dec_ref(x_68); lean_dec_ref(x_67); -lean_dec_ref(x_65); -lean_dec_ref(x_64); -lean_dec(x_63); -lean_dec_ref(x_62); -lean_dec_ref(x_61); +lean_dec(x_66); +lean_dec(x_65); +lean_dec_ref(x_63); +lean_dec(x_62); +lean_dec(x_61); lean_dec_ref(x_1); x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_66); +lean_ctor_set(x_99, 0, x_60); return x_99; } } @@ -39753,36 +39774,36 @@ if (x_114 == 0) uint8_t x_115; lean_inc_ref(x_112); x_115 = l_Lean_Exception_isRuntime(x_112); -x_60 = lean_box(0); -x_61 = x_103; -x_62 = x_104; -x_63 = x_105; -x_64 = x_107; -x_65 = x_109; -x_66 = x_112; -x_67 = x_110; -x_68 = x_101; -x_69 = x_102; -x_70 = x_106; -x_71 = x_108; +x_60 = x_112; +x_61 = x_104; +x_62 = x_109; +x_63 = x_101; +x_64 = x_103; +x_65 = x_102; +x_66 = x_105; +x_67 = x_107; +x_68 = x_106; +x_69 = x_108; +x_70 = lean_box(0); +x_71 = x_110; x_72 = x_111; x_73 = x_115; goto block_100; } else { -x_60 = lean_box(0); -x_61 = x_103; -x_62 = x_104; -x_63 = x_105; -x_64 = x_107; -x_65 = x_109; -x_66 = x_112; -x_67 = x_110; -x_68 = x_101; -x_69 = x_102; -x_70 = x_106; -x_71 = x_108; +x_60 = x_112; +x_61 = x_104; +x_62 = x_109; +x_63 = x_101; +x_64 = x_103; +x_65 = x_102; +x_66 = x_105; +x_67 = x_107; +x_68 = x_106; +x_69 = x_108; +x_70 = lean_box(0); +x_71 = x_110; x_72 = x_111; x_73 = x_114; goto block_100; @@ -39793,7 +39814,7 @@ block_148: if (lean_obj_tag(x_128) == 0) { uint8_t x_129; -lean_dec_ref(x_125); +lean_dec_ref(x_117); x_129 = !lean_is_exclusive(x_128); if (x_129 == 0) { @@ -39807,17 +39828,17 @@ lean_free_object(x_128); x_132 = lean_ctor_get(x_130, 1); lean_inc(x_132); lean_dec(x_130); -x_18 = x_119; +x_18 = x_118; x_19 = x_124; x_20 = x_132; x_21 = x_123; -x_22 = x_127; -x_23 = x_126; -x_24 = x_121; -x_25 = x_120; -x_26 = x_117; -x_27 = x_118; -x_28 = x_122; +x_22 = x_120; +x_23 = x_122; +x_24 = x_125; +x_25 = x_126; +x_26 = x_121; +x_27 = x_127; +x_28 = x_119; x_29 = lean_box(0); goto block_58; } @@ -39825,15 +39846,15 @@ else { uint8_t x_133; lean_inc_ref(x_131); +lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec(x_124); +lean_dec(x_125); +lean_dec_ref(x_124); lean_dec_ref(x_123); -lean_dec(x_122); +lean_dec_ref(x_122); lean_dec(x_121); -lean_dec_ref(x_120); -lean_dec_ref(x_119); -lean_dec_ref(x_118); -lean_dec(x_117); +lean_dec(x_119); +lean_dec(x_118); lean_dec_ref(x_1); x_133 = !lean_is_exclusive(x_130); if (x_133 == 0) @@ -39877,17 +39898,17 @@ lean_object* x_141; x_141 = lean_ctor_get(x_139, 1); lean_inc(x_141); lean_dec(x_139); -x_18 = x_119; +x_18 = x_118; x_19 = x_124; x_20 = x_141; x_21 = x_123; -x_22 = x_127; -x_23 = x_126; -x_24 = x_121; -x_25 = x_120; -x_26 = x_117; -x_27 = x_118; -x_28 = x_122; +x_22 = x_120; +x_23 = x_122; +x_24 = x_125; +x_25 = x_126; +x_26 = x_121; +x_27 = x_127; +x_28 = x_119; x_29 = lean_box(0); goto block_58; } @@ -39895,15 +39916,15 @@ else { lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_inc_ref(x_140); +lean_dec_ref(x_127); lean_dec_ref(x_126); -lean_dec(x_124); +lean_dec(x_125); +lean_dec_ref(x_124); lean_dec_ref(x_123); -lean_dec(x_122); +lean_dec_ref(x_122); lean_dec(x_121); -lean_dec_ref(x_120); -lean_dec_ref(x_119); -lean_dec_ref(x_118); -lean_dec(x_117); +lean_dec(x_119); +lean_dec(x_118); lean_dec_ref(x_1); x_142 = lean_ctor_get(x_139, 1); lean_inc(x_142); @@ -39938,9 +39959,9 @@ x_147 = lean_ctor_get(x_128, 0); lean_inc(x_147); lean_dec_ref(x_128); x_101 = x_117; -x_102 = x_118; -x_103 = x_119; -x_104 = x_120; +x_102 = x_119; +x_103 = x_120; +x_104 = x_118; x_105 = x_121; x_106 = x_122; x_107 = x_123; @@ -39984,8 +40005,8 @@ x_165 = lean_unbox(x_164); lean_dec(x_164); if (x_165 == 0) { -x_18 = x_162; -x_19 = x_160; +x_18 = x_160; +x_19 = x_162; x_20 = x_149; x_21 = x_150; x_22 = x_151; @@ -40031,17 +40052,17 @@ lean_inc(x_153); lean_inc_ref(x_152); lean_inc_ref(x_150); x_177 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons___lam__0(x_1, x_59, x_166, x_176, x_175, x_150, x_151, x_152, x_153, x_154, x_155, x_156, x_157); -x_117 = x_155; -x_118 = x_156; -x_119 = x_162; -x_120 = x_154; -x_121 = x_153; -x_122 = x_157; +x_117 = x_149; +x_118 = x_160; +x_119 = x_157; +x_120 = x_151; +x_121 = x_155; +x_122 = x_152; x_123 = x_150; -x_124 = x_160; -x_125 = x_149; -x_126 = x_152; -x_127 = x_151; +x_124 = x_162; +x_125 = x_153; +x_126 = x_154; +x_127 = x_156; x_128 = x_177; goto block_148; } @@ -40081,17 +40102,17 @@ lean_inc(x_153); lean_inc_ref(x_152); lean_inc_ref(x_150); x_187 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons___lam__0(x_1, x_59, x_166, x_185, x_186, x_150, x_151, x_152, x_153, x_154, x_155, x_156, x_157); -x_117 = x_155; -x_118 = x_156; -x_119 = x_162; -x_120 = x_154; -x_121 = x_153; -x_122 = x_157; +x_117 = x_149; +x_118 = x_160; +x_119 = x_157; +x_120 = x_151; +x_121 = x_155; +x_122 = x_152; x_123 = x_150; -x_124 = x_160; -x_125 = x_149; -x_126 = x_152; -x_127 = x_151; +x_124 = x_162; +x_125 = x_153; +x_126 = x_154; +x_127 = x_156; x_128 = x_187; goto block_148; } @@ -40101,17 +40122,17 @@ lean_object* x_188; x_188 = lean_ctor_get(x_183, 0); lean_inc(x_188); lean_dec_ref(x_183); -x_101 = x_155; -x_102 = x_156; -x_103 = x_162; -x_104 = x_154; -x_105 = x_153; -x_106 = x_157; +x_101 = x_149; +x_102 = x_157; +x_103 = x_151; +x_104 = x_160; +x_105 = x_155; +x_106 = x_152; x_107 = x_150; -x_108 = x_160; -x_109 = x_149; -x_110 = x_152; -x_111 = x_151; +x_108 = x_162; +x_109 = x_153; +x_110 = x_154; +x_111 = x_156; x_112 = x_188; x_113 = lean_box(0); goto block_116; @@ -40149,17 +40170,17 @@ lean_inc(x_153); lean_inc_ref(x_152); lean_inc_ref(x_150); x_197 = l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons___lam__0(x_1, x_59, x_166, x_195, x_196, x_150, x_151, x_152, x_153, x_154, x_155, x_156, x_157); -x_117 = x_155; -x_118 = x_156; -x_119 = x_162; -x_120 = x_154; -x_121 = x_153; -x_122 = x_157; +x_117 = x_149; +x_118 = x_160; +x_119 = x_157; +x_120 = x_151; +x_121 = x_155; +x_122 = x_152; x_123 = x_150; -x_124 = x_160; -x_125 = x_149; -x_126 = x_152; -x_127 = x_151; +x_124 = x_162; +x_125 = x_153; +x_126 = x_154; +x_127 = x_156; x_128 = x_197; goto block_148; } @@ -40169,17 +40190,17 @@ lean_object* x_198; x_198 = lean_ctor_get(x_193, 0); lean_inc(x_198); lean_dec_ref(x_193); -x_101 = x_155; -x_102 = x_156; -x_103 = x_162; -x_104 = x_154; -x_105 = x_153; -x_106 = x_157; +x_101 = x_149; +x_102 = x_157; +x_103 = x_151; +x_104 = x_160; +x_105 = x_155; +x_106 = x_152; x_107 = x_150; -x_108 = x_160; -x_109 = x_149; -x_110 = x_152; -x_111 = x_151; +x_108 = x_162; +x_109 = x_153; +x_110 = x_154; +x_111 = x_156; x_112 = x_198; x_113 = lean_box(0); goto block_116; @@ -40193,17 +40214,17 @@ lean_object* x_199; x_199 = lean_ctor_get(x_171, 0); lean_inc(x_199); lean_dec_ref(x_171); -x_101 = x_155; -x_102 = x_156; -x_103 = x_162; -x_104 = x_154; -x_105 = x_153; -x_106 = x_157; +x_101 = x_149; +x_102 = x_157; +x_103 = x_151; +x_104 = x_160; +x_105 = x_155; +x_106 = x_152; x_107 = x_150; -x_108 = x_160; -x_109 = x_149; -x_110 = x_152; -x_111 = x_151; +x_108 = x_162; +x_109 = x_153; +x_110 = x_154; +x_111 = x_156; x_112 = x_199; x_113 = lean_box(0); goto block_116; @@ -40495,15 +40516,15 @@ block_58: { 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; size_t x_38; size_t x_39; lean_object* x_40; x_30 = l___private_Lean_Meta_Transform_0__Lean_Core_transform_visit___at___00Lean_Core_transform___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectOffsets_spec__0_spec__0___lam__1___closed__0; -lean_inc(x_19); -x_31 = lean_mk_array(x_19, x_30); +lean_inc(x_18); +x_31 = lean_mk_array(x_18, x_30); x_32 = lean_unsigned_to_nat(1u); -x_33 = lean_nat_sub(x_19, x_32); -lean_dec(x_19); +x_33 = lean_nat_sub(x_18, x_32); +lean_dec(x_18); x_34 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_31, x_33); x_35 = lean_unsigned_to_nat(0u); -x_36 = lean_array_get_size(x_18); -x_37 = l_Array_toSubarray___redArg(x_18, x_35, x_36); +x_36 = lean_array_get_size(x_19); +x_37 = l_Array_toSubarray___redArg(x_19, x_35, x_36); x_38 = lean_array_size(x_34); x_39 = 0; x_40 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_collectSingletons_spec__2(x_34, x_38, x_39, x_37, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28); @@ -43791,7 +43812,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 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__2)); x_2 = lean_unsigned_to_nat(13u); -x_3 = lean_unsigned_to_nat(1333u); +x_3 = lean_unsigned_to_nat(1337u); x_4 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchTheoremWithKind_x3f___lam__0___closed__5)); x_5 = ((lean_object*)(l_Lean_Meta_Grind_isGenPattern_x3f___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -48099,7 +48120,7 @@ block_112: lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_47 = ((lean_object*)(l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_save___closed__0)); x_48 = lean_string_append(x_46, x_47); -x_49 = l_List_toString___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_save_spec__2(x_42); +x_49 = l_List_toString___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_save_spec__2(x_44); x_50 = lean_string_append(x_48, x_49); lean_dec_ref(x_49); if (x_3 == 0) @@ -48133,9 +48154,9 @@ x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_55); lean_ctor_set(x_62, 1, x_61); x_11 = x_50; -x_12 = x_44; +x_12 = x_43; x_13 = x_62; -x_14 = x_43; +x_14 = x_42; x_15 = lean_box(0); goto block_40; } @@ -48143,8 +48164,8 @@ else { uint8_t x_63; lean_dec_ref(x_50); -lean_dec_ref(x_44); lean_dec_ref(x_43); +lean_dec_ref(x_42); lean_dec_ref(x_2); x_63 = !lean_is_exclusive(x_51); if (x_63 == 0) @@ -48191,9 +48212,9 @@ x_77 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_77, 0, x_70); lean_ctor_set(x_77, 1, x_76); x_11 = x_50; -x_12 = x_44; +x_12 = x_43; x_13 = x_77; -x_14 = x_43; +x_14 = x_42; x_15 = lean_box(0); goto block_40; } @@ -48201,8 +48222,8 @@ else { uint8_t x_78; lean_dec_ref(x_50); -lean_dec_ref(x_44); lean_dec_ref(x_43); +lean_dec_ref(x_42); lean_dec_ref(x_2); x_78 = !lean_is_exclusive(x_66); if (x_78 == 0) @@ -48249,9 +48270,9 @@ x_91 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_91, 0, x_85); lean_ctor_set(x_91, 1, x_90); x_11 = x_50; -x_12 = x_44; +x_12 = x_43; x_13 = x_91; -x_14 = x_43; +x_14 = x_42; x_15 = lean_box(0); goto block_40; } @@ -48259,8 +48280,8 @@ else { uint8_t x_92; lean_dec_ref(x_50); -lean_dec_ref(x_44); lean_dec_ref(x_43); +lean_dec_ref(x_42); lean_dec_ref(x_2); lean_dec(x_1); x_92 = !lean_is_exclusive(x_81); @@ -48311,9 +48332,9 @@ x_108 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_108, 0, x_100); lean_ctor_set(x_108, 1, x_107); x_11 = x_50; -x_12 = x_44; +x_12 = x_43; x_13 = x_108; -x_14 = x_43; +x_14 = x_42; x_15 = lean_box(0); goto block_40; } @@ -48321,8 +48342,8 @@ else { uint8_t x_109; lean_dec_ref(x_50); -lean_dec_ref(x_44); lean_dec_ref(x_43); +lean_dec_ref(x_42); lean_dec_ref(x_2); lean_dec(x_1); x_109 = !lean_is_exclusive(x_95); @@ -48352,8 +48373,8 @@ lean_object* x_118; x_118 = ((lean_object*)(l_Lean_Meta_Grind_EMatchTheoremKind_toAttribute___closed__2)); x_41 = lean_box(0); x_42 = x_114; -x_43 = x_115; -x_44 = x_117; +x_43 = x_117; +x_44 = x_115; x_45 = x_116; x_46 = x_118; goto block_112; @@ -48364,8 +48385,8 @@ lean_object* x_119; x_119 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6___closed__1)); x_41 = lean_box(0); x_42 = x_114; -x_43 = x_115; -x_44 = x_117; +x_43 = x_117; +x_44 = x_115; x_45 = x_116; x_46 = x_119; goto block_112; @@ -48396,8 +48417,8 @@ lean_dec(x_125); x_128 = ((lean_object*)(l_List_toString___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_save_spec__2___closed__1)); lean_inc(x_122); x_113 = lean_box(0); -x_114 = x_126; -x_115 = x_127; +x_114 = x_127; +x_115 = x_126; x_116 = x_122; x_117 = x_128; goto block_120; @@ -48413,8 +48434,8 @@ lean_dec(x_125); x_131 = ((lean_object*)(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00__private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_detectGeneralizedPatterns_x3f_spec__2_spec__3_spec__6___closed__1)); lean_inc(x_122); x_113 = lean_box(0); -x_114 = x_129; -x_115 = x_130; +x_114 = x_130; +x_115 = x_129; x_116 = x_122; x_117 = x_131; goto block_120; @@ -48999,7 +49020,7 @@ block_24: if (x_21 == 0) { lean_object* x_22; -lean_dec_ref(x_20); +lean_dec_ref(x_19); x_22 = lean_box(0); x_13 = x_22; x_14 = x_7; @@ -49011,7 +49032,7 @@ else lean_object* x_23; lean_dec_ref(x_7); x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_20); +lean_ctor_set(x_23, 0, x_19); return x_23; } } @@ -49024,15 +49045,15 @@ if (x_27 == 0) uint8_t x_28; lean_inc_ref(x_25); x_28 = l_Lean_Exception_isRuntime(x_25); -x_19 = lean_box(0); -x_20 = x_25; +x_19 = x_25; +x_20 = lean_box(0); x_21 = x_28; goto block_24; } else { -x_19 = lean_box(0); -x_20 = x_25; +x_19 = x_25; +x_20 = lean_box(0); x_21 = x_27; goto block_24; } @@ -49486,8 +49507,8 @@ goto block_57; block_16: { lean_object* x_14; lean_object* x_15; -x_14 = lean_array_fget(x_12, x_11); -lean_dec_ref(x_12); +x_14 = lean_array_fget(x_11, x_12); +lean_dec_ref(x_11); x_15 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_15, 0, x_14); return x_15; @@ -49495,7 +49516,7 @@ return x_15; block_40: { lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_array_get_size(x_18); +x_21 = lean_array_get_size(x_20); x_22 = lean_unsigned_to_nat(1u); x_23 = lean_nat_dec_eq(x_21, x_22); if (x_23 == 0) @@ -49504,19 +49525,19 @@ lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; x_24 = lean_box(0); x_25 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchTheoremAndSuggest___closed__0)); x_26 = 4; -x_27 = l_Lean_Meta_Tactic_TryThis_addSuggestions___redArg(x_1, x_18, x_24, x_25, x_24, x_26, x_8, x_9); +x_27 = l_Lean_Meta_Tactic_TryThis_addSuggestions___redArg(x_1, x_20, x_24, x_25, x_24, x_26, x_8, x_9); if (lean_obj_tag(x_27) == 0) { lean_dec_ref(x_27); -x_11 = x_19; -x_12 = x_20; +x_11 = x_17; +x_12 = x_19; x_13 = lean_box(0); goto block_16; } else { uint8_t x_28; -lean_dec_ref(x_20); +lean_dec_ref(x_17); x_28 = !lean_is_exclusive(x_27); if (x_28 == 0) { @@ -49538,8 +49559,8 @@ else { lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; x_31 = l_Lean_Meta_Tactic_TryThis_instInhabitedSuggestion_default; -x_32 = lean_array_get(x_31, x_18, x_19); -lean_dec_ref(x_18); +x_32 = lean_array_get(x_31, x_20, x_19); +lean_dec_ref(x_20); x_33 = lean_box(0); x_34 = ((lean_object*)(l_Lean_Meta_Grind_mkEMatchTheoremAndSuggest___closed__1)); x_35 = 4; @@ -49547,15 +49568,15 @@ x_36 = l_Lean_Meta_Tactic_TryThis_addSuggestion(x_1, x_32, x_33, x_34, x_33, x_3 if (lean_obj_tag(x_36) == 0) { lean_dec_ref(x_36); -x_11 = x_19; -x_12 = x_20; +x_11 = x_17; +x_12 = x_19; x_13 = lean_box(0); goto block_16; } else { uint8_t x_37; -lean_dec_ref(x_20); +lean_dec_ref(x_17); x_37 = !lean_is_exclusive(x_36); if (x_37 == 0) { @@ -49613,10 +49634,10 @@ lean_dec(x_7); lean_dec_ref(x_6); if (x_5 == 0) { -x_17 = lean_box(0); -x_18 = x_44; +x_17 = x_45; +x_18 = lean_box(0); x_19 = x_46; -x_20 = x_45; +x_20 = x_44; goto block_40; } else @@ -49631,17 +49652,17 @@ lean_dec_ref(x_44); lean_dec(x_9); lean_dec_ref(x_8); lean_dec(x_1); -x_11 = x_46; -x_12 = x_45; +x_11 = x_45; +x_12 = x_46; x_13 = lean_box(0); goto block_16; } else { -x_17 = lean_box(0); -x_18 = x_44; +x_17 = x_45; +x_18 = lean_box(0); x_19 = x_46; -x_20 = x_45; +x_20 = x_44; goto block_40; } } @@ -49867,6 +49888,7 @@ lean_object* initialize_Lean_Meta_Tactic_Grind_Extension(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_Grind_Util(uint8_t builtin); lean_object* initialize_Lean_Meta_Tactic_TryThis(uint8_t builtin); lean_object* initialize_Lean_Meta_Sym_Util(uint8_t builtin); +lean_object* initialize_Lean_Meta_Sym_Eta(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Grind_EMatchTheorem(uint8_t builtin) { lean_object * res; @@ -49884,6 +49906,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Sym_Util(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Sym_Eta(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_PersistentHashMap_eraseAux___at___00Lean_PersistentHashMap_erase___at___00Lean_Meta_Grind_SymbolPriorities_erase_spec__0_spec__0___redArg___closed__0 = _init_l_Lean_PersistentHashMap_eraseAux___at___00Lean_PersistentHashMap_erase___at___00Lean_Meta_Grind_SymbolPriorities_erase_spec__0_spec__0___redArg___closed__0(); l_Lean_PersistentHashMap_eraseAux___at___00Lean_PersistentHashMap_erase___at___00Lean_Meta_Grind_SymbolPriorities_erase_spec__0_spec__0___redArg___closed__1 = _init_l_Lean_PersistentHashMap_eraseAux___at___00Lean_PersistentHashMap_erase___at___00Lean_Meta_Grind_SymbolPriorities_erase_spec__0_spec__0___redArg___closed__1(); l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_initFn___closed__21_00___x40_Lean_Meta_Tactic_Grind_EMatchTheorem_2275318982____hygCtx___hyg_2_ = _init_l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_initFn___closed__21_00___x40_Lean_Meta_Tactic_Grind_EMatchTheorem_2275318982____hygCtx___hyg_2_(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Grind/RegisterCommand.c b/stage0/stdlib/Lean/Meta/Tactic/Grind/RegisterCommand.c index dfce2a7dce..aedf720f88 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Grind/RegisterCommand.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Grind/RegisterCommand.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Grind.RegisterCommand -// Imports: public import Lean.Meta.Tactic.Grind.Types public meta import Init.Data.ToString.Name +// Imports: public meta import Lean.Meta.Tactic.Grind.Attr #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -62,222 +62,224 @@ static const lean_ctor_object l_Lean_Parser_Command_registerGrindAttr___closed__ static const lean_object* l_Lean_Parser_Command_registerGrindAttr___closed__22 = (const lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__22_value; static lean_object* l_Lean_Parser_Command_registerGrindAttr___closed__23; LEAN_EXPORT lean_object* l_Lean_Parser_Command_registerGrindAttr; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "initializeKeyword"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "public"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0_value; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(113, 140, 114, 135, 71, 133, 96, 5)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(99, 134, 241, 204, 211, 206, 124, 144)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "meta"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2_value; -lean_object* l_String_toRawSubstring_x27(lean_object*); -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2_value),LEAN_SCALAR_PTR_LITERAL(241, 12, 90, 240, 78, 252, 149, 89)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2_value),LEAN_SCALAR_PTR_LITERAL(124, 247, 59, 43, 44, 177, 111, 66)}}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3_value; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "initializeKeyword"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4_value),LEAN_SCALAR_PTR_LITERAL(113, 140, 114, 135, 71, 133, 96, 5)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "typeSpec"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6_value),LEAN_SCALAR_PTR_LITERAL(77, 126, 241, 117, 174, 189, 108, 62)}}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ":"}; +lean_object* l_String_toRawSubstring_x27(lean_object*); +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6_value),LEAN_SCALAR_PTR_LITERAL(241, 12, 90, 240, 78, 252, 149, 89)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Extension"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(65, 184, 222, 195, 211, 23, 22, 1)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "typeSpec"}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10_value; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10_value),LEAN_SCALAR_PTR_LITERAL(77, 126, 241, 117, 174, 189, 108, 62)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(160, 56, 216, 97, 9, 85, 52, 211)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(222, 145, 103, 225, 142, 169, 142, 153)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ":"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "Extension"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12_value)}}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value),LEAN_SCALAR_PTR_LITERAL(65, 184, 222, 195, 211, 23, 22, 1)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15_value)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(160, 56, 216, 97, 9, 85, 52, 211)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13_value),LEAN_SCALAR_PTR_LITERAL(222, 145, 103, 225, 142, 169, 142, 153)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 1, .m_data = "←"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "doSeqIndent"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16_value)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18_value),LEAN_SCALAR_PTR_LITERAL(93, 115, 138, 230, 225, 195, 43, 46)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__18_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "doSeqItem"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17_value),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19_value)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20_value),LEAN_SCALAR_PTR_LITERAL(10, 94, 50, 120, 46, 251, 13, 13)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 1, .m_data = "←"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "doExpr"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "doSeqIndent"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22_value; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22_value),LEAN_SCALAR_PTR_LITERAL(130, 168, 60, 255, 153, 218, 88, 77)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__22_value),LEAN_SCALAR_PTR_LITERAL(93, 115, 138, 230, 225, 195, 43, 46)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "app"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "doSeqItem"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24_value; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24_value),LEAN_SCALAR_PTR_LITERAL(69, 118, 10, 41, 220, 156, 243, 179)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__24_value),LEAN_SCALAR_PTR_LITERAL(10, 94, 50, 120, 46, 251, 13, 13)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "registerAttr"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "doExpr"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value),LEAN_SCALAR_PTR_LITERAL(98, 25, 4, 98, 170, 222, 222, 42)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value),LEAN_SCALAR_PTR_LITERAL(130, 168, 60, 255, 153, 218, 88, 77)}}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27_value; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "app"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28_value; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(160, 56, 216, 97, 9, 85, 52, 211)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26_value),LEAN_SCALAR_PTR_LITERAL(213, 19, 34, 154, 74, 108, 206, 181)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28_value),LEAN_SCALAR_PTR_LITERAL(69, 118, 10, 41, 220, 156, 243, 179)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "registerAttr"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "namedArgument"}; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value),LEAN_SCALAR_PTR_LITERAL(98, 25, 4, 98, 170, 222, 222, 42)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32_value; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32_value),LEAN_SCALAR_PTR_LITERAL(226, 89, 129, 113, 173, 121, 169, 188)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(160, 56, 216, 97, 9, 85, 52, 211)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30_value),LEAN_SCALAR_PTR_LITERAL(213, 19, 34, 154, 74, 108, 206, 181)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "("}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ref"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35_value),LEAN_SCALAR_PTR_LITERAL(35, 123, 1, 146, 14, 217, 108, 179)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "syntax"}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36_value; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36_value),LEAN_SCALAR_PTR_LITERAL(39, 60, 146, 133, 142, 21, 8, 39)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = ":="}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "attrKind"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ")"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38_value),LEAN_SCALAR_PTR_LITERAL(32, 164, 20, 104, 12, 221, 204, 110)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "syntax"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "namedName"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40_value; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40_value),LEAN_SCALAR_PTR_LITERAL(39, 60, 146, 133, 142, 21, 8, 39)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40_value),LEAN_SCALAR_PTR_LITERAL(73, 173, 122, 11, 5, 195, 101, 245)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "attrKind"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "("}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42_value),LEAN_SCALAR_PTR_LITERAL(32, 164, 20, 104, 12, 221, 204, 110)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "name"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "namedName"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = ":="}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44_value),LEAN_SCALAR_PTR_LITERAL(73, 173, 122, 11, 5, 195, 101, 245)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ")"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "name"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Syntax"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Syntax"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "atom"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "atom"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value),LEAN_SCALAR_PTR_LITERAL(144, 22, 146, 169, 39, 242, 124, 88)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48_value),LEAN_SCALAR_PTR_LITERAL(144, 22, 146, 169, 39, 242, 124, 88)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "stx_\?"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "stx_\?"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49_value),LEAN_SCALAR_PTR_LITERAL(19, 110, 207, 78, 164, 149, 1, 207)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50_value),LEAN_SCALAR_PTR_LITERAL(19, 110, 207, 78, 164, 149, 1, 207)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "paren"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "paren"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51_value),LEAN_SCALAR_PTR_LITERAL(171, 185, 174, 62, 133, 84, 210, 196)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52_value),LEAN_SCALAR_PTR_LITERAL(171, 185, 174, 62, 133, 84, 210, 196)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "cat"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "cat"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53_value),LEAN_SCALAR_PTR_LITERAL(95, 91, 11, 245, 227, 176, 7, 196)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__47_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(95, 91, 11, 245, 227, 176, 7, 196)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "ppSpace"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "ppSpace"}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56_value),LEAN_SCALAR_PTR_LITERAL(207, 47, 58, 43, 30, 240, 125, 246)}}; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55_value),LEAN_SCALAR_PTR_LITERAL(207, 47, 58, 43, 30, 240, 125, 246)}}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57_value; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 26, .m_capacity = 26, .m_length = 25, .m_data = "Lean.Parser.Attr.grindMod"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 26, .m_capacity = 26, .m_length = 25, .m_data = "Lean.Parser.Attr.grindMod"}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "grindMod"}; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "grindMod"}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60_value; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "attr"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "attr"}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62_value; -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62_value),LEAN_SCALAR_PTR_LITERAL(69, 57, 207, 35, 177, 108, 73, 87)}}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64_value; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61_value),LEAN_SCALAR_PTR_LITERAL(69, 57, 207, 35, 177, 108, 73, 87)}}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63_value; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Attr"}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Attr"}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65_value; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value),LEAN_SCALAR_PTR_LITERAL(7, 175, 252, 195, 22, 42, 161, 63)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value_aux_1),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65_value),LEAN_SCALAR_PTR_LITERAL(7, 175, 252, 195, 22, 42, 161, 63)}}; +static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66_value; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "!"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "!"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "\?"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "\?"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "!\?"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = "!\?"}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "null"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "null"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70_value),LEAN_SCALAR_PTR_LITERAL(24, 58, 49, 223, 146, 207, 197, 136)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71_value),LEAN_SCALAR_PTR_LITERAL(24, 58, 49, 223, 146, 207, 197, 136)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "initialize"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "initialize"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72_value),LEAN_SCALAR_PTR_LITERAL(55, 206, 156, 211, 241, 221, 187, 166)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73_value),LEAN_SCALAR_PTR_LITERAL(55, 206, 156, 211, 241, 221, 187, 166)}}; +static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "declModifiers"}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value; -static const lean_string_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "declModifiers"}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74_value),LEAN_SCALAR_PTR_LITERAL(0, 165, 146, 53, 36, 89, 7, 202)}}; static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerGrindAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value_aux_2),((lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75_value),LEAN_SCALAR_PTR_LITERAL(0, 165, 146, 53, 36, 89, 7, 202)}}; -static const lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76 = (const lean_object*)&l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76_value; lean_object* l_Array_mkArray0(lean_object*); -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78; +static lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77; lean_object* l_Array_append___redArg(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instQuoteNameMkStr1___private__1(lean_object*); -lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -329,70 +331,61 @@ x_1 = l_Lean_Parser_Command_registerGrindAttr___closed__23; return x_1; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__6)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__9)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__13)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__26)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__30)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59)); +x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62)); -x_2 = l_String_toRawSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64() { _start: { lean_object* x_1; lean_object* x_2; @@ -401,7 +394,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76() { _start: { lean_object* x_1; @@ -409,7 +402,7 @@ x_1 = l_Array_mkArray0(lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78() { +static lean_object* _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77() { _start: { lean_object* x_1; lean_object* x_2; @@ -421,521 +414,521 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -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; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_166; uint8_t x_167; +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; 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; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_170; uint8_t x_171; x_4 = ((lean_object*)(l_Lean_Parser_Command_registerGrindAttr___closed__0)); x_5 = ((lean_object*)(l_Lean_Parser_Command_registerGrindAttr___closed__4)); -x_166 = l_Lean_Parser_Command_registerGrindAttr___closed__7; +x_170 = l_Lean_Parser_Command_registerGrindAttr___closed__7; lean_inc(x_1); -x_167 = l_Lean_Syntax_isOfKind(x_1, x_166); -if (x_167 == 0) +x_171 = l_Lean_Syntax_isOfKind(x_1, x_170); +if (x_171 == 0) { -lean_object* x_168; lean_object* x_169; +lean_object* x_172; lean_object* x_173; lean_dec_ref(x_2); lean_dec(x_1); -x_168 = lean_box(1); -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_3); -return x_169; +x_172 = lean_box(1); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_3); +return x_173; } else { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_210; -x_170 = lean_unsigned_to_nat(0u); -x_171 = l_Lean_Syntax_getArg(x_1, x_170); -x_172 = lean_unsigned_to_nat(2u); -x_173 = l_Lean_Syntax_getArg(x_1, x_172); +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_214; +x_174 = lean_unsigned_to_nat(0u); +x_175 = l_Lean_Syntax_getArg(x_1, x_174); +x_176 = lean_unsigned_to_nat(2u); +x_177 = l_Lean_Syntax_getArg(x_1, x_176); lean_dec(x_1); -x_210 = l_Lean_Syntax_getOptional_x3f(x_171); -lean_dec(x_171); -if (lean_obj_tag(x_210) == 0) +x_214 = l_Lean_Syntax_getOptional_x3f(x_175); +lean_dec(x_175); +if (lean_obj_tag(x_214) == 0) { -lean_object* x_211; -x_211 = lean_box(0); -x_174 = x_211; -goto block_209; +lean_object* x_215; +x_215 = lean_box(0); +x_178 = x_215; +goto block_213; } else { -uint8_t x_212; -x_212 = !lean_is_exclusive(x_210); -if (x_212 == 0) +uint8_t x_216; +x_216 = !lean_is_exclusive(x_214); +if (x_216 == 0) { -x_174 = x_210; -goto block_209; +x_178 = x_214; +goto block_213; } else { -lean_object* x_213; lean_object* x_214; -x_213 = lean_ctor_get(x_210, 0); -lean_inc(x_213); -lean_dec(x_210); -x_214 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_214, 0, x_213); -x_174 = x_214; -goto block_209; +lean_object* x_217; lean_object* x_218; +x_217 = lean_ctor_get(x_214, 0); +lean_inc(x_217); +lean_dec(x_214); +x_218 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_218, 0, x_217); +x_178 = x_218; +goto block_213; } } -block_209: +block_213: { -lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_175 = l_Lean_TSyntax_getId(x_173); -lean_inc(x_175); -x_176 = l_Lean_Name_toString(x_175, x_167); -x_177 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66)); -x_178 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67)); -lean_inc(x_175); -x_179 = l_Lean_Name_append(x_178, x_175); -x_180 = 0; -x_181 = l_Lean_mkIdentFrom(x_173, x_179, x_180); -x_182 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68)); -lean_inc_ref(x_176); -x_183 = lean_string_append(x_176, x_182); -lean_inc(x_175); -x_184 = lean_name_append_after(x_175, x_182); -x_185 = l_Lean_Name_append(x_178, x_184); -x_186 = l_Lean_mkIdentFrom(x_173, x_185, x_180); -x_187 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69)); -lean_inc_ref(x_176); -x_188 = lean_string_append(x_176, x_187); -x_189 = lean_ctor_get(x_2, 1); -lean_inc(x_189); -x_190 = lean_ctor_get(x_2, 2); -lean_inc(x_190); -x_191 = lean_ctor_get(x_2, 5); -lean_inc(x_191); +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_179 = l_Lean_TSyntax_getId(x_177); +lean_inc(x_179); +x_180 = l_Lean_Name_toString(x_179, x_171); +x_181 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65)); +x_182 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__66)); +lean_inc(x_179); +x_183 = l_Lean_Name_append(x_182, x_179); +x_184 = 0; +x_185 = l_Lean_mkIdentFrom(x_177, x_183, x_184); +x_186 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__67)); +lean_inc_ref(x_180); +x_187 = lean_string_append(x_180, x_186); +lean_inc(x_179); +x_188 = lean_name_append_after(x_179, x_186); +x_189 = l_Lean_Name_append(x_182, x_188); +x_190 = l_Lean_mkIdentFrom(x_177, x_189, x_184); +x_191 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__68)); +lean_inc_ref(x_180); +x_192 = lean_string_append(x_180, x_191); +x_193 = lean_ctor_get(x_2, 1); +lean_inc(x_193); +x_194 = lean_ctor_get(x_2, 2); +lean_inc(x_194); +x_195 = lean_ctor_get(x_2, 5); +lean_inc(x_195); lean_dec_ref(x_2); -lean_inc(x_175); -x_192 = lean_name_append_after(x_175, x_187); -x_193 = l_Lean_Name_append(x_178, x_192); -x_194 = l_Lean_mkIdentFrom(x_173, x_193, x_180); -x_195 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__70)); -lean_inc_ref(x_176); -x_196 = lean_string_append(x_176, x_195); -lean_inc(x_175); -x_197 = lean_name_append_after(x_175, x_195); -x_198 = l_Lean_Name_append(x_178, x_197); -x_199 = l_Lean_mkIdentFrom(x_173, x_198, x_180); -lean_dec(x_173); -x_200 = l_Lean_SourceInfo_fromRef(x_191, x_180); -lean_dec(x_191); -x_201 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72)); -x_202 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73)); -x_203 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__74)); -x_204 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76)); -x_205 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77; -if (lean_obj_tag(x_174) == 1) +lean_inc(x_179); +x_196 = lean_name_append_after(x_179, x_191); +x_197 = l_Lean_Name_append(x_182, x_196); +x_198 = l_Lean_mkIdentFrom(x_177, x_197, x_184); +x_199 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__69)); +lean_inc_ref(x_180); +x_200 = lean_string_append(x_180, x_199); +lean_inc(x_179); +x_201 = lean_name_append_after(x_179, x_199); +x_202 = l_Lean_Name_append(x_182, x_201); +x_203 = l_Lean_mkIdentFrom(x_177, x_202, x_184); +lean_dec(x_177); +x_204 = l_Lean_SourceInfo_fromRef(x_195, x_184); +lean_dec(x_195); +x_205 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__71)); +x_206 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__72)); +x_207 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__73)); +x_208 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__75)); +x_209 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76; +if (lean_obj_tag(x_178) == 1) { -lean_object* x_206; lean_object* x_207; -x_206 = lean_ctor_get(x_174, 0); -lean_inc(x_206); -lean_dec_ref(x_174); -x_207 = l_Array_mkArray1___redArg(x_206); -x_6 = x_183; -x_7 = x_203; -x_8 = x_196; +lean_object* x_210; lean_object* x_211; +x_210 = lean_ctor_get(x_178, 0); +lean_inc(x_210); +lean_dec_ref(x_178); +x_211 = l_Array_mkArray1___redArg(x_210); +x_6 = x_185; +x_7 = x_204; +x_8 = x_205; x_9 = x_200; -x_10 = x_186; -x_11 = x_199; -x_12 = x_194; -x_13 = x_177; -x_14 = x_205; -x_15 = x_189; -x_16 = x_201; +x_10 = x_181; +x_11 = x_187; +x_12 = x_180; +x_13 = x_192; +x_14 = x_206; +x_15 = x_208; +x_16 = x_179; x_17 = x_190; -x_18 = x_204; -x_19 = x_188; -x_20 = x_202; -x_21 = x_187; -x_22 = x_175; -x_23 = x_181; -x_24 = x_176; -x_25 = x_207; -goto block_165; +x_18 = x_209; +x_19 = x_193; +x_20 = x_203; +x_21 = x_191; +x_22 = x_194; +x_23 = x_198; +x_24 = x_207; +x_25 = x_211; +goto block_169; } else { -lean_object* x_208; -lean_dec(x_174); -x_208 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78; -x_6 = x_183; -x_7 = x_203; -x_8 = x_196; +lean_object* x_212; +lean_dec(x_178); +x_212 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77; +x_6 = x_185; +x_7 = x_204; +x_8 = x_205; x_9 = x_200; -x_10 = x_186; -x_11 = x_199; -x_12 = x_194; -x_13 = x_177; -x_14 = x_205; -x_15 = x_189; -x_16 = x_201; +x_10 = x_181; +x_11 = x_187; +x_12 = x_180; +x_13 = x_192; +x_14 = x_206; +x_15 = x_208; +x_16 = x_179; x_17 = x_190; -x_18 = x_204; -x_19 = x_188; -x_20 = x_202; -x_21 = x_187; -x_22 = x_175; -x_23 = x_181; -x_24 = x_176; -x_25 = x_208; -goto block_165; +x_18 = x_209; +x_19 = x_193; +x_20 = x_203; +x_21 = x_191; +x_22 = x_194; +x_23 = x_198; +x_24 = x_207; +x_25 = x_212; +goto block_169; } } } -block_165: +block_169: { -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; lean_object* x_34; lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; 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; 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; 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; lean_object* 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -lean_inc_ref(x_14); -x_26 = l_Array_append___redArg(x_14, 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; lean_object* x_34; lean_object* x_35; 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; lean_object* x_45; lean_object* x_46; 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; 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; 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; lean_object* 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +lean_inc_ref(x_18); +x_26 = l_Array_append___redArg(x_18, x_25); lean_dec_ref(x_25); -lean_inc(x_16); -lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); x_27 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_27, 0, x_9); -lean_ctor_set(x_27, 1, x_16); +lean_ctor_set(x_27, 0, x_7); +lean_ctor_set(x_27, 1, x_8); lean_ctor_set(x_27, 2, x_26); -lean_inc(x_16); -lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); x_28 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_28, 0, x_9); -lean_ctor_set(x_28, 1, x_16); -lean_ctor_set(x_28, 2, x_14); -lean_inc_ref_n(x_28, 6); -lean_inc_ref(x_27); -lean_inc(x_9); -x_29 = l_Lean_Syntax_node7(x_9, x_18, x_27, x_28, x_28, x_28, x_28, x_28, x_28); +lean_ctor_set(x_28, 0, x_7); +lean_ctor_set(x_28, 1, x_8); +lean_ctor_set(x_28, 2, x_18); +x_29 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__0)); x_30 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__1)); -lean_inc(x_9); +lean_inc(x_7); x_31 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_31, 0, x_9); -lean_ctor_set(x_31, 1, x_20); -lean_inc(x_9); -x_32 = l_Lean_Syntax_node1(x_9, x_30, x_31); -x_33 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3; -x_34 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__4)); -lean_inc(x_17); -lean_inc(x_15); -x_35 = l_Lean_addMacroScope(x_15, x_34, x_17); -x_36 = lean_box(0); -lean_inc(x_9); -x_37 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_37, 0, x_9); -lean_ctor_set(x_37, 1, x_33); -lean_ctor_set(x_37, 2, x_35); -lean_ctor_set(x_37, 3, x_36); -x_38 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7)); -x_39 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8)); -lean_inc(x_9); -x_40 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_40, 0, x_9); -lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10; -x_42 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11)); -lean_inc(x_17); -lean_inc(x_15); -x_43 = l_Lean_addMacroScope(x_15, x_42, x_17); -x_44 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__16)); -lean_inc(x_9); -x_45 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_45, 0, x_9); -lean_ctor_set(x_45, 1, x_41); -lean_ctor_set(x_45, 2, x_43); -lean_ctor_set(x_45, 3, x_44); -lean_inc_ref(x_40); -lean_inc(x_9); -x_46 = l_Lean_Syntax_node2(x_9, x_38, x_40, x_45); -x_47 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__17)); -lean_inc(x_9); -x_48 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_48, 0, x_9); -lean_ctor_set(x_48, 1, x_47); -lean_inc(x_16); -lean_inc(x_9); -x_49 = l_Lean_Syntax_node3(x_9, x_16, x_37, x_46, x_48); -x_50 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__19)); -x_51 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21)); -x_52 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23)); -x_53 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25)); -x_54 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27; -x_55 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__28)); -lean_inc(x_17); -lean_inc(x_15); -x_56 = l_Lean_addMacroScope(x_15, x_55, x_17); -x_57 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31)); -lean_inc(x_9); -x_58 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_58, 0, x_9); -lean_ctor_set(x_58, 1, x_54); -lean_ctor_set(x_58, 2, x_56); -lean_ctor_set(x_58, 3, x_57); -x_59 = l_Lean_instQuoteNameMkStr1___private__1(x_22); -x_60 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__33)); -x_61 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__34)); -lean_inc(x_9); -x_62 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_62, 0, x_9); -lean_ctor_set(x_62, 1, x_61); -x_63 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36; -x_64 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37)); -lean_inc(x_17); -lean_inc(x_15); -x_65 = l_Lean_addMacroScope(x_15, x_64, x_17); -lean_inc(x_9); -x_66 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_66, 0, x_9); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set(x_66, 2, x_65); -lean_ctor_set(x_66, 3, x_36); -x_67 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__38)); -lean_inc(x_9); -x_68 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_68, 0, x_9); -lean_ctor_set(x_68, 1, x_67); -x_69 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39)); -lean_inc(x_9); -x_70 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_70, 0, x_9); -lean_ctor_set(x_70, 1, x_69); -lean_inc_ref(x_70); -lean_inc(x_59); -lean_inc_ref(x_68); -lean_inc_ref(x_62); -lean_inc(x_9); -x_71 = l_Lean_Syntax_node5(x_9, x_60, x_62, x_66, x_68, x_59, x_70); -lean_inc(x_16); -lean_inc(x_9); -x_72 = l_Lean_Syntax_node2(x_9, x_16, x_59, x_71); -lean_inc(x_9); -x_73 = l_Lean_Syntax_node2(x_9, x_53, x_58, x_72); -lean_inc(x_9); -x_74 = l_Lean_Syntax_node1(x_9, x_52, x_73); +lean_ctor_set(x_31, 0, x_7); +lean_ctor_set(x_31, 1, x_29); +lean_inc(x_7); +x_32 = l_Lean_Syntax_node1(x_7, x_30, x_31); +lean_inc(x_8); +lean_inc(x_7); +x_33 = l_Lean_Syntax_node1(x_7, x_8, x_32); +x_34 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__2)); +x_35 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3)); +lean_inc(x_7); +x_36 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_36, 0, x_7); +lean_ctor_set(x_36, 1, x_34); +lean_inc(x_7); +x_37 = l_Lean_Syntax_node1(x_7, x_35, x_36); +lean_inc(x_8); +lean_inc(x_7); +x_38 = l_Lean_Syntax_node1(x_7, x_8, x_37); +lean_inc_ref_n(x_28, 4); +lean_inc_ref(x_27); +lean_inc(x_7); +x_39 = l_Lean_Syntax_node7(x_7, x_15, x_27, x_28, x_33, x_28, x_38, x_28, x_28); +x_40 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__5)); +lean_inc(x_7); +x_41 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_41, 0, x_7); +lean_ctor_set(x_41, 1, x_14); +lean_inc(x_7); +x_42 = l_Lean_Syntax_node1(x_7, x_40, x_41); +x_43 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7; +x_44 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__8)); +lean_inc(x_22); +lean_inc(x_19); +x_45 = l_Lean_addMacroScope(x_19, x_44, x_22); +x_46 = lean_box(0); +lean_inc(x_7); +x_47 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_47, 0, x_7); +lean_ctor_set(x_47, 1, x_43); +lean_ctor_set(x_47, 2, x_45); +lean_ctor_set(x_47, 3, x_46); +x_48 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__11)); +x_49 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__12)); +lean_inc(x_7); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_7); +lean_ctor_set(x_50, 1, x_49); +x_51 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14; +x_52 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__15)); +lean_inc(x_22); +lean_inc(x_19); +x_53 = l_Lean_addMacroScope(x_19, x_52, x_22); +x_54 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__20)); +lean_inc(x_7); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_7); +lean_ctor_set(x_55, 1, x_51); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_54); +lean_inc_ref(x_50); +lean_inc(x_7); +x_56 = l_Lean_Syntax_node2(x_7, x_48, x_50, x_55); +x_57 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__21)); +lean_inc(x_7); +x_58 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_58, 0, x_7); +lean_ctor_set(x_58, 1, x_57); +lean_inc(x_8); +lean_inc(x_7); +x_59 = l_Lean_Syntax_node3(x_7, x_8, x_47, x_56, x_58); +x_60 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__23)); +x_61 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__25)); +x_62 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27)); +x_63 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__29)); +x_64 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31; +x_65 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__32)); +lean_inc(x_22); +lean_inc(x_19); +x_66 = l_Lean_addMacroScope(x_19, x_65, x_22); +x_67 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__35)); +lean_inc(x_7); +x_68 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_68, 0, x_7); +lean_ctor_set(x_68, 1, x_64); +lean_ctor_set(x_68, 2, x_66); +lean_ctor_set(x_68, 3, x_67); +x_69 = l_Lean_instQuoteNameMkStr1___private__1(x_16); +lean_inc(x_8); +lean_inc(x_7); +x_70 = l_Lean_Syntax_node1(x_7, x_8, x_69); +lean_inc(x_7); +x_71 = l_Lean_Syntax_node2(x_7, x_63, x_68, x_70); +lean_inc(x_7); +x_72 = l_Lean_Syntax_node1(x_7, x_62, x_71); lean_inc_ref(x_28); -lean_inc(x_9); -x_75 = l_Lean_Syntax_node2(x_9, x_51, x_74, x_28); -lean_inc(x_16); -lean_inc(x_9); -x_76 = l_Lean_Syntax_node1(x_9, x_16, x_75); -lean_inc(x_9); -x_77 = l_Lean_Syntax_node1(x_9, x_50, x_76); -lean_inc(x_9); -x_78 = l_Lean_Syntax_node4(x_9, x_7, x_29, x_32, x_49, x_77); -x_79 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__40)); -x_80 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41)); -x_81 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43)); +lean_inc(x_7); +x_73 = l_Lean_Syntax_node2(x_7, x_61, x_72, x_28); +lean_inc(x_8); +lean_inc(x_7); +x_74 = l_Lean_Syntax_node1(x_7, x_8, x_73); +lean_inc(x_7); +x_75 = l_Lean_Syntax_node1(x_7, x_60, x_74); +lean_inc(x_7); +x_76 = l_Lean_Syntax_node4(x_7, x_24, x_39, x_42, x_59, x_75); +x_77 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36)); +x_78 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__37)); +x_79 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__39)); lean_inc_ref(x_28); -lean_inc(x_9); -x_82 = l_Lean_Syntax_node1(x_9, x_81, x_28); -lean_inc(x_9); -x_83 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_83, 0, x_9); -lean_ctor_set(x_83, 1, x_79); -x_84 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45)); -x_85 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__46)); -lean_inc(x_9); +lean_inc(x_7); +x_80 = l_Lean_Syntax_node1(x_7, x_79, x_28); +lean_inc(x_7); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_7); +lean_ctor_set(x_81, 1, x_77); +x_82 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__41)); +x_83 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__42)); +lean_inc(x_7); +x_84 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_84, 0, x_7); +lean_ctor_set(x_84, 1, x_83); +x_85 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__43)); +lean_inc(x_7); x_86 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_86, 0, x_9); +lean_ctor_set(x_86, 0, x_7); lean_ctor_set(x_86, 1, x_85); -lean_inc_ref(x_70); -lean_inc_ref(x_68); +x_87 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__44)); +lean_inc(x_7); +x_88 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_88, 0, x_7); +lean_ctor_set(x_88, 1, x_87); +x_89 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__45)); +lean_inc(x_7); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_7); +lean_ctor_set(x_90, 1, x_89); +lean_inc_ref(x_90); +lean_inc_ref(x_88); lean_inc_ref(x_86); -lean_inc_ref(x_62); -lean_inc(x_9); -x_87 = l_Lean_Syntax_node5(x_9, x_84, x_62, x_86, x_68, x_23, x_70); -lean_inc(x_16); -lean_inc(x_9); -x_88 = l_Lean_Syntax_node1(x_9, x_16, x_87); -x_89 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__49)); -x_90 = lean_box(2); -x_91 = l_Lean_Syntax_mkStrLit(x_24, x_90); -lean_inc(x_9); -x_92 = l_Lean_Syntax_node1(x_9, x_89, x_91); -x_93 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__51)); -x_94 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__53)); -x_95 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__55)); -x_96 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57; -x_97 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__58)); -lean_inc(x_17); -lean_inc(x_15); -x_98 = l_Lean_addMacroScope(x_15, x_97, x_17); -lean_inc(x_9); -x_99 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_99, 0, x_9); -lean_ctor_set(x_99, 1, x_96); -lean_ctor_set(x_99, 2, x_98); -lean_ctor_set(x_99, 3, x_36); +lean_inc_ref(x_84); +lean_inc(x_7); +x_91 = l_Lean_Syntax_node5(x_7, x_82, x_84, x_86, x_88, x_6, x_90); +lean_inc(x_8); +lean_inc(x_7); +x_92 = l_Lean_Syntax_node1(x_7, x_8, x_91); +x_93 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__48)); +x_94 = lean_box(2); +x_95 = l_Lean_Syntax_mkStrLit(x_12, x_94); +lean_inc(x_7); +x_96 = l_Lean_Syntax_node1(x_7, x_93, x_95); +x_97 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__50)); +x_98 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__52)); +x_99 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__54)); +x_100 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56; +x_101 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57)); +lean_inc(x_22); +lean_inc(x_19); +x_102 = l_Lean_addMacroScope(x_19, x_101, x_22); +lean_inc(x_7); +x_103 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_103, 0, x_7); +lean_ctor_set(x_103, 1, x_100); +lean_ctor_set(x_103, 2, x_102); +lean_ctor_set(x_103, 3, x_46); lean_inc_ref(x_28); -lean_inc(x_9); -x_100 = l_Lean_Syntax_node2(x_9, x_95, x_99, x_28); -x_101 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60; -x_102 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__61)); -x_103 = l_Lean_Name_mkStr4(x_4, x_5, x_13, x_102); -lean_inc(x_17); -lean_inc(x_103); -lean_inc(x_15); -x_104 = l_Lean_addMacroScope(x_15, x_103, x_17); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_103); -lean_ctor_set(x_105, 1, x_36); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_36); -lean_inc(x_9); -x_107 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_107, 0, x_9); -lean_ctor_set(x_107, 1, x_101); -lean_ctor_set(x_107, 2, x_104); -lean_ctor_set(x_107, 3, x_106); +lean_inc(x_7); +x_104 = l_Lean_Syntax_node2(x_7, x_99, x_103, x_28); +x_105 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59; +x_106 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60)); +x_107 = l_Lean_Name_mkStr4(x_4, x_5, x_10, x_106); +lean_inc(x_22); +lean_inc(x_107); +lean_inc(x_19); +x_108 = l_Lean_addMacroScope(x_19, x_107, x_22); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_46); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_46); +lean_inc(x_7); +x_111 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_111, 0, x_7); +lean_ctor_set(x_111, 1, x_105); +lean_ctor_set(x_111, 2, x_108); +lean_ctor_set(x_111, 3, x_110); lean_inc_ref(x_28); -lean_inc(x_9); -x_108 = l_Lean_Syntax_node2(x_9, x_95, x_107, x_28); -lean_inc(x_16); -lean_inc(x_9); -x_109 = l_Lean_Syntax_node2(x_9, x_16, x_100, x_108); -lean_inc_ref(x_70); -lean_inc_ref(x_62); -lean_inc(x_9); -x_110 = l_Lean_Syntax_node3(x_9, x_94, x_62, x_109, x_70); -lean_inc(x_9); -x_111 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_111, 0, x_9); -lean_ctor_set(x_111, 1, x_21); -lean_inc(x_9); -x_112 = l_Lean_Syntax_node2(x_9, x_93, x_110, x_111); -lean_inc(x_112); -lean_inc(x_16); -lean_inc(x_9); -x_113 = l_Lean_Syntax_node2(x_9, x_16, x_92, x_112); -x_114 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63; -x_115 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64)); -x_116 = l_Lean_addMacroScope(x_15, x_115, x_17); -lean_inc(x_9); -x_117 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_117, 0, x_9); -lean_ctor_set(x_117, 1, x_114); -lean_ctor_set(x_117, 2, x_116); -lean_ctor_set(x_117, 3, x_36); -x_118 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65; -x_119 = lean_array_push(x_118, x_27); +lean_inc(x_7); +x_112 = l_Lean_Syntax_node2(x_7, x_99, x_111, x_28); +lean_inc(x_8); +lean_inc(x_7); +x_113 = l_Lean_Syntax_node2(x_7, x_8, x_104, x_112); +lean_inc_ref(x_90); +lean_inc_ref(x_84); +lean_inc(x_7); +x_114 = l_Lean_Syntax_node3(x_7, x_98, x_84, x_113, x_90); +lean_inc(x_7); +x_115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_115, 0, x_7); +lean_ctor_set(x_115, 1, x_21); +lean_inc(x_7); +x_116 = l_Lean_Syntax_node2(x_7, x_97, x_114, x_115); +lean_inc(x_116); +lean_inc(x_8); +lean_inc(x_7); +x_117 = l_Lean_Syntax_node2(x_7, x_8, x_96, x_116); +x_118 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62; +x_119 = ((lean_object*)(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63)); +x_120 = l_Lean_addMacroScope(x_19, x_119, x_22); +lean_inc(x_7); +x_121 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_121, 0, x_7); +lean_ctor_set(x_121, 1, x_118); +lean_ctor_set(x_121, 2, x_120); +lean_ctor_set(x_121, 3, x_46); +x_122 = l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64; +x_123 = lean_array_push(x_122, x_27); lean_inc_ref(x_28); -x_120 = lean_array_push(x_119, x_28); -x_121 = lean_array_push(x_120, x_82); -x_122 = lean_array_push(x_121, x_83); +x_124 = lean_array_push(x_123, x_28); +x_125 = lean_array_push(x_124, x_80); +x_126 = lean_array_push(x_125, x_81); lean_inc_ref(x_28); -x_123 = lean_array_push(x_122, x_28); -lean_inc_ref(x_123); -x_124 = lean_array_push(x_123, x_88); +x_127 = lean_array_push(x_126, x_28); +lean_inc_ref(x_127); +x_128 = lean_array_push(x_127, x_92); lean_inc_ref(x_28); -x_125 = lean_array_push(x_124, x_28); -x_126 = lean_array_push(x_125, x_113); -lean_inc_ref(x_40); -x_127 = lean_array_push(x_126, x_40); -lean_inc_ref(x_117); -x_128 = lean_array_push(x_127, x_117); -lean_inc(x_9); -x_129 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_129, 0, x_9); -lean_ctor_set(x_129, 1, x_80); -lean_ctor_set(x_129, 2, x_128); -lean_inc_ref(x_70); -lean_inc_ref(x_68); +x_129 = lean_array_push(x_128, x_28); +x_130 = lean_array_push(x_129, x_117); +lean_inc_ref(x_50); +x_131 = lean_array_push(x_130, x_50); +lean_inc_ref(x_121); +x_132 = lean_array_push(x_131, x_121); +lean_inc(x_7); +x_133 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_133, 0, x_7); +lean_ctor_set(x_133, 1, x_78); +lean_ctor_set(x_133, 2, x_132); +lean_inc_ref(x_90); +lean_inc_ref(x_88); lean_inc_ref(x_86); -lean_inc_ref(x_62); -lean_inc(x_9); -x_130 = l_Lean_Syntax_node5(x_9, x_84, x_62, x_86, x_68, x_10, x_70); -lean_inc(x_16); -lean_inc(x_9); -x_131 = l_Lean_Syntax_node1(x_9, x_16, x_130); -x_132 = l_Lean_Syntax_mkStrLit(x_6, x_90); -lean_inc(x_9); -x_133 = l_Lean_Syntax_node1(x_9, x_89, x_132); -lean_inc(x_112); -lean_inc(x_16); -lean_inc(x_9); -x_134 = l_Lean_Syntax_node2(x_9, x_16, x_133, x_112); -lean_inc_ref(x_123); -x_135 = lean_array_push(x_123, x_131); +lean_inc_ref(x_84); +lean_inc(x_7); +x_134 = l_Lean_Syntax_node5(x_7, x_82, x_84, x_86, x_88, x_17, x_90); +lean_inc(x_8); +lean_inc(x_7); +x_135 = l_Lean_Syntax_node1(x_7, x_8, x_134); +x_136 = l_Lean_Syntax_mkStrLit(x_11, x_94); +lean_inc(x_7); +x_137 = l_Lean_Syntax_node1(x_7, x_93, x_136); +lean_inc(x_116); +lean_inc(x_8); +lean_inc(x_7); +x_138 = l_Lean_Syntax_node2(x_7, x_8, x_137, x_116); +lean_inc_ref(x_127); +x_139 = lean_array_push(x_127, x_135); lean_inc_ref(x_28); -x_136 = lean_array_push(x_135, x_28); -x_137 = lean_array_push(x_136, x_134); -lean_inc_ref(x_40); -x_138 = lean_array_push(x_137, x_40); -lean_inc_ref(x_117); -x_139 = lean_array_push(x_138, x_117); -lean_inc(x_9); -x_140 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_140, 0, x_9); -lean_ctor_set(x_140, 1, x_80); -lean_ctor_set(x_140, 2, x_139); -lean_inc_ref(x_70); -lean_inc_ref(x_68); +x_140 = lean_array_push(x_139, x_28); +x_141 = lean_array_push(x_140, x_138); +lean_inc_ref(x_50); +x_142 = lean_array_push(x_141, x_50); +lean_inc_ref(x_121); +x_143 = lean_array_push(x_142, x_121); +lean_inc(x_7); +x_144 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_144, 0, x_7); +lean_ctor_set(x_144, 1, x_78); +lean_ctor_set(x_144, 2, x_143); +lean_inc_ref(x_90); +lean_inc_ref(x_88); lean_inc_ref(x_86); -lean_inc_ref(x_62); -lean_inc(x_9); -x_141 = l_Lean_Syntax_node5(x_9, x_84, x_62, x_86, x_68, x_12, x_70); -lean_inc(x_16); -lean_inc(x_9); -x_142 = l_Lean_Syntax_node1(x_9, x_16, x_141); -x_143 = l_Lean_Syntax_mkStrLit(x_19, x_90); -lean_inc(x_9); -x_144 = l_Lean_Syntax_node1(x_9, x_89, x_143); -lean_inc(x_112); -lean_inc(x_16); -lean_inc(x_9); -x_145 = l_Lean_Syntax_node2(x_9, x_16, x_144, x_112); -lean_inc_ref(x_123); -x_146 = lean_array_push(x_123, x_142); +lean_inc_ref(x_84); +lean_inc(x_7); +x_145 = l_Lean_Syntax_node5(x_7, x_82, x_84, x_86, x_88, x_23, x_90); +lean_inc(x_8); +lean_inc(x_7); +x_146 = l_Lean_Syntax_node1(x_7, x_8, x_145); +x_147 = l_Lean_Syntax_mkStrLit(x_13, x_94); +lean_inc(x_7); +x_148 = l_Lean_Syntax_node1(x_7, x_93, x_147); +lean_inc(x_116); +lean_inc(x_8); +lean_inc(x_7); +x_149 = l_Lean_Syntax_node2(x_7, x_8, x_148, x_116); +lean_inc_ref(x_127); +x_150 = lean_array_push(x_127, x_146); lean_inc_ref(x_28); -x_147 = lean_array_push(x_146, x_28); -x_148 = lean_array_push(x_147, x_145); -lean_inc_ref(x_40); -x_149 = lean_array_push(x_148, x_40); -lean_inc_ref(x_117); -x_150 = lean_array_push(x_149, x_117); -lean_inc(x_9); -x_151 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_151, 0, x_9); -lean_ctor_set(x_151, 1, x_80); -lean_ctor_set(x_151, 2, x_150); -lean_inc(x_9); -x_152 = l_Lean_Syntax_node5(x_9, x_84, x_62, x_86, x_68, x_11, x_70); -lean_inc(x_16); -lean_inc(x_9); -x_153 = l_Lean_Syntax_node1(x_9, x_16, x_152); -x_154 = l_Lean_Syntax_mkStrLit(x_8, x_90); -lean_inc(x_9); -x_155 = l_Lean_Syntax_node1(x_9, x_89, x_154); -lean_inc(x_16); -lean_inc(x_9); -x_156 = l_Lean_Syntax_node2(x_9, x_16, x_155, x_112); -x_157 = lean_array_push(x_123, x_153); -x_158 = lean_array_push(x_157, x_28); -x_159 = lean_array_push(x_158, x_156); -x_160 = lean_array_push(x_159, x_40); -x_161 = lean_array_push(x_160, x_117); -lean_inc(x_9); -x_162 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_162, 0, x_9); -lean_ctor_set(x_162, 1, x_80); -lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Syntax_node5(x_9, x_16, x_78, x_129, x_140, x_151, x_162); -x_164 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_164, 0, x_163); -lean_ctor_set(x_164, 1, x_3); -return x_164; +x_151 = lean_array_push(x_150, x_28); +x_152 = lean_array_push(x_151, x_149); +lean_inc_ref(x_50); +x_153 = lean_array_push(x_152, x_50); +lean_inc_ref(x_121); +x_154 = lean_array_push(x_153, x_121); +lean_inc(x_7); +x_155 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_155, 0, x_7); +lean_ctor_set(x_155, 1, x_78); +lean_ctor_set(x_155, 2, x_154); +lean_inc(x_7); +x_156 = l_Lean_Syntax_node5(x_7, x_82, x_84, x_86, x_88, x_20, x_90); +lean_inc(x_8); +lean_inc(x_7); +x_157 = l_Lean_Syntax_node1(x_7, x_8, x_156); +x_158 = l_Lean_Syntax_mkStrLit(x_9, x_94); +lean_inc(x_7); +x_159 = l_Lean_Syntax_node1(x_7, x_93, x_158); +lean_inc(x_8); +lean_inc(x_7); +x_160 = l_Lean_Syntax_node2(x_7, x_8, x_159, x_116); +x_161 = lean_array_push(x_127, x_157); +x_162 = lean_array_push(x_161, x_28); +x_163 = lean_array_push(x_162, x_160); +x_164 = lean_array_push(x_163, x_50); +x_165 = lean_array_push(x_164, x_121); +lean_inc(x_7); +x_166 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_166, 0, x_7); +lean_ctor_set(x_166, 1, x_78); +lean_ctor_set(x_166, 2, x_165); +x_167 = l_Lean_Syntax_node5(x_7, x_8, x_76, x_133, x_144, x_155, x_166); +x_168 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_168, 0, x_167); +lean_ctor_set(x_168, 1, x_3); +return x_168; } } } -lean_object* initialize_Lean_Meta_Tactic_Grind_Types(uint8_t builtin); -lean_object* initialize_Init_Data_ToString_Name(uint8_t builtin); +lean_object* initialize_Lean_Meta_Tactic_Grind_Attr(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Grind_RegisterCommand(uint8_t builtin) { lean_object * res; if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); _G_initialized = true; -res = initialize_Lean_Meta_Tactic_Grind_Types(builtin); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_Data_ToString_Name(builtin); +res = initialize_Lean_Meta_Tactic_Grind_Attr(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Command_registerGrindAttr___closed__7 = _init_l_Lean_Parser_Command_registerGrindAttr___closed__7(); @@ -944,26 +937,24 @@ l_Lean_Parser_Command_registerGrindAttr___closed__23 = _init_l_Lean_Parser_Comma lean_mark_persistent(l_Lean_Parser_Command_registerGrindAttr___closed__23); l_Lean_Parser_Command_registerGrindAttr = _init_l_Lean_Parser_Command_registerGrindAttr(); lean_mark_persistent(l_Lean_Parser_Command_registerGrindAttr); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__3); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__10); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__27); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__36); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__57); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__60); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__63); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__65); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__7); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__14); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__31); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__56); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__59); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__62); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__64); +l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76(); +lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__76); l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77(); lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__77); -l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78 = _init_l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78(); -lean_mark_persistent(l_Lean_Meta_Grind___aux__Lean__Meta__Tactic__Grind__RegisterCommand______macroRules__Lean__Meta__Grind____root____Lean__Parser__Command__registerGrindAttr__1___closed__78); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/RegisterCommand.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/RegisterCommand.c index fdec35287a..4101d867f5 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/RegisterCommand.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/RegisterCommand.c @@ -62,319 +62,333 @@ static const lean_ctor_object l_Lean_Parser_Command_registerSimpAttr___closed__2 static const lean_object* l_Lean_Parser_Command_registerSimpAttr___closed__22 = (const lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__22_value; static lean_object* l_Lean_Parser_Command_registerSimpAttr___closed__23; LEAN_EXPORT lean_object* l_Lean_Parser_Command_registerSimpAttr; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "initializeKeyword"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "public"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0_value; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(113, 140, 114, 135, 71, 133, 96, 5)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0_value),LEAN_SCALAR_PTR_LITERAL(99, 134, 241, 204, 211, 206, 124, 144)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "meta"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2_value; -lean_object* l_String_toRawSubstring_x27(lean_object*); -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2_value),LEAN_SCALAR_PTR_LITERAL(241, 12, 90, 240, 78, 252, 149, 89)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2_value),LEAN_SCALAR_PTR_LITERAL(124, 247, 59, 43, 44, 177, 111, 66)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 18, .m_capacity = 18, .m_length = 17, .m_data = "initializeKeyword"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4_value),LEAN_SCALAR_PTR_LITERAL(113, 140, 114, 135, 71, 133, 96, 5)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "typeSpec"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "ext"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6_value),LEAN_SCALAR_PTR_LITERAL(77, 126, 241, 117, 174, 189, 108, 62)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ":"}; +lean_object* l_String_toRawSubstring_x27(lean_object*); +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6_value),LEAN_SCALAR_PTR_LITERAL(241, 12, 90, 240, 78, 252, 149, 89)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "SimpExtension"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Term"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(97, 27, 52, 253, 143, 150, 102, 25)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "typeSpec"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10_value),LEAN_SCALAR_PTR_LITERAL(77, 126, 241, 117, 174, 189, 108, 62)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11_value; -lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(180, 63, 186, 197, 159, 200, 30, 167)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ":"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "SimpExtension"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12_value)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value),LEAN_SCALAR_PTR_LITERAL(97, 27, 52, 253, 143, 150, 102, 25)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15_value)}}; +lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13_value),LEAN_SCALAR_PTR_LITERAL(180, 63, 186, 197, 159, 200, 30, 167)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 1, .m_data = "←"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "doSeqIndent"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16_value)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18_value),LEAN_SCALAR_PTR_LITERAL(93, 115, 138, 230, 225, 195, 43, 46)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__18_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "doSeqItem"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17_value),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19_value)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20_value),LEAN_SCALAR_PTR_LITERAL(10, 94, 50, 120, 46, 251, 13, 13)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 1, .m_data = "←"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "doExpr"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "doSeqIndent"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22_value),LEAN_SCALAR_PTR_LITERAL(130, 168, 60, 255, 153, 218, 88, 77)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__22_value),LEAN_SCALAR_PTR_LITERAL(93, 115, 138, 230, 225, 195, 43, 46)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "app"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "doSeqItem"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24_value),LEAN_SCALAR_PTR_LITERAL(69, 118, 10, 41, 220, 156, 243, 179)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__24_value),LEAN_SCALAR_PTR_LITERAL(10, 94, 50, 120, 46, 251, 13, 13)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__6_value),LEAN_SCALAR_PTR_LITERAL(71, 112, 199, 159, 165, 140, 183, 115)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "doExpr"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26_value),LEAN_SCALAR_PTR_LITERAL(130, 168, 60, 255, 153, 218, 88, 77)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__6_value),LEAN_SCALAR_PTR_LITERAL(122, 223, 126, 22, 173, 44, 201, 149)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "app"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__28_value),LEAN_SCALAR_PTR_LITERAL(69, 118, 10, 41, 220, 156, 243, 179)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "syntax"}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__6_value),LEAN_SCALAR_PTR_LITERAL(71, 112, 199, 159, 165, 140, 183, 115)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31_value),LEAN_SCALAR_PTR_LITERAL(39, 60, 146, 133, 142, 21, 8, 39)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__6_value),LEAN_SCALAR_PTR_LITERAL(122, 223, 126, 22, 173, 44, 201, 149)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "attrKind"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33_value),LEAN_SCALAR_PTR_LITERAL(32, 164, 20, 104, 12, 221, 204, 110)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__33_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "namedName"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "syntax"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35_value),LEAN_SCALAR_PTR_LITERAL(73, 173, 122, 11, 5, 195, 101, 245)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35_value),LEAN_SCALAR_PTR_LITERAL(39, 60, 146, 133, 142, 21, 8, 39)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "("}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "attrKind"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "name"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9_value),LEAN_SCALAR_PTR_LITERAL(75, 170, 162, 138, 136, 204, 251, 229)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37_value),LEAN_SCALAR_PTR_LITERAL(32, 164, 20, 104, 12, 221, 204, 110)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = ":="}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 10, .m_capacity = 10, .m_length = 9, .m_data = "namedName"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ")"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39_value),LEAN_SCALAR_PTR_LITERAL(73, 173, 122, 11, 5, 195, 101, 245)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Syntax"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "("}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "atom"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "name"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42_value),LEAN_SCALAR_PTR_LITERAL(144, 22, 146, 169, 39, 242, 124, 88)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 3, .m_capacity = 3, .m_length = 2, .m_data = ":="}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "stx_\?"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = ")"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44_value),LEAN_SCALAR_PTR_LITERAL(19, 110, 207, 78, 164, 149, 1, 207)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Syntax"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "paren"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "atom"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46_value),LEAN_SCALAR_PTR_LITERAL(171, 185, 174, 62, 133, 84, 210, 196)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__46_value),LEAN_SCALAR_PTR_LITERAL(144, 22, 146, 169, 39, 242, 124, 88)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "stx_<|>_"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "stx_\?"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48_value),LEAN_SCALAR_PTR_LITERAL(198, 97, 122, 56, 37, 186, 212, 102)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__48_value),LEAN_SCALAR_PTR_LITERAL(19, 110, 207, 78, 164, 149, 1, 207)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "cat"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "paren"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50_value; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50_value),LEAN_SCALAR_PTR_LITERAL(95, 91, 11, 245, 227, 176, 7, 196)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__50_value),LEAN_SCALAR_PTR_LITERAL(171, 185, 174, 62, 133, 84, 210, 196)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 22, .m_capacity = 22, .m_length = 21, .m_data = "Parser.Tactic.simpPre"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "stx_<|>_"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Tactic"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52_value),LEAN_SCALAR_PTR_LITERAL(198, 97, 122, 56, 37, 186, 212, 102)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "cat"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "simpPre"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(95, 91, 11, 245, 227, 176, 7, 196)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(211, 17, 253, 157, 167, 104, 244, 4)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value),LEAN_SCALAR_PTR_LITERAL(84, 84, 229, 98, 67, 120, 70, 231)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 22, .m_capacity = 22, .m_length = 21, .m_data = "Parser.Tactic.simpPre"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55_value),LEAN_SCALAR_PTR_LITERAL(197, 59, 48, 6, 36, 81, 149, 152)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Tactic"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "simpPre"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "<|>"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value),LEAN_SCALAR_PTR_LITERAL(211, 17, 253, 157, 167, 104, 244, 4)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59_value),LEAN_SCALAR_PTR_LITERAL(84, 84, 229, 98, 67, 120, 70, 231)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 23, .m_capacity = 23, .m_length = 22, .m_data = "Parser.Tactic.simpPost"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59_value),LEAN_SCALAR_PTR_LITERAL(197, 59, 48, 6, 36, 81, 149, 152)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "simpPost"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(211, 17, 253, 157, 167, 104, 244, 4)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63_value),LEAN_SCALAR_PTR_LITERAL(151, 85, 122, 79, 145, 83, 124, 126)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "<|>"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__54_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63_value),LEAN_SCALAR_PTR_LITERAL(38, 218, 35, 149, 208, 200, 230, 161)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 23, .m_capacity = 23, .m_length = 22, .m_data = "Parser.Tactic.simpPost"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "simpPost"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "\?"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value),LEAN_SCALAR_PTR_LITERAL(211, 17, 253, 157, 167, 104, 244, 4)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67_value),LEAN_SCALAR_PTR_LITERAL(151, 85, 122, 79, 145, 83, 124, 126)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "unary"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__58_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67_value),LEAN_SCALAR_PTR_LITERAL(38, 218, 35, 149, 208, 200, 230, 161)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value),LEAN_SCALAR_PTR_LITERAL(48, 77, 42, 108, 13, 102, 39, 65)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__69_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "patternIgnore"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71_value),LEAN_SCALAR_PTR_LITERAL(195, 83, 213, 191, 208, 4, 123, 240)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = "\?"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "unary"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "str"}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_1),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45_value),LEAN_SCALAR_PTR_LITERAL(248, 112, 238, 38, 106, 122, 129, 24)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73_value),LEAN_SCALAR_PTR_LITERAL(48, 77, 42, 108, 13, 102, 39, 65)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74_value),LEAN_SCALAR_PTR_LITERAL(255, 188, 142, 1, 190, 33, 34, 128)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "patternIgnore"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 4, .m_data = "\"← \""}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "\"<- \""}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75_value),LEAN_SCALAR_PTR_LITERAL(195, 83, 213, 191, 208, 4, 123, 240)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "prio"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "str"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78_value),LEAN_SCALAR_PTR_LITERAL(122, 247, 65, 238, 243, 154, 137, 247)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78_value),LEAN_SCALAR_PTR_LITERAL(255, 188, 142, 1, 190, 33, 34, 128)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 4, .m_data = "\"← \""}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "attr"}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "\"<- \""}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81_value),LEAN_SCALAR_PTR_LITERAL(69, 57, 207, 35, 177, 108, 73, 87)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83_value; -lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value_aux_2),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__12_value),LEAN_SCALAR_PTR_LITERAL(44, 76, 179, 33, 27, 4, 201, 125)}}; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "prio"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82_value; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82_value),LEAN_SCALAR_PTR_LITERAL(122, 247, 65, 238, 243, 154, 137, 247)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "attr"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "/--"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 28, .m_capacity = 28, .m_length = 27, .m_data = "Simplification procedure -/"}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85_value),LEAN_SCALAR_PTR_LITERAL(69, 57, 207, 35, 177, 108, 73, 87)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "extProc"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88_value),LEAN_SCALAR_PTR_LITERAL(153, 229, 121, 159, 4, 151, 74, 120)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SimprocExtension"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value),LEAN_SCALAR_PTR_LITERAL(48, 218, 30, 199, 10, 134, 135, 45)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(54, 38, 229, 237, 143, 62, 212, 6)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value),LEAN_SCALAR_PTR_LITERAL(65, 33, 38, 245, 236, 63, 101, 240)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97_value)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "registerSimprocAttr"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value),LEAN_SCALAR_PTR_LITERAL(153, 150, 186, 46, 228, 1, 156, 51)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(54, 38, 229, 237, 143, 62, 212, 6)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value),LEAN_SCALAR_PTR_LITERAL(216, 40, 141, 126, 136, 240, 55, 143)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "none"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value; -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value),LEAN_SCALAR_PTR_LITERAL(73, 239, 30, 105, 8, 60, 178, 241)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Option"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108_value; -lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108_value),LEAN_SCALAR_PTR_LITERAL(95, 234, 177, 188, 3, 226, 91, 252)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value),LEAN_SCALAR_PTR_LITERAL(149, 114, 34, 228, 75, 195, 143, 131)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "simproc set for "}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "null"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value),LEAN_SCALAR_PTR_LITERAL(24, 58, 49, 223, 146, 207, 197, 136)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "initialize"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115_value),LEAN_SCALAR_PTR_LITERAL(55, 206, 156, 211, 241, 221, 187, 166)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "declModifiers"}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value),LEAN_SCALAR_PTR_LITERAL(0, 165, 146, 53, 36, 89, 7, 202)}}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value; -lean_object* l_Array_mkArray0(lean_object*); -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Attr"}; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value_aux_2),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__12_value),LEAN_SCALAR_PTR_LITERAL(44, 76, 179, 33, 27, 4, 201, 125)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "/--"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 28, .m_capacity = 28, .m_length = 27, .m_data = "Simplification procedure -/"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "extProc"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92_value; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92_value),LEAN_SCALAR_PTR_LITERAL(153, 229, 121, 159, 4, 151, 74, 120)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "SimprocExtension"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value),LEAN_SCALAR_PTR_LITERAL(48, 218, 30, 199, 10, 134, 135, 45)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(54, 38, 229, 237, 143, 62, 212, 6)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95_value),LEAN_SCALAR_PTR_LITERAL(65, 33, 38, 245, 236, 63, 101, 240)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98_value)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99_value),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101_value)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 20, .m_capacity = 20, .m_length = 19, .m_data = "registerSimprocAttr"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value),LEAN_SCALAR_PTR_LITERAL(153, 150, 186, 46, 228, 1, 156, 51)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__1_value),LEAN_SCALAR_PTR_LITERAL(194, 50, 106, 158, 41, 60, 103, 214)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__2_value),LEAN_SCALAR_PTR_LITERAL(54, 38, 229, 237, 143, 62, 212, 6)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103_value),LEAN_SCALAR_PTR_LITERAL(216, 40, 141, 126, 136, 240, 55, 143)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "none"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value; +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value),LEAN_SCALAR_PTR_LITERAL(73, 239, 30, 105, 8, 60, 178, 241)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Option"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112_value; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112_value),LEAN_SCALAR_PTR_LITERAL(95, 234, 177, 188, 3, 226, 91, 252)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109_value),LEAN_SCALAR_PTR_LITERAL(149, 114, 34, 228, 75, 195, 143, 131)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__113_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 17, .m_capacity = 17, .m_length = 16, .m_data = "simproc set for "}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "null"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__117_value),LEAN_SCALAR_PTR_LITERAL(24, 58, 49, 223, 146, 207, 197, 136)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "initialize"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119_value),LEAN_SCALAR_PTR_LITERAL(55, 206, 156, 211, 241, 221, 187, 166)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "declModifiers"}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121_value; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; -static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121_value),LEAN_SCALAR_PTR_LITERAL(10, 9, 185, 250, 127, 107, 245, 225)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_1 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_0),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(103, 136, 125, 166, 167, 98, 71, 111)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_1),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__5_value),LEAN_SCALAR_PTR_LITERAL(214, 208, 105, 11, 221, 56, 173, 240)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value_aux_2),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__121_value),LEAN_SCALAR_PTR_LITERAL(0, 165, 146, 53, 36, 89, 7, 202)}}; static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122_value; -static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "simp set for "}; -static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123_value; +lean_object* l_Array_mkArray0(lean_object*); +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123; +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__125_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "Attr"}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__125 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__125_value; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Command_registerSimpAttr___closed__4_value),LEAN_SCALAR_PTR_LITERAL(46, 201, 23, 171, 41, 77, 220, 95)}}; +static const lean_ctor_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126_value_aux_0),((lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__125_value),LEAN_SCALAR_PTR_LITERAL(10, 9, 185, 250, 127, 107, 245, 225)}}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126_value; +static const lean_string_object l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__127_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "simp set for "}; +static const lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__127 = (const lean_object*)&l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__127_value; lean_object* l_Array_append___redArg(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -434,25 +448,25 @@ x_1 = l_Lean_Parser_Command_registerSimpAttr___closed__23; return x_1; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__6)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__9)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__13)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -461,52 +475,52 @@ x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__52)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__61)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__65)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__78)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88() { _start: { lean_object* x_1; lean_object* x_2; @@ -515,43 +529,43 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__95)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__99)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__103)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105)); +x_1 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__109)); x_2 = l_String_toRawSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123() { _start: { lean_object* x_1; @@ -559,7 +573,7 @@ x_1 = l_Array_mkArray0(lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120() { +static lean_object* _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124() { _start: { lean_object* x_1; lean_object* x_2; @@ -571,625 +585,647 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -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; 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; lean_object* x_21; lean_object* x_205; uint8_t x_206; -x_205 = l_Lean_Parser_Command_registerSimpAttr___closed__7; +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; 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; lean_object* x_21; lean_object* x_215; uint8_t x_216; +x_215 = l_Lean_Parser_Command_registerSimpAttr___closed__7; lean_inc(x_1); -x_206 = l_Lean_Syntax_isOfKind(x_1, x_205); -if (x_206 == 0) +x_216 = l_Lean_Syntax_isOfKind(x_1, x_215); +if (x_216 == 0) { -lean_object* x_207; lean_object* x_208; +lean_object* x_217; lean_object* x_218; lean_dec_ref(x_2); lean_dec(x_1); -x_207 = lean_box(1); -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_207); -lean_ctor_set(x_208, 1, x_3); -return x_208; +x_217 = lean_box(1); +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_217); +lean_ctor_set(x_218, 1, x_3); +return x_218; } else { -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; uint8_t x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_245; lean_object* x_257; -x_209 = lean_unsigned_to_nat(0u); -x_210 = l_Lean_Syntax_getArg(x_1, x_209); -x_211 = lean_unsigned_to_nat(2u); -x_212 = l_Lean_Syntax_getArg(x_1, x_211); +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; lean_object* x_229; lean_object* x_255; lean_object* x_267; +x_219 = lean_unsigned_to_nat(0u); +x_220 = l_Lean_Syntax_getArg(x_1, x_219); +x_221 = lean_unsigned_to_nat(2u); +x_222 = l_Lean_Syntax_getArg(x_1, x_221); lean_dec(x_1); -x_257 = l_Lean_Syntax_getOptional_x3f(x_210); -lean_dec(x_210); -if (lean_obj_tag(x_257) == 0) +x_267 = l_Lean_Syntax_getOptional_x3f(x_220); +lean_dec(x_220); +if (lean_obj_tag(x_267) == 0) { -lean_object* x_258; -x_258 = lean_box(0); -x_245 = x_258; -goto block_256; +lean_object* x_268; +x_268 = lean_box(0); +x_255 = x_268; +goto block_266; } else { -uint8_t x_259; -x_259 = !lean_is_exclusive(x_257); -if (x_259 == 0) +uint8_t x_269; +x_269 = !lean_is_exclusive(x_267); +if (x_269 == 0) { -x_245 = x_257; -goto block_256; +x_255 = x_267; +goto block_266; } else { -lean_object* x_260; lean_object* x_261; -x_260 = lean_ctor_get(x_257, 0); -lean_inc(x_260); -lean_dec(x_257); -x_261 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_261, 0, x_260); -x_245 = x_261; -goto block_256; +lean_object* x_270; lean_object* x_271; +x_270 = lean_ctor_get(x_267, 0); +lean_inc(x_270); +lean_dec(x_267); +x_271 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_271, 0, x_270); +x_255 = x_271; +goto block_266; } } -block_244: +block_254: { -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_220 = lean_ctor_get(x_2, 1); -lean_inc(x_220); -x_221 = lean_ctor_get(x_2, 2); -lean_inc(x_221); -x_222 = lean_ctor_get(x_2, 5); -lean_inc(x_222); +lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_230 = lean_ctor_get(x_2, 1); +lean_inc(x_230); +x_231 = lean_ctor_get(x_2, 2); +lean_inc(x_231); +x_232 = lean_ctor_get(x_2, 5); +lean_inc(x_232); lean_dec_ref(x_2); -x_223 = l_String_removeLeadingSpaces(x_219); -x_224 = lean_box(2); -x_225 = l_Lean_Syntax_mkStrLit(x_223, x_224); -lean_inc(x_217); -x_226 = l_Lean_Meta_Simp_simpAttrNameToSimprocAttrName(x_217); -x_227 = l_Lean_mkIdentFrom(x_212, x_226, x_214); -lean_dec(x_212); -x_228 = l_Lean_TSyntax_getId(x_227); -lean_inc(x_228); -x_229 = l_Lean_Name_toString(x_228, x_206); -lean_inc(x_228); -x_230 = l_Lean_Name_append(x_213, x_228); -x_231 = l_Lean_mkIdentFrom(x_227, x_230, x_214); -lean_dec(x_227); -x_232 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__112)); -x_233 = lean_string_append(x_232, x_229); -x_234 = l_Lean_Syntax_mkStrLit(x_233, x_224); -x_235 = l_Lean_SourceInfo_fromRef(x_222, x_214); +x_233 = l_String_removeLeadingSpaces(x_229); +x_234 = lean_box(2); +x_235 = l_Lean_Syntax_mkStrLit(x_233, x_234); +lean_inc(x_226); +x_236 = l_Lean_Meta_Simp_simpAttrNameToSimprocAttrName(x_226); +x_237 = l_Lean_mkIdentFrom(x_222, x_236, x_228); lean_dec(x_222); -x_236 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__114)); -x_237 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115)); -x_238 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116)); -x_239 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118)); -x_240 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119; -if (lean_obj_tag(x_215) == 1) +x_238 = l_Lean_TSyntax_getId(x_237); +lean_inc(x_238); +x_239 = l_Lean_Name_toString(x_238, x_216); +lean_inc(x_238); +x_240 = l_Lean_Name_append(x_225, x_238); +x_241 = l_Lean_mkIdentFrom(x_237, x_240, x_228); +lean_dec(x_237); +x_242 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__116)); +x_243 = lean_string_append(x_242, x_239); +x_244 = l_Lean_Syntax_mkStrLit(x_243, x_234); +x_245 = l_Lean_SourceInfo_fromRef(x_232, x_228); +lean_dec(x_232); +x_246 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__118)); +x_247 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119)); +x_248 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120)); +x_249 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122)); +x_250 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123; +if (lean_obj_tag(x_227) == 1) { -lean_object* x_241; lean_object* x_242; -x_241 = lean_ctor_get(x_215, 0); -lean_inc(x_241); -lean_dec_ref(x_215); -x_242 = l_Array_mkArray1___redArg(x_241); -x_4 = x_234; -x_5 = x_239; -x_6 = x_228; -x_7 = x_240; -x_8 = x_237; -x_9 = x_238; -x_10 = x_235; -x_11 = x_225; -x_12 = x_216; -x_13 = x_231; -x_14 = x_217; -x_15 = x_229; -x_16 = x_236; -x_17 = x_220; -x_18 = x_218; -x_19 = x_224; -x_20 = x_221; -x_21 = x_242; -goto block_204; +lean_object* x_251; lean_object* x_252; +x_251 = lean_ctor_get(x_227, 0); +lean_inc(x_251); +lean_dec_ref(x_227); +x_252 = l_Array_mkArray1___redArg(x_251); +x_4 = x_249; +x_5 = x_223; +x_6 = x_224; +x_7 = x_244; +x_8 = x_245; +x_9 = x_226; +x_10 = x_231; +x_11 = x_230; +x_12 = x_235; +x_13 = x_250; +x_14 = x_238; +x_15 = x_246; +x_16 = x_234; +x_17 = x_239; +x_18 = x_241; +x_19 = x_247; +x_20 = x_248; +x_21 = x_252; +goto block_214; } else { -lean_object* x_243; -lean_dec(x_215); -x_243 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120; -x_4 = x_234; -x_5 = x_239; -x_6 = x_228; -x_7 = x_240; -x_8 = x_237; -x_9 = x_238; -x_10 = x_235; -x_11 = x_225; -x_12 = x_216; -x_13 = x_231; -x_14 = x_217; -x_15 = x_229; -x_16 = x_236; -x_17 = x_220; -x_18 = x_218; -x_19 = x_224; -x_20 = x_221; -x_21 = x_243; -goto block_204; +lean_object* x_253; +lean_dec(x_227); +x_253 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124; +x_4 = x_249; +x_5 = x_223; +x_6 = x_224; +x_7 = x_244; +x_8 = x_245; +x_9 = x_226; +x_10 = x_231; +x_11 = x_230; +x_12 = x_235; +x_13 = x_250; +x_14 = x_238; +x_15 = x_246; +x_16 = x_234; +x_17 = x_239; +x_18 = x_241; +x_19 = x_247; +x_20 = x_248; +x_21 = x_253; +goto block_214; } } -block_256: +block_266: { -lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; uint8_t x_250; lean_object* x_251; -x_246 = l_Lean_TSyntax_getId(x_212); -lean_inc(x_246); -x_247 = l_Lean_Name_toString(x_246, x_206); -x_248 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__122)); -lean_inc(x_246); -x_249 = l_Lean_Name_append(x_248, x_246); -x_250 = 0; -x_251 = l_Lean_mkIdentFrom(x_212, x_249, x_250); -if (lean_obj_tag(x_245) == 0) +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint8_t x_260; lean_object* x_261; +x_256 = l_Lean_TSyntax_getId(x_222); +lean_inc(x_256); +x_257 = l_Lean_Name_toString(x_256, x_216); +x_258 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__126)); +lean_inc(x_256); +x_259 = l_Lean_Name_append(x_258, x_256); +x_260 = 0; +x_261 = l_Lean_mkIdentFrom(x_222, x_259, x_260); +if (lean_obj_tag(x_255) == 0) { -lean_object* x_252; lean_object* x_253; -x_252 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123)); -x_253 = lean_string_append(x_252, x_247); -x_213 = x_248; -x_214 = x_250; -x_215 = x_245; -x_216 = x_247; -x_217 = x_246; -x_218 = x_251; -x_219 = x_253; -goto block_244; +lean_object* x_262; lean_object* x_263; +x_262 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__127)); +x_263 = lean_string_append(x_262, x_257); +x_223 = x_257; +x_224 = x_261; +x_225 = x_258; +x_226 = x_256; +x_227 = x_255; +x_228 = x_260; +x_229 = x_263; +goto block_254; } else { -lean_object* x_254; lean_object* x_255; -x_254 = lean_ctor_get(x_245, 0); -x_255 = l_Lean_TSyntax_getDocString(x_254); -x_213 = x_248; -x_214 = x_250; -x_215 = x_245; -x_216 = x_247; -x_217 = x_246; -x_218 = x_251; -x_219 = x_255; -goto block_244; +lean_object* x_264; lean_object* x_265; +x_264 = lean_ctor_get(x_255, 0); +x_265 = l_Lean_TSyntax_getDocString(x_264); +x_223 = x_257; +x_224 = x_261; +x_225 = x_258; +x_226 = x_256; +x_227 = x_255; +x_228 = x_260; +x_229 = x_265; +goto block_254; } } } -block_204: +block_214: { -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; 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; 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; 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; 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; 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; lean_object* 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; -lean_inc_ref(x_7); -x_22 = l_Array_append___redArg(x_7, x_21); +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; 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; 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; 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; 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; 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; lean_object* 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; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; +lean_inc_ref(x_13); +x_22 = l_Array_append___redArg(x_13, x_21); lean_dec_ref(x_21); -lean_inc(x_16); -lean_inc(x_10); +lean_inc(x_15); +lean_inc(x_8); x_23 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_23, 0, x_10); -lean_ctor_set(x_23, 1, x_16); +lean_ctor_set(x_23, 0, x_8); +lean_ctor_set(x_23, 1, x_15); lean_ctor_set(x_23, 2, x_22); -lean_inc(x_16); -lean_inc(x_10); +lean_inc(x_15); +lean_inc(x_8); x_24 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_24, 0, x_10); -lean_ctor_set(x_24, 1, x_16); -lean_ctor_set(x_24, 2, x_7); -lean_inc_ref_n(x_24, 6); -lean_inc_ref(x_23); -lean_inc(x_5); -lean_inc(x_10); -x_25 = l_Lean_Syntax_node7(x_10, x_5, x_23, x_24, x_24, x_24, x_24, x_24, x_24); +lean_ctor_set(x_24, 0, x_8); +lean_ctor_set(x_24, 1, x_15); +lean_ctor_set(x_24, 2, x_13); +x_25 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__0)); x_26 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__1)); -lean_inc(x_10); +lean_inc(x_8); x_27 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_27, 0, x_10); -lean_ctor_set(x_27, 1, x_8); +lean_ctor_set(x_27, 0, x_8); +lean_ctor_set(x_27, 1, x_25); +lean_inc(x_8); +x_28 = l_Lean_Syntax_node1(x_8, x_26, x_27); +lean_inc(x_15); +lean_inc(x_8); +x_29 = l_Lean_Syntax_node1(x_8, x_15, x_28); +x_30 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__2)); +x_31 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3)); +lean_inc(x_8); +x_32 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_32, 0, x_8); +lean_ctor_set(x_32, 1, x_30); +lean_inc(x_8); +x_33 = l_Lean_Syntax_node1(x_8, x_31, x_32); +lean_inc(x_15); +lean_inc(x_8); +x_34 = l_Lean_Syntax_node1(x_8, x_15, x_33); +lean_inc(x_34); +lean_inc(x_29); +lean_inc_ref_n(x_24, 4); +lean_inc_ref(x_23); +lean_inc(x_4); +lean_inc(x_8); +x_35 = l_Lean_Syntax_node7(x_8, x_4, x_23, x_24, x_29, x_24, x_34, x_24, x_24); +x_36 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__5)); +lean_inc(x_8); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_8); +lean_ctor_set(x_37, 1, x_19); +lean_inc(x_8); +x_38 = l_Lean_Syntax_node1(x_8, x_36, x_37); +x_39 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7; +x_40 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8)); lean_inc(x_10); -x_28 = l_Lean_Syntax_node1(x_10, x_26, x_27); -x_29 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3; -x_30 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__4)); -lean_inc(x_20); -lean_inc(x_17); -x_31 = l_Lean_addMacroScope(x_17, x_30, x_20); -x_32 = lean_box(0); +lean_inc(x_11); +x_41 = l_Lean_addMacroScope(x_11, x_40, x_10); +x_42 = lean_box(0); +lean_inc(x_8); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_8); +lean_ctor_set(x_43, 1, x_39); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_42); +x_44 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11)); +x_45 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__12)); +lean_inc(x_8); +x_46 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_46, 0, x_8); +lean_ctor_set(x_46, 1, x_45); +x_47 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14; +x_48 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__15)); lean_inc(x_10); -x_33 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_33, 0, x_10); -lean_ctor_set(x_33, 1, x_29); -lean_ctor_set(x_33, 2, x_31); -lean_ctor_set(x_33, 3, x_32); -x_34 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7)); -x_35 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__8)); +lean_inc(x_11); +x_49 = l_Lean_addMacroScope(x_11, x_48, x_10); +x_50 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__20)); +lean_inc(x_8); +x_51 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_51, 0, x_8); +lean_ctor_set(x_51, 1, x_47); +lean_ctor_set(x_51, 2, x_49); +lean_ctor_set(x_51, 3, x_50); +lean_inc_ref(x_46); +lean_inc(x_8); +x_52 = l_Lean_Syntax_node2(x_8, x_44, x_46, x_51); +x_53 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21)); +lean_inc(x_8); +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_8); +lean_ctor_set(x_54, 1, x_53); +lean_inc_ref(x_54); +lean_inc(x_15); +lean_inc(x_8); +x_55 = l_Lean_Syntax_node3(x_8, x_15, x_43, x_52, x_54); +x_56 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23)); +x_57 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25)); +x_58 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27)); +x_59 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__29)); +x_60 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30; +x_61 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31)); lean_inc(x_10); -x_36 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_36, 0, x_10); -lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10; -x_38 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__11)); -lean_inc(x_20); -lean_inc(x_17); -x_39 = l_Lean_addMacroScope(x_17, x_38, x_20); -x_40 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__16)); -lean_inc(x_10); -x_41 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_41, 0, x_10); -lean_ctor_set(x_41, 1, x_37); -lean_ctor_set(x_41, 2, x_39); -lean_ctor_set(x_41, 3, x_40); -lean_inc_ref(x_36); -lean_inc(x_10); -x_42 = l_Lean_Syntax_node2(x_10, x_34, x_36, x_41); -x_43 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__17)); -lean_inc(x_10); -x_44 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_44, 0, x_10); -lean_ctor_set(x_44, 1, x_43); -lean_inc_ref(x_44); -lean_inc(x_16); -lean_inc(x_10); -x_45 = l_Lean_Syntax_node3(x_10, x_16, x_33, x_42, x_44); -x_46 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__19)); -x_47 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__21)); -x_48 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__23)); -x_49 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__25)); -x_50 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26; -x_51 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__27)); -lean_inc(x_20); -lean_inc(x_17); -x_52 = l_Lean_addMacroScope(x_17, x_51, x_20); -x_53 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30)); -lean_inc(x_10); -x_54 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_54, 0, x_10); -lean_ctor_set(x_54, 1, x_50); -lean_ctor_set(x_54, 2, x_52); -lean_ctor_set(x_54, 3, x_53); -x_55 = l_Lean_instQuoteNameMkStr1___private__1(x_14); -lean_inc(x_55); -lean_inc(x_16); -lean_inc(x_10); -x_56 = l_Lean_Syntax_node3(x_10, x_16, x_55, x_11, x_55); -lean_inc(x_10); -x_57 = l_Lean_Syntax_node2(x_10, x_49, x_54, x_56); -lean_inc(x_10); -x_58 = l_Lean_Syntax_node1(x_10, x_48, x_57); +lean_inc(x_11); +x_62 = l_Lean_addMacroScope(x_11, x_61, x_10); +x_63 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34)); +lean_inc(x_8); +x_64 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_64, 0, x_8); +lean_ctor_set(x_64, 1, x_60); +lean_ctor_set(x_64, 2, x_62); +lean_ctor_set(x_64, 3, x_63); +x_65 = l_Lean_instQuoteNameMkStr1___private__1(x_9); +lean_inc(x_15); +lean_inc(x_8); +x_66 = l_Lean_Syntax_node2(x_8, x_15, x_65, x_12); +lean_inc(x_8); +x_67 = l_Lean_Syntax_node2(x_8, x_59, x_64, x_66); +lean_inc(x_8); +x_68 = l_Lean_Syntax_node1(x_8, x_58, x_67); lean_inc_ref(x_24); -lean_inc(x_10); -x_59 = l_Lean_Syntax_node2(x_10, x_47, x_58, x_24); -lean_inc(x_16); -lean_inc(x_10); -x_60 = l_Lean_Syntax_node1(x_10, x_16, x_59); -lean_inc(x_10); -x_61 = l_Lean_Syntax_node1(x_10, x_46, x_60); -lean_inc(x_28); -lean_inc(x_9); -lean_inc(x_10); -x_62 = l_Lean_Syntax_node4(x_10, x_9, x_25, x_28, x_45, x_61); -x_63 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__31)); -x_64 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__32)); -x_65 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__34)); -lean_inc_ref(x_24); -lean_inc(x_10); -x_66 = l_Lean_Syntax_node1(x_10, x_65, x_24); -lean_inc(x_10); -x_67 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_67, 0, x_10); -lean_ctor_set(x_67, 1, x_63); -x_68 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36)); -x_69 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__37)); -lean_inc(x_10); -x_70 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_70, 0, x_10); -lean_ctor_set(x_70, 1, x_69); -x_71 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38)); -lean_inc(x_10); -x_72 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_72, 0, x_10); -lean_ctor_set(x_72, 1, x_71); -x_73 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__39)); -lean_inc(x_10); -x_74 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_74, 0, x_10); -lean_ctor_set(x_74, 1, x_73); -x_75 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40)); -lean_inc(x_10); -x_76 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_76, 0, x_10); -lean_ctor_set(x_76, 1, x_75); -lean_inc_ref(x_76); -lean_inc_ref(x_74); -lean_inc_ref(x_72); -lean_inc_ref(x_70); -lean_inc(x_10); -x_77 = l_Lean_Syntax_node5(x_10, x_68, x_70, x_72, x_74, x_18, x_76); -lean_inc(x_16); -lean_inc(x_10); -x_78 = l_Lean_Syntax_node1(x_10, x_16, x_77); -x_79 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43)); -lean_inc(x_19); -x_80 = l_Lean_Syntax_mkStrLit(x_12, x_19); -lean_inc(x_10); -x_81 = l_Lean_Syntax_node1(x_10, x_79, x_80); -x_82 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__45)); -x_83 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47)); -x_84 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49)); -x_85 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51)); -x_86 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53; -x_87 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__56)); +lean_inc(x_8); +x_69 = l_Lean_Syntax_node2(x_8, x_57, x_68, x_24); +lean_inc(x_15); +lean_inc(x_8); +x_70 = l_Lean_Syntax_node1(x_8, x_15, x_69); +lean_inc(x_8); +x_71 = l_Lean_Syntax_node1(x_8, x_56, x_70); +lean_inc(x_38); lean_inc(x_20); -lean_inc(x_17); -x_88 = l_Lean_addMacroScope(x_17, x_87, x_20); -x_89 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__59)); -lean_inc(x_10); -x_90 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_90, 0, x_10); -lean_ctor_set(x_90, 1, x_86); -lean_ctor_set(x_90, 2, x_88); -lean_ctor_set(x_90, 3, x_89); +lean_inc(x_8); +x_72 = l_Lean_Syntax_node4(x_8, x_20, x_35, x_38, x_55, x_71); +x_73 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__35)); +x_74 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__36)); +x_75 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__38)); lean_inc_ref(x_24); +lean_inc(x_8); +x_76 = l_Lean_Syntax_node1(x_8, x_75, x_24); +lean_inc(x_8); +x_77 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_77, 0, x_8); +lean_ctor_set(x_77, 1, x_73); +x_78 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__40)); +x_79 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__41)); +lean_inc(x_8); +x_80 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_80, 0, x_8); +lean_ctor_set(x_80, 1, x_79); +x_81 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__42)); +lean_inc(x_8); +x_82 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_82, 0, x_8); +lean_ctor_set(x_82, 1, x_81); +x_83 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__43)); +lean_inc(x_8); +x_84 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_84, 0, x_8); +lean_ctor_set(x_84, 1, x_83); +x_85 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__44)); +lean_inc(x_8); +x_86 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_86, 0, x_8); +lean_ctor_set(x_86, 1, x_85); +lean_inc_ref(x_86); +lean_inc_ref(x_84); +lean_inc_ref(x_82); +lean_inc_ref(x_80); +lean_inc(x_8); +x_87 = l_Lean_Syntax_node5(x_8, x_78, x_80, x_82, x_84, x_6, x_86); +lean_inc(x_15); +lean_inc(x_8); +x_88 = l_Lean_Syntax_node1(x_8, x_15, x_87); +x_89 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__47)); +lean_inc(x_16); +x_90 = l_Lean_Syntax_mkStrLit(x_5, x_16); +lean_inc(x_8); +x_91 = l_Lean_Syntax_node1(x_8, x_89, x_90); +x_92 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__49)); +x_93 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__51)); +x_94 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53)); +x_95 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__55)); +x_96 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57; +x_97 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60)); lean_inc(x_10); -x_91 = l_Lean_Syntax_node2(x_10, x_85, x_90, x_24); -x_92 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__60)); -lean_inc(x_10); -x_93 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_93, 0, x_10); -lean_ctor_set(x_93, 1, x_92); -x_94 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62; -x_95 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64)); -lean_inc(x_20); -lean_inc(x_17); -x_96 = l_Lean_addMacroScope(x_17, x_95, x_20); -x_97 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__67)); -lean_inc(x_10); -x_98 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_98, 0, x_10); -lean_ctor_set(x_98, 1, x_94); -lean_ctor_set(x_98, 2, x_96); -lean_ctor_set(x_98, 3, x_97); +lean_inc(x_11); +x_98 = l_Lean_addMacroScope(x_11, x_97, x_10); +x_99 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__63)); +lean_inc(x_8); +x_100 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_100, 0, x_8); +lean_ctor_set(x_100, 1, x_96); +lean_ctor_set(x_100, 2, x_98); +lean_ctor_set(x_100, 3, x_99); lean_inc_ref(x_24); +lean_inc(x_8); +x_101 = l_Lean_Syntax_node2(x_8, x_95, x_100, x_24); +x_102 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__64)); +lean_inc(x_8); +x_103 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_103, 0, x_8); +lean_ctor_set(x_103, 1, x_102); +x_104 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66; +x_105 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68)); lean_inc(x_10); -x_99 = l_Lean_Syntax_node2(x_10, x_85, x_98, x_24); -lean_inc_ref(x_93); -lean_inc(x_10); -x_100 = l_Lean_Syntax_node3(x_10, x_84, x_91, x_93, x_99); -lean_inc(x_16); -lean_inc(x_10); -x_101 = l_Lean_Syntax_node1(x_10, x_16, x_100); -lean_inc_ref(x_76); -lean_inc_ref(x_70); -lean_inc(x_10); -x_102 = l_Lean_Syntax_node3(x_10, x_83, x_70, x_101, x_76); -x_103 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__68)); -lean_inc(x_10); -x_104 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_104, 0, x_10); -lean_ctor_set(x_104, 1, x_103); -lean_inc_ref(x_104); -lean_inc(x_10); -x_105 = l_Lean_Syntax_node2(x_10, x_82, x_102, x_104); -x_106 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__70)); -x_107 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72; -x_108 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__73)); -lean_inc(x_20); -lean_inc(x_17); -x_109 = l_Lean_addMacroScope(x_17, x_108, x_20); -lean_inc(x_10); -x_110 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_110, 0, x_10); -lean_ctor_set(x_110, 1, x_107); -lean_ctor_set(x_110, 2, x_109); -lean_ctor_set(x_110, 3, x_32); -x_111 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__75)); -x_112 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76)); -lean_inc(x_10); -x_113 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_113, 0, x_10); -lean_ctor_set(x_113, 1, x_112); -lean_inc(x_10); -x_114 = l_Lean_Syntax_node1(x_10, x_111, x_113); -lean_inc(x_10); -x_115 = l_Lean_Syntax_node1(x_10, x_79, x_114); -x_116 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77)); -lean_inc(x_10); -x_117 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_117, 0, x_10); -lean_ctor_set(x_117, 1, x_116); -lean_inc(x_10); -x_118 = l_Lean_Syntax_node1(x_10, x_111, x_117); -lean_inc(x_10); -x_119 = l_Lean_Syntax_node1(x_10, x_79, x_118); -lean_inc(x_10); -x_120 = l_Lean_Syntax_node3(x_10, x_84, x_115, x_93, x_119); -lean_inc(x_16); -lean_inc(x_10); -x_121 = l_Lean_Syntax_node1(x_10, x_16, x_120); -lean_inc_ref(x_76); -lean_inc_ref(x_70); -lean_inc(x_10); -x_122 = l_Lean_Syntax_node4(x_10, x_106, x_110, x_70, x_121, x_76); -lean_inc_ref(x_104); -lean_inc(x_10); -x_123 = l_Lean_Syntax_node2(x_10, x_82, x_122, x_104); -x_124 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79; -x_125 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80)); -lean_inc(x_20); -lean_inc(x_17); -x_126 = l_Lean_addMacroScope(x_17, x_125, x_20); -lean_inc(x_10); -x_127 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_127, 0, x_10); -lean_ctor_set(x_127, 1, x_124); -lean_ctor_set(x_127, 2, x_126); -lean_ctor_set(x_127, 3, x_32); +lean_inc(x_11); +x_106 = l_Lean_addMacroScope(x_11, x_105, x_10); +x_107 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__71)); +lean_inc(x_8); +x_108 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_108, 0, x_8); +lean_ctor_set(x_108, 1, x_104); +lean_ctor_set(x_108, 2, x_106); +lean_ctor_set(x_108, 3, x_107); lean_inc_ref(x_24); +lean_inc(x_8); +x_109 = l_Lean_Syntax_node2(x_8, x_95, x_108, x_24); +lean_inc_ref(x_103); +lean_inc(x_8); +x_110 = l_Lean_Syntax_node3(x_8, x_94, x_101, x_103, x_109); +lean_inc(x_15); +lean_inc(x_8); +x_111 = l_Lean_Syntax_node1(x_8, x_15, x_110); +lean_inc_ref(x_86); +lean_inc_ref(x_80); +lean_inc(x_8); +x_112 = l_Lean_Syntax_node3(x_8, x_93, x_80, x_111, x_86); +x_113 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72)); +lean_inc(x_8); +x_114 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_114, 0, x_8); +lean_ctor_set(x_114, 1, x_113); +lean_inc_ref(x_114); +lean_inc(x_8); +x_115 = l_Lean_Syntax_node2(x_8, x_92, x_112, x_114); +x_116 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__74)); +x_117 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76; +x_118 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__77)); lean_inc(x_10); -x_128 = l_Lean_Syntax_node2(x_10, x_85, x_127, x_24); -lean_inc(x_16); +lean_inc(x_11); +x_119 = l_Lean_addMacroScope(x_11, x_118, x_10); +lean_inc(x_8); +x_120 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_120, 0, x_8); +lean_ctor_set(x_120, 1, x_117); +lean_ctor_set(x_120, 2, x_119); +lean_ctor_set(x_120, 3, x_42); +x_121 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79)); +x_122 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__80)); +lean_inc(x_8); +x_123 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_123, 0, x_8); +lean_ctor_set(x_123, 1, x_122); +lean_inc(x_8); +x_124 = l_Lean_Syntax_node1(x_8, x_121, x_123); +lean_inc(x_8); +x_125 = l_Lean_Syntax_node1(x_8, x_89, x_124); +x_126 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__81)); +lean_inc(x_8); +x_127 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_127, 0, x_8); +lean_ctor_set(x_127, 1, x_126); +lean_inc(x_8); +x_128 = l_Lean_Syntax_node1(x_8, x_121, x_127); +lean_inc(x_8); +x_129 = l_Lean_Syntax_node1(x_8, x_89, x_128); +lean_inc(x_8); +x_130 = l_Lean_Syntax_node3(x_8, x_94, x_125, x_103, x_129); +lean_inc(x_15); +lean_inc(x_8); +x_131 = l_Lean_Syntax_node1(x_8, x_15, x_130); +lean_inc_ref(x_86); +lean_inc_ref(x_80); +lean_inc(x_8); +x_132 = l_Lean_Syntax_node4(x_8, x_116, x_120, x_80, x_131, x_86); +lean_inc_ref(x_114); +lean_inc(x_8); +x_133 = l_Lean_Syntax_node2(x_8, x_92, x_132, x_114); +x_134 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83; +x_135 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84)); lean_inc(x_10); -x_129 = l_Lean_Syntax_node1(x_10, x_16, x_128); -lean_inc_ref(x_76); -lean_inc_ref(x_70); -lean_inc(x_10); -x_130 = l_Lean_Syntax_node3(x_10, x_83, x_70, x_129, x_76); -lean_inc(x_10); -x_131 = l_Lean_Syntax_node2(x_10, x_82, x_130, x_104); -lean_inc(x_105); -lean_inc(x_16); -lean_inc(x_10); -x_132 = l_Lean_Syntax_node4(x_10, x_16, x_81, x_105, x_123, x_131); -x_133 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82; -x_134 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83)); -lean_inc(x_20); -lean_inc(x_17); -x_135 = l_Lean_addMacroScope(x_17, x_134, x_20); -lean_inc(x_10); -x_136 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_136, 0, x_10); -lean_ctor_set(x_136, 1, x_133); -lean_ctor_set(x_136, 2, x_135); -lean_ctor_set(x_136, 3, x_32); -x_137 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84; -x_138 = lean_array_push(x_137, x_23); +lean_inc(x_11); +x_136 = l_Lean_addMacroScope(x_11, x_135, x_10); +lean_inc(x_8); +x_137 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_137, 0, x_8); +lean_ctor_set(x_137, 1, x_134); +lean_ctor_set(x_137, 2, x_136); +lean_ctor_set(x_137, 3, x_42); lean_inc_ref(x_24); -x_139 = lean_array_push(x_138, x_24); -lean_inc(x_66); -x_140 = lean_array_push(x_139, x_66); -lean_inc_ref(x_67); -x_141 = lean_array_push(x_140, x_67); +lean_inc(x_8); +x_138 = l_Lean_Syntax_node2(x_8, x_95, x_137, x_24); +lean_inc(x_15); +lean_inc(x_8); +x_139 = l_Lean_Syntax_node1(x_8, x_15, x_138); +lean_inc_ref(x_86); +lean_inc_ref(x_80); +lean_inc(x_8); +x_140 = l_Lean_Syntax_node3(x_8, x_93, x_80, x_139, x_86); +lean_inc(x_8); +x_141 = l_Lean_Syntax_node2(x_8, x_92, x_140, x_114); +lean_inc(x_115); +lean_inc(x_15); +lean_inc(x_8); +x_142 = l_Lean_Syntax_node4(x_8, x_15, x_91, x_115, x_133, x_141); +x_143 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86; +x_144 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87)); +lean_inc(x_10); +lean_inc(x_11); +x_145 = l_Lean_addMacroScope(x_11, x_144, x_10); +lean_inc(x_8); +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_8); +lean_ctor_set(x_146, 1, x_143); +lean_ctor_set(x_146, 2, x_145); +lean_ctor_set(x_146, 3, x_42); +x_147 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88; +x_148 = lean_array_push(x_147, x_23); lean_inc_ref(x_24); -x_142 = lean_array_push(x_141, x_24); -x_143 = lean_array_push(x_142, x_78); +x_149 = lean_array_push(x_148, x_24); +lean_inc(x_76); +x_150 = lean_array_push(x_149, x_76); +lean_inc_ref(x_77); +x_151 = lean_array_push(x_150, x_77); lean_inc_ref(x_24); -x_144 = lean_array_push(x_143, x_24); -x_145 = lean_array_push(x_144, x_132); -lean_inc_ref(x_36); -x_146 = lean_array_push(x_145, x_36); -lean_inc_ref(x_136); -x_147 = lean_array_push(x_146, x_136); -lean_inc(x_10); -x_148 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_148, 0, x_10); -lean_ctor_set(x_148, 1, x_64); -lean_ctor_set(x_148, 2, x_147); -x_149 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__85)); -x_150 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86)); -lean_inc(x_10); -x_151 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_151, 0, x_10); -lean_ctor_set(x_151, 1, x_150); -x_152 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__87)); -lean_inc(x_10); -x_153 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_153, 0, x_10); -lean_ctor_set(x_153, 1, x_152); -lean_inc(x_10); -x_154 = l_Lean_Syntax_node2(x_10, x_149, x_151, x_153); -lean_inc(x_16); -lean_inc(x_10); -x_155 = l_Lean_Syntax_node1(x_10, x_16, x_154); -lean_inc_ref_n(x_24, 6); -lean_inc(x_155); -lean_inc(x_10); -x_156 = l_Lean_Syntax_node7(x_10, x_5, x_155, x_24, x_24, x_24, x_24, x_24, x_24); -x_157 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89; -x_158 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90)); -lean_inc(x_20); -lean_inc(x_17); -x_159 = l_Lean_addMacroScope(x_17, x_158, x_20); -lean_inc(x_10); -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_10); -lean_ctor_set(x_160, 1, x_157); -lean_ctor_set(x_160, 2, x_159); -lean_ctor_set(x_160, 3, x_32); -x_161 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92; -x_162 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93)); -lean_inc(x_20); -lean_inc(x_17); -x_163 = l_Lean_addMacroScope(x_17, x_162, x_20); -x_164 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__98)); -lean_inc(x_10); -x_165 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_165, 0, x_10); -lean_ctor_set(x_165, 1, x_161); -lean_ctor_set(x_165, 2, x_163); -lean_ctor_set(x_165, 3, x_164); -lean_inc_ref(x_36); -lean_inc(x_10); -x_166 = l_Lean_Syntax_node2(x_10, x_34, x_36, x_165); -lean_inc(x_16); -lean_inc(x_10); -x_167 = l_Lean_Syntax_node3(x_10, x_16, x_160, x_166, x_44); -x_168 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100; -x_169 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__101)); -lean_inc(x_20); -lean_inc(x_17); -x_170 = l_Lean_addMacroScope(x_17, x_169, x_20); -x_171 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104)); -lean_inc(x_10); -x_172 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_172, 0, x_10); -lean_ctor_set(x_172, 1, x_168); -lean_ctor_set(x_172, 2, x_170); -lean_ctor_set(x_172, 3, x_171); -x_173 = l_Lean_instQuoteNameMkStr1___private__1(x_6); -x_174 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106; -x_175 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__107)); -x_176 = l_Lean_addMacroScope(x_17, x_175, x_20); -x_177 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111)); -lean_inc(x_10); -x_178 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_178, 0, x_10); -lean_ctor_set(x_178, 1, x_174); -lean_ctor_set(x_178, 2, x_176); -lean_ctor_set(x_178, 3, x_177); -lean_inc(x_173); -lean_inc(x_16); -lean_inc(x_10); -x_179 = l_Lean_Syntax_node4(x_10, x_16, x_173, x_4, x_178, x_173); -lean_inc(x_10); -x_180 = l_Lean_Syntax_node2(x_10, x_49, x_172, x_179); -lean_inc(x_10); -x_181 = l_Lean_Syntax_node1(x_10, x_48, x_180); +x_152 = lean_array_push(x_151, x_24); +x_153 = lean_array_push(x_152, x_88); lean_inc_ref(x_24); +x_154 = lean_array_push(x_153, x_24); +x_155 = lean_array_push(x_154, x_142); +lean_inc_ref(x_46); +x_156 = lean_array_push(x_155, x_46); +lean_inc_ref(x_146); +x_157 = lean_array_push(x_156, x_146); +lean_inc(x_8); +x_158 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_158, 0, x_8); +lean_ctor_set(x_158, 1, x_74); +lean_ctor_set(x_158, 2, x_157); +x_159 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89)); +x_160 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__90)); +lean_inc(x_8); +x_161 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_161, 0, x_8); +lean_ctor_set(x_161, 1, x_160); +x_162 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__91)); +lean_inc(x_8); +x_163 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_163, 0, x_8); +lean_ctor_set(x_163, 1, x_162); +lean_inc(x_8); +x_164 = l_Lean_Syntax_node2(x_8, x_159, x_161, x_163); +lean_inc(x_15); +lean_inc(x_8); +x_165 = l_Lean_Syntax_node1(x_8, x_15, x_164); +lean_inc_ref_n(x_24, 4); +lean_inc(x_165); +lean_inc(x_8); +x_166 = l_Lean_Syntax_node7(x_8, x_4, x_165, x_24, x_29, x_24, x_34, x_24, x_24); +x_167 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93; +x_168 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__94)); lean_inc(x_10); -x_182 = l_Lean_Syntax_node2(x_10, x_47, x_181, x_24); -lean_inc(x_16); +lean_inc(x_11); +x_169 = l_Lean_addMacroScope(x_11, x_168, x_10); +lean_inc(x_8); +x_170 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_170, 0, x_8); +lean_ctor_set(x_170, 1, x_167); +lean_ctor_set(x_170, 2, x_169); +lean_ctor_set(x_170, 3, x_42); +x_171 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96; +x_172 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__97)); lean_inc(x_10); -x_183 = l_Lean_Syntax_node1(x_10, x_16, x_182); +lean_inc(x_11); +x_173 = l_Lean_addMacroScope(x_11, x_172, x_10); +x_174 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__102)); +lean_inc(x_8); +x_175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_175, 0, x_8); +lean_ctor_set(x_175, 1, x_171); +lean_ctor_set(x_175, 2, x_173); +lean_ctor_set(x_175, 3, x_174); +lean_inc_ref(x_46); +lean_inc(x_8); +x_176 = l_Lean_Syntax_node2(x_8, x_44, x_46, x_175); +lean_inc(x_15); +lean_inc(x_8); +x_177 = l_Lean_Syntax_node3(x_8, x_15, x_170, x_176, x_54); +x_178 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104; +x_179 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__105)); lean_inc(x_10); -x_184 = l_Lean_Syntax_node1(x_10, x_46, x_183); -lean_inc(x_10); -x_185 = l_Lean_Syntax_node4(x_10, x_9, x_156, x_28, x_167, x_184); -lean_inc(x_10); -x_186 = l_Lean_Syntax_node5(x_10, x_68, x_70, x_72, x_74, x_13, x_76); -lean_inc(x_16); -lean_inc(x_10); -x_187 = l_Lean_Syntax_node1(x_10, x_16, x_186); -x_188 = l_Lean_Syntax_mkStrLit(x_15, x_19); -lean_inc(x_10); -x_189 = l_Lean_Syntax_node1(x_10, x_79, x_188); -lean_inc(x_16); -lean_inc(x_10); -x_190 = l_Lean_Syntax_node2(x_10, x_16, x_189, x_105); -x_191 = lean_array_push(x_137, x_155); +lean_inc(x_11); +x_180 = l_Lean_addMacroScope(x_11, x_179, x_10); +x_181 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__108)); +lean_inc(x_8); +x_182 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_182, 0, x_8); +lean_ctor_set(x_182, 1, x_178); +lean_ctor_set(x_182, 2, x_180); +lean_ctor_set(x_182, 3, x_181); +x_183 = l_Lean_instQuoteNameMkStr1___private__1(x_14); +x_184 = l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110; +x_185 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__111)); +x_186 = l_Lean_addMacroScope(x_11, x_185, x_10); +x_187 = ((lean_object*)(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__115)); +lean_inc(x_8); +x_188 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_188, 0, x_8); +lean_ctor_set(x_188, 1, x_184); +lean_ctor_set(x_188, 2, x_186); +lean_ctor_set(x_188, 3, x_187); +lean_inc(x_15); +lean_inc(x_8); +x_189 = l_Lean_Syntax_node3(x_8, x_15, x_183, x_7, x_188); +lean_inc(x_8); +x_190 = l_Lean_Syntax_node2(x_8, x_59, x_182, x_189); +lean_inc(x_8); +x_191 = l_Lean_Syntax_node1(x_8, x_58, x_190); lean_inc_ref(x_24); -x_192 = lean_array_push(x_191, x_24); -x_193 = lean_array_push(x_192, x_66); -x_194 = lean_array_push(x_193, x_67); +lean_inc(x_8); +x_192 = l_Lean_Syntax_node2(x_8, x_57, x_191, x_24); +lean_inc(x_15); +lean_inc(x_8); +x_193 = l_Lean_Syntax_node1(x_8, x_15, x_192); +lean_inc(x_8); +x_194 = l_Lean_Syntax_node1(x_8, x_56, x_193); +lean_inc(x_8); +x_195 = l_Lean_Syntax_node4(x_8, x_20, x_166, x_38, x_177, x_194); +lean_inc(x_8); +x_196 = l_Lean_Syntax_node5(x_8, x_78, x_80, x_82, x_84, x_18, x_86); +lean_inc(x_15); +lean_inc(x_8); +x_197 = l_Lean_Syntax_node1(x_8, x_15, x_196); +x_198 = l_Lean_Syntax_mkStrLit(x_17, x_16); +lean_inc(x_8); +x_199 = l_Lean_Syntax_node1(x_8, x_89, x_198); +lean_inc(x_15); +lean_inc(x_8); +x_200 = l_Lean_Syntax_node2(x_8, x_15, x_199, x_115); +x_201 = lean_array_push(x_147, x_165); lean_inc_ref(x_24); -x_195 = lean_array_push(x_194, x_24); -x_196 = lean_array_push(x_195, x_187); -x_197 = lean_array_push(x_196, x_24); -x_198 = lean_array_push(x_197, x_190); -x_199 = lean_array_push(x_198, x_36); -x_200 = lean_array_push(x_199, x_136); -lean_inc(x_10); -x_201 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_201, 0, x_10); -lean_ctor_set(x_201, 1, x_64); -lean_ctor_set(x_201, 2, x_200); -x_202 = l_Lean_Syntax_node4(x_10, x_16, x_62, x_148, x_185, x_201); -x_203 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_203, 0, x_202); -lean_ctor_set(x_203, 1, x_3); -return x_203; +x_202 = lean_array_push(x_201, x_24); +x_203 = lean_array_push(x_202, x_76); +x_204 = lean_array_push(x_203, x_77); +lean_inc_ref(x_24); +x_205 = lean_array_push(x_204, x_24); +x_206 = lean_array_push(x_205, x_197); +x_207 = lean_array_push(x_206, x_24); +x_208 = lean_array_push(x_207, x_200); +x_209 = lean_array_push(x_208, x_46); +x_210 = lean_array_push(x_209, x_146); +lean_inc(x_8); +x_211 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_211, 0, x_8); +lean_ctor_set(x_211, 1, x_74); +lean_ctor_set(x_211, 2, x_210); +x_212 = l_Lean_Syntax_node4(x_8, x_15, x_72, x_158, x_195, x_211); +x_213 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_213, 0, x_212); +lean_ctor_set(x_213, 1, x_3); +return x_213; } } } @@ -1212,36 +1248,36 @@ l_Lean_Parser_Command_registerSimpAttr___closed__23 = _init_l_Lean_Parser_Comman lean_mark_persistent(l_Lean_Parser_Command_registerSimpAttr___closed__23); l_Lean_Parser_Command_registerSimpAttr = _init_l_Lean_Parser_Command_registerSimpAttr(); lean_mark_persistent(l_Lean_Parser_Command_registerSimpAttr); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__3); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__10); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__26); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__53); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__62); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__72); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__79); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__82); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__84); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__89); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__92); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__100); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__106); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__119); -l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120(); -lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__120); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__7); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__14); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__30); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__57); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__66); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__76); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__83); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__86); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__88); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__93); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__96); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__104); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__110); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__123); +l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124 = _init_l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124(); +lean_mark_persistent(l_Lean_Meta_Simp___aux__Lean__Meta__Tactic__Simp__RegisterCommand______macroRules__Lean__Meta__Simp____root____Lean__Parser__Command__registerSimpAttr__1___closed__124); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c index e6de9ef3a8..1f1fcc957a 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Meta.Tactic.Simp.SimpTheorems -// Imports: public import Lean.Meta.DiscrTree.Main public import Lean.Meta.Tactic.AuxLemma public import Lean.DocString import Lean.Meta.AppBuilder import Lean.Meta.Eqns import Lean.Meta.WHNF public import Init.Data.Format.Macro +// Imports: public import Lean.Meta.DiscrTree.Main public import Lean.Meta.Tactic.AuxLemma public import Lean.DocString import Lean.Meta.AppBuilder import Lean.Meta.Eqns import Lean.Meta.WHNF public import Init.Data.Format.Macro import Lean.ExtraModUses #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -1056,12 +1056,90 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_ uint64_t lean_uint64_xor(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___redArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___redArg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f___boxed(lean_object*, lean_object*); +static const lean_string_object l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "trace"}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__0 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__0_value; +static const lean_ctor_object l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__0_value),LEAN_SCALAR_PTR_LITERAL(212, 145, 141, 177, 67, 149, 127, 197)}}; +static const lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__1 = (const lean_object*)&l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__1_value; +lean_object* l_Lean_Name_append(lean_object*, lean_object*); +uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*); +double lean_float_of_nat(lean_object*); +static double l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0; +static lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1; +lean_object* l_Lean_PersistentArray_push___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_instBEqExtraModUse_beq(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg(lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg___boxed(lean_object*, lean_object*, lean_object*); +uint64_t l_Lean_instHashableExtraModUse_hash(lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_instBEqExtraModUse_beq___boxed(lean_object*, lean_object*); +static const lean_closure_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_instBEqExtraModUse_beq___boxed, .m_arity = 2, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__0 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__0_value; +lean_object* l_Lean_instHashableExtraModUse_hash___boxed(lean_object*); +static const lean_closure_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_closure_object) + sizeof(void*)*0, .m_other = 0, .m_tag = 245}, .m_fun = (void*)l_Lean_instHashableExtraModUse_hash___boxed, .m_arity = 1, .m_num_fixed = 0, .m_objs = {} }; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__1 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__1_value; +lean_object* l_Lean_PersistentHashMap_empty(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "extraModUses"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__3 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__3_value; +static const lean_ctor_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__3_value),LEAN_SCALAR_PTR_LITERAL(27, 95, 70, 98, 97, 66, 56, 109)}}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__4 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__4_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 16, .m_capacity = 16, .m_length = 15, .m_data = " extra mod use "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__5 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__5_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = " of "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__7 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__7_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 11, .m_capacity = 11, .m_length = 10, .m_data = "recording "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__10 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__10_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 2, .m_capacity = 2, .m_length = 1, .m_data = " "}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__12 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__12_value; +static lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "regular"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__14 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__14_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "meta"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__15 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__15_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "private"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__16 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__16_value; +static const lean_string_object l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "public"}; +static const lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__17 = (const lean_object*)&l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__17_value; +extern lean_object* l___private_Lean_ExtraModUses_0__Lean_extraModUses; +lean_object* l_Lean_PersistentEnvExtension_addEntry___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SimplePersistentEnvExtension_getState___redArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedEffectiveImport_default; +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMap_instInhabited(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0; +static lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1; +extern lean_object* l_Lean_indirectModUseExt; +uint8_t l_Lean_isMarkedMeta(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1(lean_object*, uint8_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0_spec__0(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___00Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0_spec__0___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4(lean_object*, lean_object*, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Meta_SimpTheorems_addDeclToUnfold_spec__0(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Meta_SimpTheorems_addDeclToUnfold_spec__0___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SimpTheorems_addDeclToUnfold(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -9724,7 +9802,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 = ((lean_object*)(l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremCore___closed__2)); x_2 = lean_unsigned_to_nat(2u); -x_3 = lean_unsigned_to_nat(373u); +x_3 = lean_unsigned_to_nat(374u); x_4 = ((lean_object*)(l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremCore___closed__1)); x_5 = ((lean_object*)(l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremCore___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -22096,7 +22174,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 = ((lean_object*)(l_Lean_Meta_mkSimpExt___lam__0___closed__1)); x_2 = lean_unsigned_to_nat(17u); -x_3 = lean_unsigned_to_nat(669u); +x_3 = lean_unsigned_to_nat(670u); x_4 = ((lean_object*)(l_Lean_Meta_mkSimpExt___lam__0___closed__0)); x_5 = ((lean_object*)(l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_mkSimpTheoremCore___closed__0)); x_6 = l_mkPanicMessageWithDecl(x_5, x_4, x_3, x_2, x_1); @@ -22398,28 +22476,1109 @@ lean_dec_ref(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = l_Lean_Meta_simpExtensionMapRef; -x_4 = lean_st_ref_get(x_3); -x_5 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___redArg(x_4, x_1); +lean_object* x_4; uint8_t x_5; +x_4 = lean_ctor_get(x_2, 2); +x_5 = lean_ctor_get_uint8(x_4, sizeof(void*)*1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_1); +x_6 = lean_box(x_5); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_ctor_get(x_2, 13); +x_9 = ((lean_object*)(l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___closed__1)); +x_10 = l_Lean_Name_append(x_9, x_1); +x_11 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(x_8, x_4, x_10); +lean_dec(x_10); +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_13, 0, x_12); +return x_13; +} +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg(x_1, x_2); +lean_dec_ref(x_2); +return x_4; +} +} +static double _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0() { +_start: +{ +lean_object* x_1; double x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_float_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_3, 5); +x_7 = l_Lean_addMessageContextPartial___at___00Lean_throwError___at___00Lean_throwErrorAt___at___00Lean_throwUnknownIdentifierAt___at___00Lean_throwUnknownConstantAt___at___00Lean_throwUnknownConstant___at___00Lean_getAsyncConstInfo___at___00__private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_isRflTheoremCore_spec__2_spec__2_spec__3_spec__4_spec__6_spec__8_spec__9(x_2, x_3, x_4); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_st_ref_take(x_4); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_ctor_get(x_10, 4); +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; double x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_14 = lean_ctor_get(x_12, 0); +x_15 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0; +x_16 = 0; +x_17 = ((lean_object*)(l_Lean_Meta_instToFormatSimpTheorem___lam__0___closed__2)); +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_15); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_15); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_16); +x_19 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1; +x_20 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_9); +lean_ctor_set(x_20, 2, x_19); +lean_inc(x_6); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_6); +lean_ctor_set(x_21, 1, x_20); +x_22 = l_Lean_PersistentArray_push___redArg(x_14, x_21); +lean_ctor_set(x_12, 0, x_22); +x_23 = lean_st_ref_set(x_4, x_10); +x_24 = lean_box(0); +lean_ctor_set(x_7, 0, x_24); +return x_7; +} +else +{ +uint64_t x_25; lean_object* x_26; double x_27; uint8_t x_28; 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; +x_25 = lean_ctor_get_uint64(x_12, sizeof(void*)*1); +x_26 = lean_ctor_get(x_12, 0); +lean_inc(x_26); +lean_dec(x_12); +x_27 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0; +x_28 = 0; +x_29 = ((lean_object*)(l_Lean_Meta_instToFormatSimpTheorem___lam__0___closed__2)); +x_30 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_30, 0, x_1); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set_float(x_30, sizeof(void*)*2, x_27); +lean_ctor_set_float(x_30, sizeof(void*)*2 + 8, x_27); +lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 16, x_28); +x_31 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1; +x_32 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_9); +lean_ctor_set(x_32, 2, x_31); +lean_inc(x_6); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_6); +lean_ctor_set(x_33, 1, x_32); +x_34 = l_Lean_PersistentArray_push___redArg(x_26, x_33); +x_35 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set_uint64(x_35, sizeof(void*)*1, x_25); +lean_ctor_set(x_10, 4, x_35); +x_36 = lean_st_ref_set(x_4, x_10); +x_37 = lean_box(0); +lean_ctor_set(x_7, 0, x_37); +return x_7; +} +} +else +{ +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; lean_object* x_45; lean_object* x_46; uint64_t x_47; lean_object* x_48; lean_object* x_49; double x_50; uint8_t 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; +x_38 = lean_ctor_get(x_10, 4); +x_39 = lean_ctor_get(x_10, 0); +x_40 = lean_ctor_get(x_10, 1); +x_41 = lean_ctor_get(x_10, 2); +x_42 = lean_ctor_get(x_10, 3); +x_43 = lean_ctor_get(x_10, 5); +x_44 = lean_ctor_get(x_10, 6); +x_45 = lean_ctor_get(x_10, 7); +x_46 = lean_ctor_get(x_10, 8); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_38); +lean_inc(x_42); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_10); +x_47 = lean_ctor_get_uint64(x_38, sizeof(void*)*1); +x_48 = lean_ctor_get(x_38, 0); +lean_inc_ref(x_48); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + x_49 = x_38; +} else { + lean_dec_ref(x_38); + x_49 = lean_box(0); +} +x_50 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0; +x_51 = 0; +x_52 = ((lean_object*)(l_Lean_Meta_instToFormatSimpTheorem___lam__0___closed__2)); +x_53 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_53, 0, x_1); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set_float(x_53, sizeof(void*)*2, x_50); +lean_ctor_set_float(x_53, sizeof(void*)*2 + 8, x_50); +lean_ctor_set_uint8(x_53, sizeof(void*)*2 + 16, x_51); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1; +x_55 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_9); +lean_ctor_set(x_55, 2, x_54); +lean_inc(x_6); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_6); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Lean_PersistentArray_push___redArg(x_48, x_56); +if (lean_is_scalar(x_49)) { + x_58 = lean_alloc_ctor(0, 1, 8); +} else { + x_58 = x_49; +} +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set_uint64(x_58, sizeof(void*)*1, x_47); +x_59 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_59, 0, x_39); +lean_ctor_set(x_59, 1, x_40); +lean_ctor_set(x_59, 2, x_41); +lean_ctor_set(x_59, 3, x_42); +lean_ctor_set(x_59, 4, x_58); +lean_ctor_set(x_59, 5, x_43); +lean_ctor_set(x_59, 6, x_44); +lean_ctor_set(x_59, 7, x_45); +lean_ctor_set(x_59, 8, x_46); +x_60 = lean_st_ref_set(x_4, x_59); +x_61 = lean_box(0); +lean_ctor_set(x_7, 0, x_61); +return x_7; +} +} +else +{ +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; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint64_t x_74; lean_object* x_75; lean_object* x_76; double x_77; uint8_t 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; +x_62 = lean_ctor_get(x_7, 0); +lean_inc(x_62); +lean_dec(x_7); +x_63 = lean_st_ref_take(x_4); +x_64 = lean_ctor_get(x_63, 4); +lean_inc_ref(x_64); +x_65 = lean_ctor_get(x_63, 0); +lean_inc_ref(x_65); +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +x_67 = lean_ctor_get(x_63, 2); +lean_inc_ref(x_67); +x_68 = lean_ctor_get(x_63, 3); +lean_inc_ref(x_68); +x_69 = lean_ctor_get(x_63, 5); +lean_inc_ref(x_69); +x_70 = lean_ctor_get(x_63, 6); +lean_inc_ref(x_70); +x_71 = lean_ctor_get(x_63, 7); +lean_inc_ref(x_71); +x_72 = lean_ctor_get(x_63, 8); +lean_inc_ref(x_72); +if (lean_is_exclusive(x_63)) { + lean_ctor_release(x_63, 0); + lean_ctor_release(x_63, 1); + lean_ctor_release(x_63, 2); + lean_ctor_release(x_63, 3); + lean_ctor_release(x_63, 4); + lean_ctor_release(x_63, 5); + lean_ctor_release(x_63, 6); + lean_ctor_release(x_63, 7); + lean_ctor_release(x_63, 8); + x_73 = x_63; +} else { + lean_dec_ref(x_63); + x_73 = lean_box(0); +} +x_74 = lean_ctor_get_uint64(x_64, sizeof(void*)*1); +x_75 = lean_ctor_get(x_64, 0); +lean_inc_ref(x_75); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + x_76 = x_64; +} else { + lean_dec_ref(x_64); + x_76 = lean_box(0); +} +x_77 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0; +x_78 = 0; +x_79 = ((lean_object*)(l_Lean_Meta_instToFormatSimpTheorem___lam__0___closed__2)); +x_80 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_80, 0, x_1); +lean_ctor_set(x_80, 1, x_79); +lean_ctor_set_float(x_80, sizeof(void*)*2, x_77); +lean_ctor_set_float(x_80, sizeof(void*)*2 + 8, x_77); +lean_ctor_set_uint8(x_80, sizeof(void*)*2 + 16, x_78); +x_81 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1; +x_82 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_62); +lean_ctor_set(x_82, 2, x_81); +lean_inc(x_6); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_6); +lean_ctor_set(x_83, 1, x_82); +x_84 = l_Lean_PersistentArray_push___redArg(x_75, x_83); +if (lean_is_scalar(x_76)) { + x_85 = lean_alloc_ctor(0, 1, 8); +} else { + x_85 = x_76; +} +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set_uint64(x_85, sizeof(void*)*1, x_74); +if (lean_is_scalar(x_73)) { + x_86 = lean_alloc_ctor(0, 9, 0); +} else { + x_86 = x_73; +} +lean_ctor_set(x_86, 0, x_65); +lean_ctor_set(x_86, 1, x_66); +lean_ctor_set(x_86, 2, x_67); +lean_ctor_set(x_86, 3, x_68); +lean_ctor_set(x_86, 4, x_85); +lean_ctor_set(x_86, 5, x_69); +lean_ctor_set(x_86, 6, x_70); +lean_ctor_set(x_86, 7, x_71); +lean_ctor_set(x_86, 8, x_72); +x_87 = lean_st_ref_set(x_4, x_86); +x_88 = lean_box(0); +x_89 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_89, 0, x_88); +return x_89; +} +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5(x_1, x_2, x_3, x_4); lean_dec(x_4); -x_6 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_6, 0, x_5); +lean_dec_ref(x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_3; -x_3 = l_Lean_Meta_getSimpExtension_x3f(x_1); -lean_dec(x_1); +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_2, x_4); +if (x_5 == 0) +{ +lean_dec(x_2); +return x_5; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_fget_borrowed(x_1, x_2); +x_7 = l_Lean_instBEqExtraModUse_beq(x_3, x_6); +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_add(x_2, x_8); +lean_dec(x_2); +x_2 = x_9; +goto _start; +} +else +{ +lean_dec(x_2); +return x_7; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg(x_1, x_2, x_3); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; size_t x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_4); +lean_dec_ref(x_1); +x_5 = lean_box(2); +x_6 = 5; +x_7 = l_Lean_PersistentHashMap_findAux___at___00Lean_PersistentHashMap_find_x3f___at___00Lean_Meta_SimpTheorems_eraseCore_spec__3_spec__6___redArg___closed__1; +x_8 = lean_usize_land(x_2, x_7); +x_9 = lean_usize_to_nat(x_8); +x_10 = lean_array_get(x_5, x_4, x_9); +lean_dec(x_9); +lean_dec_ref(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec_ref(x_10); +x_12 = l_Lean_instBEqExtraModUse_beq(x_3, x_11); +lean_dec(x_11); +return x_12; +} +case 1: +{ +lean_object* x_13; size_t x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec_ref(x_10); +x_14 = lean_usize_shift_right(x_2, x_6); +x_1 = x_13; +x_2 = x_14; +goto _start; +} +default: +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +} +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_1, 0); +lean_inc_ref(x_17); +lean_dec_ref(x_1); +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg(x_17, x_18, x_3); +lean_dec_ref(x_17); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; uint8_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg(x_1, x_4, x_3); +lean_dec_ref(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint64_t x_3; size_t x_4; uint8_t x_5; +x_3 = l_Lean_instHashableExtraModUse_hash(x_2); +x_4 = lean_uint64_to_usize(x_3); +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg(x_1, x_4, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg(x_1, x_2); +lean_dec_ref(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__1)); +x_2 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__0)); +x_3 = l_Lean_PersistentHashMap_empty(lean_box(0), lean_box(0), x_2, x_1); return x_3; } } +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__5)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__7)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l_Lean_Meta_instToFormatSimpTheorem___lam__0___closed__2)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__10)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__12)); +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_46; uint8_t x_47; +x_7 = lean_st_ref_get(x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc_ref(x_8); +lean_dec(x_7); +x_9 = lean_ctor_get_uint8(x_8, sizeof(void*)*8); +lean_dec_ref(x_8); +x_10 = lean_st_ref_get(x_5); +x_11 = lean_ctor_get(x_10, 0); +lean_inc_ref(x_11); +lean_dec(x_10); +x_12 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2; +lean_inc(x_1); +x_13 = lean_alloc_ctor(0, 1, 2); +lean_ctor_set(x_13, 0, x_1); +lean_ctor_set_uint8(x_13, sizeof(void*)*1, x_9); +lean_ctor_set_uint8(x_13, sizeof(void*)*1 + 1, x_2); +x_14 = l___private_Lean_ExtraModUses_0__Lean_extraModUses; +x_15 = lean_box(1); +x_16 = lean_box(0); +x_46 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_12, x_14, x_11, x_15, x_16); +x_47 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg(x_46, x_13); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_56; lean_object* x_57; uint8_t x_70; +x_48 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__4)); +x_49 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg(x_48, x_4); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +lean_dec_ref(x_49); +x_70 = lean_unbox(x_50); +lean_dec(x_50); +if (x_70 == 0) +{ +lean_dec(x_3); +lean_dec(x_1); +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_object* x_71; lean_object* x_72; +x_71 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11; +if (x_9 == 0) +{ +lean_object* x_80; +x_80 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__16)); +x_72 = x_80; +goto block_79; +} +else +{ +lean_object* x_81; +x_81 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__17)); +x_72 = x_81; +goto block_79; +} +block_79: +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_73 = l_Lean_stringToMessageData(x_72); +x_74 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_74, 0, x_71); +lean_ctor_set(x_74, 1, x_73); +x_75 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13; +x_76 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +if (x_2 == 0) +{ +lean_object* x_77; +x_77 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__14)); +x_56 = x_76; +x_57 = x_77; +goto block_69; +} +else +{ +lean_object* x_78; +x_78 = ((lean_object*)(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__15)); +x_56 = x_76; +x_57 = x_78; +goto block_69; +} +} +} +block_55: +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5(x_48, x_53, x_4, x_5); +if (lean_obj_tag(x_54) == 0) +{ +lean_dec_ref(x_54); +x_17 = x_5; +x_18 = lean_box(0); +goto block_45; +} +else +{ +lean_dec_ref(x_13); +return x_54; +} +} +block_69: +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_58 = l_Lean_stringToMessageData(x_57); +x_59 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_58); +x_60 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6; +x_61 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +x_62 = l_Lean_MessageData_ofName(x_1); +x_63 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_Name_isAnonymous(x_3); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8; +x_66 = l_Lean_MessageData_ofName(x_3); +x_67 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_67, 0, x_65); +lean_ctor_set(x_67, 1, x_66); +x_51 = x_63; +x_52 = x_67; +goto block_55; +} +else +{ +lean_object* x_68; +lean_dec(x_3); +x_68 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9; +x_51 = x_63; +x_52 = x_68; +goto block_55; +} +} +} +else +{ +lean_object* x_82; lean_object* x_83; +lean_dec_ref(x_13); +lean_dec(x_3); +lean_dec(x_1); +x_82 = lean_box(0); +x_83 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_83, 0, x_82); +return x_83; +} +block_45: +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_st_ref_take(x_17); +x_20 = lean_ctor_get(x_14, 0); +lean_inc_ref(x_20); +x_21 = !lean_is_exclusive(x_19); +if (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_19, 0); +x_23 = lean_ctor_get(x_19, 5); +lean_dec(x_23); +x_24 = lean_ctor_get(x_20, 2); +lean_inc(x_24); +lean_dec_ref(x_20); +x_25 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_22, x_13, x_24, x_16); +lean_dec(x_24); +x_26 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Meta_isRflTheorem_spec__0_spec__0___redArg___closed__2; +lean_ctor_set(x_19, 5, x_26); +lean_ctor_set(x_19, 0, x_25); +x_27 = lean_st_ref_set(x_17, x_19); +x_28 = lean_box(0); +x_29 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; +} +else +{ +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; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +x_32 = lean_ctor_get(x_19, 2); +x_33 = lean_ctor_get(x_19, 3); +x_34 = lean_ctor_get(x_19, 4); +x_35 = lean_ctor_get(x_19, 6); +x_36 = lean_ctor_get(x_19, 7); +x_37 = lean_ctor_get(x_19, 8); +lean_inc(x_37); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +x_38 = lean_ctor_get(x_20, 2); +lean_inc(x_38); +lean_dec_ref(x_20); +x_39 = l_Lean_PersistentEnvExtension_addEntry___redArg(x_14, x_30, x_13, x_38, x_16); +lean_dec(x_38); +x_40 = l_Lean_withExporting___at___00Lean_withoutExporting___at___00Lean_Meta_isRflTheorem_spec__0_spec__0___redArg___closed__2; +x_41 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_31); +lean_ctor_set(x_41, 2, x_32); +lean_ctor_set(x_41, 3, x_33); +lean_ctor_set(x_41, 4, x_34); +lean_ctor_set(x_41, 5, x_40); +lean_ctor_set(x_41, 6, x_35); +lean_ctor_set(x_41, 7, x_36); +lean_ctor_set(x_41, 8, x_37); +x_42 = lean_st_ref_set(x_17, x_41); +x_43 = lean_box(0); +x_44 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_44, 0, x_43); +return x_44; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = lean_unbox(x_2); +x_8 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2(x_1, x_7, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec_ref(x_4); +return x_8; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_5, x_4); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_11, 0, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; +x_12 = l_Lean_Environment_header(x_1); +x_13 = lean_ctor_get(x_12, 3); +lean_inc_ref(x_13); +lean_dec_ref(x_12); +x_14 = l_Lean_instInhabitedEffectiveImport_default; +x_15 = lean_array_uget(x_3, x_5); +x_16 = lean_array_get(x_14, x_13, x_15); +lean_dec(x_15); +lean_dec_ref(x_13); +x_17 = lean_ctor_get(x_16, 0); +lean_inc_ref(x_17); +lean_dec(x_16); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +lean_dec_ref(x_17); +x_19 = 0; +lean_inc(x_2); +x_20 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2(x_18, x_19, x_2, x_7, x_8); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; size_t x_22; size_t x_23; +lean_dec_ref(x_20); +x_21 = lean_box(0); +x_22 = 1; +x_23 = lean_usize_add(x_5, x_22); +x_5 = x_23; +x_6 = x_21; +goto _start; +} +else +{ +lean_dec(x_2); +return x_20; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3___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) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_11 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_12 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3(x_1, x_2, x_3, x_10, x_11, x_6, x_7, x_8); +lean_dec(x_8); +lean_dec_ref(x_7); +lean_dec_ref(x_3); +lean_dec_ref(x_1); +return x_12; +} +} +static lean_object* _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = ((lean_object*)(l_Lean_Meta_SimpTheorems_erase___redArg___closed__1)); +x_2 = ((lean_object*)(l_Lean_Meta_SimpTheorems_erase___redArg___closed__0)); +x_3 = l_Std_HashMap_instInhabited(lean_box(0), lean_box(0), x_2, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_6; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_21; +x_6 = lean_st_ref_get(x_4); +x_10 = lean_ctor_get(x_6, 0); +lean_inc_ref(x_10); +lean_dec(x_6); +x_21 = l_Lean_Environment_getModuleIdxFor_x3f(x_10, x_1); +if (lean_obj_tag(x_21) == 0) +{ +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +lean_dec_ref(x_21); +x_23 = l_Lean_Environment_header(x_10); +x_24 = lean_ctor_get(x_23, 3); +lean_inc_ref(x_24); +lean_dec_ref(x_23); +x_25 = lean_array_get_size(x_24); +x_26 = lean_nat_dec_lt(x_22, x_25); +if (x_26 == 0) +{ +lean_dec_ref(x_24); +lean_dec(x_22); +lean_dec_ref(x_10); +lean_dec(x_1); +goto block_9; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_27 = lean_st_ref_get(x_4); +x_28 = lean_ctor_get(x_27, 0); +lean_inc_ref(x_28); +lean_dec(x_27); +x_29 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0; +x_30 = lean_array_fget(x_24, x_22); +lean_dec(x_22); +lean_dec_ref(x_24); +if (x_2 == 0) +{ +lean_dec_ref(x_28); +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_43; +lean_inc(x_1); +x_43 = l_Lean_isMarkedMeta(x_28, x_1); +if (x_43 == 0) +{ +x_31 = x_2; +goto block_42; +} +else +{ +uint8_t x_44; +x_44 = 0; +x_31 = x_44; +goto block_42; +} +} +block_42: +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_30, 0); +lean_inc_ref(x_32); +lean_dec(x_30); +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +lean_dec_ref(x_32); +lean_inc(x_1); +x_34 = l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2(x_33, x_31, x_1, x_3, x_4); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_dec_ref(x_34); +x_35 = l_Lean_indirectModUseExt; +x_36 = lean_box(1); +x_37 = lean_box(0); +lean_inc_ref(x_10); +x_38 = l_Lean_SimplePersistentEnvExtension_getState___redArg(x_29, x_35, x_10, x_36, x_37); +x_39 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___redArg(x_38, x_1); +lean_dec(x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; +x_40 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1; +x_11 = lean_box(0); +x_12 = x_40; +goto block_20; +} +else +{ +lean_object* x_41; +x_41 = lean_ctor_get(x_39, 0); +lean_inc(x_41); +lean_dec_ref(x_39); +x_11 = lean_box(0); +x_12 = x_41; +goto block_20; +} +} +else +{ +lean_dec_ref(x_10); +lean_dec(x_1); +return x_34; +} +} +} +} +block_9: +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_box(0); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +return x_8; +} +block_20: +{ +lean_object* x_13; size_t x_14; size_t x_15; lean_object* x_16; +x_13 = lean_box(0); +x_14 = lean_array_size(x_12); +x_15 = 0; +x_16 = l___private_Init_Data_Array_Basic_0__Array_forIn_x27Unsafe_loop___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__3(x_10, x_1, x_12, x_14, x_15, x_13, x_3, x_4); +lean_dec_ref(x_12); +lean_dec_ref(x_10); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_13); +return x_16; +} +else +{ +lean_object* x_19; +lean_dec(x_16); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_13); +return x_19; +} +} +else +{ +return x_16; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_2); +x_7 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1(x_1, x_6, x_3, x_4); +lean_dec(x_4); +lean_dec_ref(x_3); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = l_Lean_Meta_simpExtensionMapRef; +x_6 = lean_st_ref_get(x_5); +x_7 = l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0___redArg(x_6, x_1); +lean_dec(x_6); +if (lean_obj_tag(x_7) == 1) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_8, 1); +lean_inc_ref(x_9); +lean_dec(x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec_ref(x_9); +x_11 = 1; +x_12 = l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1(x_10, x_11, x_2, x_3); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_12, 0); +lean_dec(x_14); +lean_ctor_set(x_12, 0, x_7); +return x_12; +} +else +{ +lean_object* x_15; +lean_dec(x_12); +x_15 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_15, 0, x_7); +return x_15; +} +} +else +{ +uint8_t x_16; +lean_dec_ref(x_7); +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +return x_12; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_12, 0); +lean_inc(x_17); +lean_dec(x_12); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_17); +return x_18; +} +} +} +else +{ +lean_object* x_19; +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_7); +return x_19; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_getSimpExtension_x3f___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Meta_getSimpExtension_x3f(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +lean_dec(x_1); +return x_5; +} +} LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_Const_get_x3f___at___00Lean_Meta_getSimpExtension_x3f_spec__0(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -22456,6 +23615,82 @@ lean_dec(x_2); return x_4; } } +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___redArg(x_1, x_2); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_isTracingEnabledFor___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__4(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec_ref(x_2); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___redArg(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3(x_1, x_2, x_3); +lean_dec_ref(x_3); +x_5 = lean_box(x_4); +return x_5; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4(lean_object* x_1, lean_object* x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___redArg(x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; uint8_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4(x_1, x_2, x_5, x_4); +lean_dec_ref(x_4); +x_7 = lean_box(x_6); +return x_7; +} +} +LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___redArg(x_2, x_5, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7___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) { +_start: +{ +uint8_t x_7; lean_object* x_8; +x_7 = l_Lean_PersistentHashMap_containsAtAux___at___00Lean_PersistentHashMap_containsAux___at___00Lean_PersistentHashMap_contains___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__3_spec__4_spec__7(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec_ref(x_6); +lean_dec_ref(x_3); +lean_dec_ref(x_2); +x_8 = lean_box(x_7); +return x_8; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_Array_Basic_0__Array_foldlMUnsafe_fold___at___00Lean_Meta_SimpTheorems_addDeclToUnfold_spec__0(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { _start: { @@ -23253,6 +24488,7 @@ lean_object* initialize_Lean_Meta_AppBuilder(uint8_t builtin); lean_object* initialize_Lean_Meta_Eqns(uint8_t builtin); lean_object* initialize_Lean_Meta_WHNF(uint8_t builtin); lean_object* initialize_Init_Data_Format_Macro(uint8_t builtin); +lean_object* initialize_Lean_ExtraModUses(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Meta_Tactic_Simp_SimpTheorems(uint8_t builtin) { lean_object * res; @@ -23279,6 +24515,9 @@ lean_dec_ref(res); res = initialize_Init_Data_Format_Macro(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_ExtraModUses(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_Tactic_Simp_SimpTheorems_838478111____hygCtx___hyg_4_ = _init_l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_Tactic_Simp_SimpTheorems_838478111____hygCtx___hyg_4_(); lean_mark_persistent(l_Lean_Meta_initFn___closed__5_00___x40_Lean_Meta_Tactic_Simp_SimpTheorems_838478111____hygCtx___hyg_4_); if (builtin) {res = l_Lean_Meta_initFn_00___x40_Lean_Meta_Tactic_Simp_SimpTheorems_838478111____hygCtx___hyg_4_(); @@ -23505,7 +24744,26 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Meta_simpExtensionMapRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_simpExtensionMapRef); lean_dec_ref(res); -}l_Lean_Meta_SimpTheoremsArray_addTheorem___closed__0 = _init_l_Lean_Meta_SimpTheoremsArray_addTheorem___closed__0(); +}l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0 = _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__0(); +l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1 = _init_l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at___00__private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2_spec__5___closed__1); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__2); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__6); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__8); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__9); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__11); +l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13 = _init_l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13(); +lean_mark_persistent(l___private_Lean_ExtraModUses_0__Lean_recordExtraModUseCore___at___00Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1_spec__2___closed__13); +l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0 = _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0(); +lean_mark_persistent(l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__0); +l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1 = _init_l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1(); +lean_mark_persistent(l_Lean_recordExtraModUseFromDecl___at___00Lean_Meta_getSimpExtension_x3f_spec__1___closed__1); +l_Lean_Meta_SimpTheoremsArray_addTheorem___closed__0 = _init_l_Lean_Meta_SimpTheoremsArray_addTheorem___closed__0(); lean_mark_persistent(l_Lean_Meta_SimpTheoremsArray_addTheorem___closed__0); return lean_io_result_mk_ok(lean_box(0)); } diff --git a/stage0/stdlib/Std/Data/DTreeMap/Internal/Zipper.c b/stage0/stdlib/Std/Data/DTreeMap/Internal/Zipper.c index dc970cde45..f51b181a1e 100644 --- a/stage0/stdlib/Std/Data/DTreeMap/Internal/Zipper.c +++ b/stage0/stdlib/Std/Data/DTreeMap/Internal/Zipper.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.DTreeMap.Internal.Zipper -// Imports: public import Std.Data.Iterators.Lemmas.Producers.Slice public import Init.Data.Slice public import Std.Data.DTreeMap.Internal.Lemmas public import Init.Data.Iterators.Combinators.FilterMap import Init.Data.Iterators.Lemmas.Combinators.FilterMap import Init.Data.Iterators.Lemmas.Consumers.Collect import Init.Data.Iterators.Lemmas.Consumers.Monadic.Collect import Init.Data.List.Pairwise import Init.Data.List.Sublist import Init.Data.List.TakeDrop +// Imports: public import Std.Data.Iterators.Lemmas.Producers.Slice public import Init.Data.Slice public import Std.Data.DTreeMap.Internal.Lemmas public import Init.Data.Iterators.Combinators.FilterMap import Init.Data.Iterators.Lemmas.Combinators.FilterMap import Init.Data.Iterators.Lemmas.Consumers.Collect import Init.Data.Iterators.Lemmas.Consumers.Monadic.Collect import Init.Data.List.Pairwise import Init.Data.List.Sublist import Init.Data.List.TakeDrop import Init.Data.Slice.InternalLemmas #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -4058,6 +4058,7 @@ lean_object* initialize_Init_Data_Iterators_Lemmas_Consumers_Monadic_Collect(uin lean_object* initialize_Init_Data_List_Pairwise(uint8_t builtin); lean_object* initialize_Init_Data_List_Sublist(uint8_t builtin); lean_object* initialize_Init_Data_List_TakeDrop(uint8_t builtin); +lean_object* initialize_Init_Data_Slice_InternalLemmas(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Std_Data_DTreeMap_Internal_Zipper(uint8_t builtin) { lean_object * res; @@ -4093,6 +4094,9 @@ lean_dec_ref(res); res = initialize_Init_Data_List_TakeDrop(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Slice_InternalLemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers.c index a0ec4ea3fa..a263f02634 100644 --- a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers.c +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Lemmas.Producers -// Imports: public import Std.Data.Iterators.Lemmas.Producers.Monadic public import Std.Data.Iterators.Lemmas.Producers.Array public import Std.Data.Iterators.Lemmas.Producers.Empty public import Std.Data.Iterators.Lemmas.Producers.Repeat public import Std.Data.Iterators.Lemmas.Producers.Range public import Std.Data.Iterators.Lemmas.Producers.Slice +// Imports: public import Std.Data.Iterators.Lemmas.Producers.Monadic public import Std.Data.Iterators.Lemmas.Producers.Array public import Std.Data.Iterators.Lemmas.Producers.Vector public import Std.Data.Iterators.Lemmas.Producers.Empty public import Std.Data.Iterators.Lemmas.Producers.Repeat public import Std.Data.Iterators.Lemmas.Producers.Range public import Std.Data.Iterators.Lemmas.Producers.Slice #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,6 +15,7 @@ extern "C" { #endif lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Vector(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Empty(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Repeat(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Range(uint8_t builtin); @@ -30,6 +31,9 @@ lean_dec_ref(res); res = initialize_Std_Data_Iterators_Lemmas_Producers_Array(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Producers_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Std_Data_Iterators_Lemmas_Producers_Empty(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Array.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Array.c index fd75ff8003..f3fd5e030b 100644 --- a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Array.c +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Array.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Lemmas.Producers.Array -// Imports: public import Std.Data.Iterators.Lemmas.Consumers.Collect public import Std.Data.Iterators.Producers.Array public import Init.Data.Iterators.Producers.List public import Std.Data.Iterators.Lemmas.Producers.Monadic.Array +// Imports: public import Std.Data.Iterators.Lemmas.Consumers.Collect import Std.Data.Iterators.Lemmas.Consumers.Loop import Init.Data.List.TakeDrop public import Std.Data.Iterators.Producers.Array public import Init.Data.Iterators.Producers.List public import Std.Data.Iterators.Lemmas.Producers.Monadic.Array #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,6 +14,8 @@ extern "C" { #endif lean_object* initialize_Std_Data_Iterators_Lemmas_Consumers_Collect(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Consumers_Loop(uint8_t builtin); +lean_object* initialize_Init_Data_List_TakeDrop(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Array(uint8_t builtin); lean_object* initialize_Init_Data_Iterators_Producers_List(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Array(uint8_t builtin); @@ -25,6 +27,12 @@ _G_initialized = true; res = initialize_Std_Data_Iterators_Lemmas_Consumers_Collect(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Consumers_Loop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List_TakeDrop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Std_Data_Iterators_Producers_Array(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic.c index ef416ee0fd..f996f79576 100644 --- a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic.c +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Lemmas.Producers.Monadic -// Imports: public import Std.Data.Iterators.Lemmas.Producers.Monadic.Array public import Std.Data.Iterators.Lemmas.Producers.Monadic.Empty public import Std.Data.Iterators.Lemmas.Producers.Monadic.List +// Imports: public import Std.Data.Iterators.Lemmas.Producers.Monadic.Array public import Std.Data.Iterators.Lemmas.Producers.Monadic.Vector public import Std.Data.Iterators.Lemmas.Producers.Monadic.Empty public import Std.Data.Iterators.Lemmas.Producers.Monadic.List #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,6 +14,7 @@ extern "C" { #endif lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Vector(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Empty(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_List(uint8_t builtin); static bool _G_initialized = false; @@ -24,6 +25,9 @@ _G_initialized = true; res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Array(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Empty(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic/Vector.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic/Vector.c new file mode 100644 index 0000000000..c296feae21 --- /dev/null +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Monadic/Vector.c @@ -0,0 +1,61 @@ +// Lean compiler output +// Module: Std.Data.Iterators.Lemmas.Producers.Monadic.Vector +// Imports: public import Std.Data.Iterators.Lemmas.Producers.Monadic.Array public import Std.Data.Iterators.Producers.Monadic.Vector public import Std.Data.Iterators.Lemmas.Consumers.Monadic public import Std.Data.Iterators.Lemmas.Producers.Monadic.List public import Init.Data.Array.Lemmas import Init.Data.List.Nat.TakeDrop import Init.Data.List.TakeDrop import Init.Omega import Init.Data.Vector.Lemmas +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Vector(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Consumers_Monadic(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_List(uint8_t builtin); +lean_object* initialize_Init_Data_Array_Lemmas(uint8_t builtin); +lean_object* initialize_Init_Data_List_Nat_TakeDrop(uint8_t builtin); +lean_object* initialize_Init_Data_List_TakeDrop(uint8_t builtin); +lean_object* initialize_Init_Omega(uint8_t builtin); +lean_object* initialize_Init_Data_Vector_Lemmas(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Vector(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Array(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Monadic_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Consumers_Monadic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_List(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Array_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List_Nat_TakeDrop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List_TakeDrop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Omega(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Vector_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Slice.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Slice.c index 708312b7a8..b30f46fc5c 100644 --- a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Slice.c +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Slice.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Lemmas.Producers.Slice -// Imports: public import Std.Data.Iterators.Producers.Slice import all Std.Data.Iterators.Producers.Slice public import Init.Data.Slice.Lemmas +// Imports: public import Std.Data.Iterators.Producers.Slice import all Std.Data.Iterators.Producers.Slice public import Init.Data.Slice.Lemmas import Init.Data.Slice.InternalLemmas #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -16,6 +16,7 @@ extern "C" { lean_object* initialize_Std_Data_Iterators_Producers_Slice(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Slice(uint8_t builtin); lean_object* initialize_Init_Data_Slice_Lemmas(uint8_t builtin); +lean_object* initialize_Init_Data_Slice_InternalLemmas(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Slice(uint8_t builtin) { lean_object * res; @@ -30,6 +31,9 @@ lean_dec_ref(res); res = initialize_Init_Data_Slice_Lemmas(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Slice_InternalLemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Vector.c b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Vector.c new file mode 100644 index 0000000000..3db0155d47 --- /dev/null +++ b/stage0/stdlib/Std/Data/Iterators/Lemmas/Producers/Vector.c @@ -0,0 +1,107 @@ +// Lean compiler output +// Module: Std.Data.Iterators.Lemmas.Producers.Vector +// Imports: public import Std.Data.Iterators.Lemmas.Producers.Array public import Std.Data.Iterators.Producers.Vector public import Std.Data.Iterators.Producers.Monadic.Vector import Init.Data.Vector.Lemmas import Std.Data.Iterators.Lemmas.Consumers.Collect import Std.Data.Iterators.Lemmas.Consumers.Loop import Init.Data.List.TakeDrop import Std.Data.Iterators.Lemmas.Producers.Monadic.Vector +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l___private_Std_Data_Iterators_Lemmas_Producers_Vector_0__Std_Iterators_Types_ArrayIterator_instIterator_match__1_splitter___redArg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Std_Data_Iterators_Lemmas_Producers_Vector_0__Std_Iterators_Types_ArrayIterator_instIterator_match__1_splitter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Std_Data_Iterators_Lemmas_Producers_Vector_0__Std_Iterators_Types_ArrayIterator_instIterator_match__1_splitter___redArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +lean_dec(x_4); +lean_dec(x_3); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_dec_ref(x_1); +x_7 = lean_apply_2(x_2, x_5, x_6); +return x_7; +} +case 1: +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_4); +lean_dec(x_2); +x_8 = lean_ctor_get(x_1, 0); +lean_inc(x_8); +lean_dec_ref(x_1); +x_9 = lean_apply_1(x_3, x_8); +return x_9; +} +default: +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_3); +lean_dec(x_2); +x_10 = lean_box(0); +x_11 = lean_apply_1(x_4, x_10); +return x_11; +} +} +} +} +LEAN_EXPORT lean_object* l___private_Std_Data_Iterators_Lemmas_Producers_Vector_0__Std_Iterators_Types_ArrayIterator_instIterator_match__1_splitter(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) { +_start: +{ +lean_object* x_8; +x_8 = l___private_Std_Data_Iterators_Lemmas_Producers_Vector_0__Std_Iterators_Types_ArrayIterator_instIterator_match__1_splitter___redArg(x_4, x_5, x_6, x_7); +return x_8; +} +} +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Vector(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Vector(uint8_t builtin); +lean_object* initialize_Init_Data_Vector_Lemmas(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Consumers_Collect(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Consumers_Loop(uint8_t builtin); +lean_object* initialize_Init_Data_List_TakeDrop(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Vector(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Lemmas_Producers_Vector(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Std_Data_Iterators_Lemmas_Producers_Array(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Monadic_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_Vector_Lemmas(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Consumers_Collect(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Consumers_Loop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Data_List_TakeDrop(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Lemmas_Producers_Monadic_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Std/Data/Iterators/Producers.c b/stage0/stdlib/Std/Data/Iterators/Producers.c index 22f4ac52e8..38b9561412 100644 --- a/stage0/stdlib/Std/Data/Iterators/Producers.c +++ b/stage0/stdlib/Std/Data/Iterators/Producers.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Producers -// Imports: public import Std.Data.Iterators.Producers.Monadic public import Std.Data.Iterators.Producers.Array public import Std.Data.Iterators.Producers.Empty public import Std.Data.Iterators.Producers.Range public import Std.Data.Iterators.Producers.Repeat public import Std.Data.Iterators.Producers.Slice +// Imports: public import Std.Data.Iterators.Producers.Monadic public import Std.Data.Iterators.Producers.Array public import Std.Data.Iterators.Producers.Vector public import Std.Data.Iterators.Producers.Empty public import Std.Data.Iterators.Producers.Range public import Std.Data.Iterators.Producers.Repeat public import Std.Data.Iterators.Producers.Slice #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -15,6 +15,7 @@ extern "C" { #endif lean_object* initialize_Std_Data_Iterators_Producers_Monadic(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Vector(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Empty(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Range(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Repeat(uint8_t builtin); @@ -30,6 +31,9 @@ lean_dec_ref(res); res = initialize_Std_Data_Iterators_Producers_Array(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Std_Data_Iterators_Producers_Empty(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Std/Data/Iterators/Producers/Monadic.c b/stage0/stdlib/Std/Data/Iterators/Producers/Monadic.c index 4bb7901e48..bd5571e5d2 100644 --- a/stage0/stdlib/Std/Data/Iterators/Producers/Monadic.c +++ b/stage0/stdlib/Std/Data/Iterators/Producers/Monadic.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Std.Data.Iterators.Producers.Monadic -// Imports: public import Std.Data.Iterators.Producers.Monadic.Array public import Std.Data.Iterators.Producers.Monadic.Empty +// Imports: public import Std.Data.Iterators.Producers.Monadic.Array public import Std.Data.Iterators.Producers.Monadic.Vector public import Std.Data.Iterators.Producers.Monadic.Empty #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,6 +14,7 @@ extern "C" { #endif lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Array(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Vector(uint8_t builtin); lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Empty(uint8_t builtin); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Producers_Monadic(uint8_t builtin) { @@ -23,6 +24,9 @@ _G_initialized = true; res = initialize_Std_Data_Iterators_Producers_Monadic_Array(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Monadic_Vector(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Std_Data_Iterators_Producers_Monadic_Empty(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Std/Data/Iterators/Producers/Monadic/Vector.c b/stage0/stdlib/Std/Data/Iterators/Producers/Monadic/Vector.c new file mode 100644 index 0000000000..2dad77c124 --- /dev/null +++ b/stage0/stdlib/Std/Data/Iterators/Producers/Monadic/Vector.c @@ -0,0 +1,101 @@ +// Lean compiler output +// Module: Std.Data.Iterators.Producers.Monadic.Vector +// Imports: public import Init.Data.Vector.Basic public import Std.Data.Iterators.Producers.Monadic.Array +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterM___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_5); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Vector_iterFromIdxM___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Vector_iterFromIdxM(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Vector_iterM___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Vector_iterM(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_3); +lean_ctor_set(x_7, 1, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Vector_iterM___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Vector_iterM(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +return x_6; +} +} +lean_object* initialize_Init_Data_Vector_Basic(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Array(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Producers_Monadic_Vector(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_Vector_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Monadic_Array(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Std/Data/Iterators/Producers/Vector.c b/stage0/stdlib/Std/Data/Iterators/Producers/Vector.c new file mode 100644 index 0000000000..18a89c4359 --- /dev/null +++ b/stage0/stdlib/Std/Data/Iterators/Producers/Vector.c @@ -0,0 +1,99 @@ +// Lean compiler output +// Module: Std.Data.Iterators.Producers.Vector +// Imports: public import Init.Data.Vector.Basic public import Std.Data.Iterators.Producers.Array +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +LEAN_EXPORT lean_object* l_Vector_iterFromIdx___redArg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdx(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdx___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iter___redArg(lean_object*); +LEAN_EXPORT lean_object* l_Vector_iter(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iter___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Vector_iterFromIdx___redArg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Vector_iterFromIdx(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_3); +lean_ctor_set(x_5, 1, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Vector_iterFromIdx___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Vector_iterFromIdx(x_1, x_2, x_3, x_4); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Vector_iter___redArg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Vector_iter(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_3); +lean_ctor_set(x_5, 1, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Vector_iter___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Vector_iter(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* initialize_Init_Data_Vector_Basic(uint8_t builtin); +lean_object* initialize_Std_Data_Iterators_Producers_Array(uint8_t builtin); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Std_Data_Iterators_Producers_Vector(uint8_t builtin) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Data_Vector_Basic(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Std_Data_Iterators_Producers_Array(builtin); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Std/Tactic/Do/Syntax.c b/stage0/stdlib/Std/Tactic/Do/Syntax.c index 80df367210..9c4f300ef2 100644 --- a/stage0/stdlib/Std/Tactic/Do/Syntax.c +++ b/stage0/stdlib/Std/Tactic/Do/Syntax.c @@ -38,66 +38,27 @@ static const lean_string_object l_Lean_Parser_Attr_spec___closed__8_value = {.m_ static const lean_object* l_Lean_Parser_Attr_spec___closed__8 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__8_value; static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__8_value),LEAN_SCALAR_PTR_LITERAL(233, 141, 154, 50, 143, 135, 42, 252)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__9 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__9_value; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "orelse"}; +static const lean_string_object l_Lean_Parser_Attr_spec___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "ppSpace"}; static const lean_object* l_Lean_Parser_Attr_spec___closed__10 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__10_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__10_value),LEAN_SCALAR_PTR_LITERAL(78, 76, 4, 51, 251, 212, 116, 5)}}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__10_value),LEAN_SCALAR_PTR_LITERAL(207, 47, 58, 43, 30, 240, 125, 246)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__11 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__11_value; -extern lean_object* l_Lean_Parser_Tactic_simpPost; -extern lean_object* l_Lean_Parser_Tactic_simpPre; -static lean_object* l_Lean_Parser_Attr_spec___closed__12; -static lean_object* l_Lean_Parser_Attr_spec___closed__13; -static lean_object* l_Lean_Parser_Attr_spec___closed__14; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "patternIgnore"}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__11_value)}}; +static const lean_object* l_Lean_Parser_Attr_spec___closed__12 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__12_value; +static const lean_string_object l_Lean_Parser_Attr_spec___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "prio"}; +static const lean_object* l_Lean_Parser_Attr_spec___closed__13 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__13_value; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__13_value),LEAN_SCALAR_PTR_LITERAL(122, 247, 65, 238, 243, 154, 137, 247)}}; +static const lean_object* l_Lean_Parser_Attr_spec___closed__14 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__14_value; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__15_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 7}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__14_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__15 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__15_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__15_value),LEAN_SCALAR_PTR_LITERAL(195, 83, 213, 191, 208, 4, 123, 240)}}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__16_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__6_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__12_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__15_value)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__16 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__16_value; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 2, .m_data = "← "}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__17_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__9_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__16_value)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__17 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__17_value; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "token"}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__18_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__6_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__7_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__17_value)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__18 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value; -lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__19_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__19_value_aux_0),((lean_object*)&l_Lean_Parser_Attr_spec___closed__17_value),LEAN_SCALAR_PTR_LITERAL(172, 232, 253, 81, 132, 83, 19, 73)}}; +static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__19_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 3}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__4_value),((lean_object*)(((size_t)(1022) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value)}}; static const lean_object* l_Lean_Parser_Attr_spec___closed__19 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__19_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__20_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 5}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__17_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__20 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__20_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__21_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__17_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__19_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__20_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__21 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__21_value; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__22_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 4, .m_capacity = 4, .m_length = 3, .m_data = "<- "}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__22 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__22_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__23_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__23_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__23_value_aux_0),((lean_object*)&l_Lean_Parser_Attr_spec___closed__22_value),LEAN_SCALAR_PTR_LITERAL(246, 23, 95, 201, 106, 68, 202, 153)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__23 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__23_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__24_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 5}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__22_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__24 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__24_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__25_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__22_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__23_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__24_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__25 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__25_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__26_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__11_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__21_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__25_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__26 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__26_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__27_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__16_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__26_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__27 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__27_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__28_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__9_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__27_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__28 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__28_value; -static lean_object* l_Lean_Parser_Attr_spec___closed__29; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__30_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 8, .m_capacity = 8, .m_length = 7, .m_data = "ppSpace"}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__30 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__30_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__31_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__30_value),LEAN_SCALAR_PTR_LITERAL(207, 47, 58, 43, 30, 240, 125, 246)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__31 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__31_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__32_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 0, .m_other = 1, .m_tag = 0}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__31_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__32 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__32_value; -static const lean_string_object l_Lean_Parser_Attr_spec___closed__33_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 5, .m_capacity = 5, .m_length = 4, .m_data = "prio"}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__33 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__33_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__34_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__33_value),LEAN_SCALAR_PTR_LITERAL(122, 247, 65, 238, 243, 154, 137, 247)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__34 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__34_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__35_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 7}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__34_value),((lean_object*)(((size_t)(0) << 1) | 1))}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__35 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__35_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__36_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__6_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__32_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__35_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__36 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__36_value; -static const lean_ctor_object l_Lean_Parser_Attr_spec___closed__37_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 0, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__9_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__36_value)}}; -static const lean_object* l_Lean_Parser_Attr_spec___closed__37 = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__37_value; -static lean_object* l_Lean_Parser_Attr_spec___closed__38; -static lean_object* l_Lean_Parser_Attr_spec___closed__39; -LEAN_EXPORT lean_object* l_Lean_Parser_Attr_spec; +LEAN_EXPORT const lean_object* l_Lean_Parser_Attr_spec = (const lean_object*)&l_Lean_Parser_Attr_spec___closed__19_value; static const lean_string_object l_Lean_Parser_Tactic_massumption___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "Tactic"}; static const lean_object* l_Lean_Parser_Tactic_massumption___closed__0 = (const lean_object*)&l_Lean_Parser_Tactic_massumption___closed__0_value; static const lean_string_object l_Lean_Parser_Tactic_massumption___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "massumption"}; @@ -449,7 +410,7 @@ static const lean_string_object l_Lean_Parser_Tactic_mrenameI___closed__4_value static const lean_object* l_Lean_Parser_Tactic_mrenameI___closed__4 = (const lean_object*)&l_Lean_Parser_Tactic_mrenameI___closed__4_value; static const lean_ctor_object l_Lean_Parser_Tactic_mrenameI___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Tactic_mrenameI___closed__4_value),LEAN_SCALAR_PTR_LITERAL(55, 136, 52, 6, 12, 19, 78, 239)}}; static const lean_object* l_Lean_Parser_Tactic_mrenameI___closed__5 = (const lean_object*)&l_Lean_Parser_Tactic_mrenameI___closed__5_value; -static const lean_ctor_object l_Lean_Parser_Tactic_mrenameI___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__6_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__32_value),((lean_object*)&l_Lean_Parser_Tactic_mclear___closed__5_value)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_mrenameI___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__6_value),((lean_object*)&l_Lean_Parser_Attr_spec___closed__12_value),((lean_object*)&l_Lean_Parser_Tactic_mclear___closed__5_value)}}; static const lean_object* l_Lean_Parser_Tactic_mrenameI___closed__6 = (const lean_object*)&l_Lean_Parser_Tactic_mrenameI___closed__6_value; extern lean_object* l_Lean_binderIdent; static lean_object* l_Lean_Parser_Tactic_mrenameI___closed__7; @@ -913,6 +874,7 @@ static const lean_string_object l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syn static const lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120 = (const lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120_value; static const lean_string_object l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 9, .m_capacity = 9, .m_length = 8, .m_data = "down_ite"}; static const lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121 = (const lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121_value; +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static const lean_ctor_object l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__120_value),LEAN_SCALAR_PTR_LITERAL(14, 162, 24, 1, 186, 170, 9, 57)}}; static const lean_ctor_object l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122_value_aux_0),((lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__121_value),LEAN_SCALAR_PTR_LITERAL(17, 61, 132, 74, 6, 181, 81, 222)}}; static const lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122 = (const lean_object*)&l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mleave__1___closed__122_value; @@ -1995,29 +1957,35 @@ static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__1_valu static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__1_value_aux_2 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__1_value_aux_1),((lean_object*)&l_Lean_Parser_Tactic_massumption___closed__0_value),LEAN_SCALAR_PTR_LITERAL(166, 58, 35, 182, 187, 130, 147, 254)}}; static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__1_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__1_value_aux_2),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__0_value),LEAN_SCALAR_PTR_LITERAL(113, 87, 251, 76, 123, 116, 93, 232)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__1 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__1_value; -static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "invariants "}; +static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__2_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 7, .m_capacity = 7, .m_length = 6, .m_data = "orelse"}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__2 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__2_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__3_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__3_value_aux_0),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__2_value),LEAN_SCALAR_PTR_LITERAL(252, 45, 21, 37, 250, 87, 14, 102)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__3_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__2_value),LEAN_SCALAR_PTR_LITERAL(78, 76, 4, 51, 251, 212, 116, 5)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__3 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__3_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 8, .m_other = 1, .m_tag = 6}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__2_value),LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__4_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 12, .m_capacity = 12, .m_length = 11, .m_data = "invariants "}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__4 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__4_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__2_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__3_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__4_value)}}; +static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__5_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 6, .m_capacity = 6, .m_length = 5, .m_data = "token"}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__5 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__5_value; -static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "invariants\? "}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__6_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__5_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__6_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value_aux_0),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__4_value),LEAN_SCALAR_PTR_LITERAL(252, 45, 21, 37, 250, 87, 14, 102)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__6 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__7_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__18_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__7_value_aux_0),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value),LEAN_SCALAR_PTR_LITERAL(241, 40, 134, 186, 103, 193, 43, 220)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__7_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 8, .m_other = 1, .m_tag = 6}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__4_value),LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__7 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__7_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 8, .m_other = 1, .m_tag = 6}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value),LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__8_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__4_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__7_value)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__8 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__8_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__6_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__7_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__8_value)}}; +static const lean_string_object l_Lean_Parser_Tactic_invariantsKW___closed__9_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 13, .m_capacity = 13, .m_length = 12, .m_data = "invariants\? "}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__9 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__9_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Attr_spec___closed__11_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__5_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__9_value)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__10_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__5_value),LEAN_SCALAR_PTR_LITERAL(89, 149, 26, 37, 31, 104, 89, 130)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__10_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__10_value_aux_0),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__9_value),LEAN_SCALAR_PTR_LITERAL(241, 40, 134, 186, 103, 193, 43, 220)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__10 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__10_value; -static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__0_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__1_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__10_value)}}; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__11_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*1 + 8, .m_other = 1, .m_tag = 6}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__9_value),LEAN_SCALAR_PTR_LITERAL(0, 0, 0, 0, 0, 0, 0, 0)}}; static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__11 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__11_value; -LEAN_EXPORT const lean_object* l_Lean_Parser_Tactic_invariantsKW = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__11_value; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__12_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__9_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__10_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__11_value)}}; +static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__12 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__12_value; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__13_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 2}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__3_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__8_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__12_value)}}; +static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__13 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__13_value; +static const lean_ctor_object l_Lean_Parser_Tactic_invariantsKW___closed__14_value = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*3 + 0, .m_other = 3, .m_tag = 9}, .m_objs = {((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__0_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__1_value),((lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__13_value)}}; +static const lean_object* l_Lean_Parser_Tactic_invariantsKW___closed__14 = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__14_value; +LEAN_EXPORT const lean_object* l_Lean_Parser_Tactic_invariantsKW = (const lean_object*)&l_Lean_Parser_Tactic_invariantsKW___closed__14_value; static const lean_string_object l_Lean_Parser_Tactic_invariantAlts___closed__0_value = {.m_header = {.m_rc = 0, .m_cs_sz = 0, .m_other = 0, .m_tag = 249}, .m_size = 14, .m_capacity = 14, .m_length = 13, .m_data = "invariantAlts"}; static const lean_object* l_Lean_Parser_Tactic_invariantAlts___closed__0 = (const lean_object*)&l_Lean_Parser_Tactic_invariantAlts___closed__0_value; static const lean_ctor_object l_Lean_Parser_Tactic_invariantAlts___closed__1_value_aux_0 = {.m_header = {.m_rc = 0, .m_cs_sz = sizeof(lean_ctor_object) + sizeof(void*)*2 + 8, .m_other = 2, .m_tag = 1}, .m_objs = {((lean_object*)(((size_t)(0) << 1) | 1)),((lean_object*)&l_Lean_Parser_Attr_spec___closed__0_value),LEAN_SCALAR_PTR_LITERAL(70, 193, 83, 126, 233, 67, 208, 165)}}; @@ -2137,96 +2105,6 @@ static lean_object* l_Lean_Parser_Tactic_mvcgenHint___closed__4; static lean_object* l_Lean_Parser_Tactic_mvcgenHint___closed__5; static lean_object* l_Lean_Parser_Tactic_mvcgenHint___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_mvcgenHint; -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_simpPost; -x_2 = l_Lean_Parser_Tactic_simpPre; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__11)); -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Attr_spec___closed__12; -x_2 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__9)); -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Attr_spec___closed__13; -x_2 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__7)); -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__6)); -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__28)); -x_2 = l_Lean_Parser_Attr_spec___closed__14; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__6)); -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__38() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__37)); -x_2 = l_Lean_Parser_Attr_spec___closed__29; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__6)); -x_4 = lean_alloc_ctor(2, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec___closed__39() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Attr_spec___closed__38; -x_2 = lean_unsigned_to_nat(1022u); -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__4)); -x_4 = lean_alloc_ctor(3, 3, 0); -lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_1); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Attr_spec() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Attr_spec___closed__39; -return x_1; -} -} LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Std__Tactic__Do__Syntax______macroRules__Lean__Parser__Tactic__mclearError__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -8340,7 +8218,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_invariantCaseAlt; x_2 = l_Lean_Parser_Tactic_invariantDotAlt; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__11)); +x_3 = ((lean_object*)(l_Lean_Parser_Tactic_invariantsKW___closed__3)); x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -8596,7 +8474,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_simpLemma; x_2 = l_Lean_Parser_Tactic_simpErase; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__11)); +x_3 = ((lean_object*)(l_Lean_Parser_Tactic_invariantsKW___closed__3)); x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -8610,7 +8488,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_mvcgen___closed__8; x_2 = l_Lean_Parser_Tactic_simpStar; -x_3 = ((lean_object*)(l_Lean_Parser_Attr_spec___closed__11)); +x_3 = ((lean_object*)(l_Lean_Parser_Tactic_invariantsKW___closed__3)); x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_3); lean_ctor_set(x_4, 1, x_2); @@ -8841,20 +8719,6 @@ lean_dec_ref(res); res = initialize_Init_Data_Array_GetLit(builtin); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Attr_spec___closed__12 = _init_l_Lean_Parser_Attr_spec___closed__12(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__12); -l_Lean_Parser_Attr_spec___closed__13 = _init_l_Lean_Parser_Attr_spec___closed__13(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__13); -l_Lean_Parser_Attr_spec___closed__14 = _init_l_Lean_Parser_Attr_spec___closed__14(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__14); -l_Lean_Parser_Attr_spec___closed__29 = _init_l_Lean_Parser_Attr_spec___closed__29(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__29); -l_Lean_Parser_Attr_spec___closed__38 = _init_l_Lean_Parser_Attr_spec___closed__38(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__38); -l_Lean_Parser_Attr_spec___closed__39 = _init_l_Lean_Parser_Attr_spec___closed__39(); -lean_mark_persistent(l_Lean_Parser_Attr_spec___closed__39); -l_Lean_Parser_Attr_spec = _init_l_Lean_Parser_Attr_spec(); -lean_mark_persistent(l_Lean_Parser_Attr_spec); l_Lean_Parser_Tactic_mrenameI___closed__7 = _init_l_Lean_Parser_Tactic_mrenameI___closed__7(); lean_mark_persistent(l_Lean_Parser_Tactic_mrenameI___closed__7); l_Lean_Parser_Tactic_mrenameI___closed__8 = _init_l_Lean_Parser_Tactic_mrenameI___closed__8(); diff --git a/stage0/stdlib/Std/Time/Date/PlainDate.c b/stage0/stdlib/Std/Time/Date/PlainDate.c index e9acc16f71..5ee5875ddc 100644 --- a/stage0/stdlib/Std/Time/Date/PlainDate.c +++ b/stage0/stdlib/Std/Time/Date/PlainDate.c @@ -1296,25 +1296,25 @@ goto block_111; block_10: { lean_object* x_6; uint8_t x_7; -x_6 = l_Std_Time_Month_Ordinal_days(x_5, x_4); -x_7 = lean_int_dec_lt(x_6, x_3); +x_6 = l_Std_Time_Month_Ordinal_days(x_5, x_3); +x_7 = lean_int_dec_lt(x_6, x_2); if (x_7 == 0) { lean_object* x_8; lean_dec(x_6); x_8 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_8, 0, x_2); -lean_ctor_set(x_8, 1, x_4); -lean_ctor_set(x_8, 2, x_3); +lean_ctor_set(x_8, 0, x_4); +lean_ctor_set(x_8, 1, x_3); +lean_ctor_set(x_8, 2, x_2); return x_8; } else { lean_object* x_9; -lean_dec(x_3); +lean_dec(x_2); x_9 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_9, 0, x_2); -lean_ctor_set(x_9, 1, x_4); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_3); lean_ctor_set(x_9, 2, x_6); return x_9; } @@ -1322,12 +1322,12 @@ return x_9; block_20: { lean_object* x_18; uint8_t x_19; -x_18 = lean_int_mod(x_15, x_16); -lean_dec(x_16); +x_18 = lean_int_mod(x_17, x_15); +lean_dec(x_15); x_19 = lean_int_dec_eq(x_18, x_13); lean_dec(x_18); -x_2 = x_15; -x_3 = x_14; +x_2 = x_14; +x_3 = x_16; x_4 = x_17; x_5 = x_19; goto block_10; @@ -1335,16 +1335,16 @@ goto block_10; block_31: { lean_object* x_27; uint8_t x_28; -x_27 = lean_int_mod(x_21, x_25); +x_27 = lean_int_mod(x_24, x_25); lean_dec(x_25); x_28 = lean_int_dec_eq(x_27, x_13); lean_dec(x_27); if (x_28 == 0) { lean_dec(x_23); -lean_dec(x_22); -x_2 = x_21; -x_3 = x_26; +lean_dec(x_21); +x_2 = x_26; +x_3 = x_22; x_4 = x_24; x_5 = x_28; goto block_10; @@ -1352,8 +1352,8 @@ goto block_10; else { lean_object* x_29; uint8_t x_30; -x_29 = lean_int_mod(x_21, x_22); -lean_dec(x_22); +x_29 = lean_int_mod(x_24, x_23); +lean_dec(x_23); x_30 = lean_int_dec_eq(x_29, x_13); lean_dec(x_29); if (x_30 == 0) @@ -1362,15 +1362,15 @@ if (x_28 == 0) { x_14 = x_26; x_15 = x_21; -x_16 = x_23; +x_16 = x_22; x_17 = x_24; goto block_20; } else { -lean_dec(x_23); -x_2 = x_21; -x_3 = x_26; +lean_dec(x_21); +x_2 = x_26; +x_3 = x_22; x_4 = x_24; x_5 = x_28; goto block_10; @@ -1380,7 +1380,7 @@ else { x_14 = x_26; x_15 = x_21; -x_16 = x_23; +x_16 = x_22; x_17 = x_24; goto block_20; } @@ -1389,43 +1389,43 @@ goto block_20; block_42: { uint8_t x_39; -x_39 = lean_int_dec_le(x_35, x_32); +x_39 = lean_int_dec_le(x_37, x_33); if (x_39 == 0) { -lean_dec(x_32); -x_21 = x_33; -x_22 = x_34; -x_23 = x_36; -x_24 = x_38; -x_25 = x_37; -x_26 = x_35; +lean_dec(x_33); +x_21 = x_32; +x_22 = x_38; +x_23 = x_35; +x_24 = x_34; +x_25 = x_36; +x_26 = x_37; goto block_31; } else { lean_object* x_40; uint8_t x_41; -lean_dec(x_35); +lean_dec(x_37); x_40 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__1; -x_41 = lean_int_dec_le(x_32, x_40); +x_41 = lean_int_dec_le(x_33, x_40); if (x_41 == 0) { -lean_dec(x_32); -x_21 = x_33; -x_22 = x_34; -x_23 = x_36; -x_24 = x_38; -x_25 = x_37; +lean_dec(x_33); +x_21 = x_32; +x_22 = x_38; +x_23 = x_35; +x_24 = x_34; +x_25 = x_36; x_26 = x_40; goto block_31; } else { -x_21 = x_33; -x_22 = x_34; -x_23 = x_36; -x_24 = x_38; -x_25 = x_37; -x_26 = x_32; +x_21 = x_32; +x_22 = x_38; +x_23 = x_35; +x_24 = x_34; +x_25 = x_36; +x_26 = x_33; goto block_31; } } @@ -1433,49 +1433,49 @@ goto block_31; block_55: { lean_object* x_51; uint8_t x_52; -x_51 = lean_int_add(x_48, x_50); +x_51 = lean_int_add(x_43, x_50); lean_dec(x_50); -lean_dec(x_48); -x_52 = lean_int_dec_le(x_47, x_44); +lean_dec(x_43); +x_52 = lean_int_dec_le(x_48, x_49); if (x_52 == 0) { -lean_dec(x_44); -lean_inc(x_47); -x_32 = x_43; -x_33 = x_51; -x_34 = x_45; -x_35 = x_47; -x_36 = x_46; -x_37 = x_49; -x_38 = x_47; +lean_dec(x_49); +lean_inc(x_48); +x_32 = x_44; +x_33 = x_45; +x_34 = x_51; +x_35 = x_46; +x_36 = x_47; +x_37 = x_48; +x_38 = x_48; goto block_42; } else { lean_object* x_53; uint8_t x_54; x_53 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__2; -x_54 = lean_int_dec_le(x_44, x_53); +x_54 = lean_int_dec_le(x_49, x_53); if (x_54 == 0) { -lean_dec(x_44); -x_32 = x_43; -x_33 = x_51; -x_34 = x_45; -x_35 = x_47; -x_36 = x_46; -x_37 = x_49; +lean_dec(x_49); +x_32 = x_44; +x_33 = x_45; +x_34 = x_51; +x_35 = x_46; +x_36 = x_47; +x_37 = x_48; x_38 = x_53; goto block_42; } else { -x_32 = x_43; -x_33 = x_51; -x_34 = x_45; -x_35 = x_47; -x_36 = x_46; -x_37 = x_49; -x_38 = x_44; +x_32 = x_44; +x_33 = x_45; +x_34 = x_51; +x_35 = x_46; +x_36 = x_47; +x_37 = x_48; +x_38 = x_49; goto block_42; } } @@ -1483,34 +1483,34 @@ goto block_42; block_67: { lean_object* x_65; uint8_t x_66; -x_65 = lean_int_add(x_57, x_64); +x_65 = lean_int_add(x_60, x_64); lean_dec(x_64); -lean_dec(x_57); -x_66 = lean_int_dec_le(x_65, x_58); -lean_dec(x_58); +lean_dec(x_60); +x_66 = lean_int_dec_le(x_65, x_62); +lean_dec(x_62); if (x_66 == 0) { x_43 = x_56; -x_44 = x_65; -x_45 = x_59; -x_46 = x_61; -x_47 = x_60; -x_48 = x_62; -x_49 = x_63; +x_44 = x_57; +x_45 = x_58; +x_46 = x_59; +x_47 = x_61; +x_48 = x_63; +x_49 = x_65; x_50 = x_13; goto block_55; } else { -lean_inc(x_60); +lean_inc(x_63); x_43 = x_56; -x_44 = x_65; -x_45 = x_59; -x_46 = x_61; -x_47 = x_60; -x_48 = x_62; -x_49 = x_63; -x_50 = x_60; +x_44 = x_57; +x_45 = x_58; +x_46 = x_59; +x_47 = x_61; +x_48 = x_63; +x_49 = x_65; +x_50 = x_63; goto block_55; } } @@ -1586,14 +1586,14 @@ if (x_108 == 0) { lean_object* x_109; x_109 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__12; -x_56 = x_106; -x_57 = x_100; -x_58 = x_97; +x_56 = x_86; +x_57 = x_84; +x_58 = x_106; x_59 = x_91; -x_60 = x_105; -x_61 = x_84; -x_62 = x_86; -x_63 = x_88; +x_60 = x_100; +x_61 = x_88; +x_62 = x_97; +x_63 = x_105; x_64 = x_109; goto block_67; } @@ -1601,14 +1601,14 @@ else { lean_object* x_110; x_110 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__13; -x_56 = x_106; -x_57 = x_100; -x_58 = x_97; +x_56 = x_86; +x_57 = x_84; +x_58 = x_106; x_59 = x_91; -x_60 = x_105; -x_61 = x_84; -x_62 = x_86; -x_63 = x_88; +x_60 = x_100; +x_61 = x_88; +x_62 = x_97; +x_63 = x_105; x_64 = x_110; goto block_67; } @@ -1885,9 +1885,9 @@ lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean x_11 = lean_int_add(x_3, x_10); lean_dec(x_10); lean_dec(x_3); -x_12 = lean_int_mul(x_7, x_11); +x_12 = lean_int_mul(x_8, x_11); lean_dec(x_11); -lean_dec(x_7); +lean_dec(x_8); x_13 = lean_int_add(x_12, x_5); lean_dec(x_12); x_14 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__8; @@ -1899,15 +1899,15 @@ lean_dec(x_15); x_17 = lean_int_sub(x_16, x_6); lean_dec(x_16); x_18 = l_Std_Time_PlainDate_ofDaysSinceUNIXEpoch___closed__7; -x_19 = lean_int_mul(x_8, x_18); +x_19 = lean_int_mul(x_7, x_18); x_20 = l_Std_Time_PlainDate_ofYearMonthDayClip___closed__0; -x_21 = lean_int_div(x_8, x_20); +x_21 = lean_int_div(x_7, x_20); x_22 = lean_int_add(x_19, x_21); lean_dec(x_21); lean_dec(x_19); x_23 = l_Std_Time_PlainDate_ofYearMonthDayClip___closed__2; -x_24 = lean_int_div(x_8, x_23); -lean_dec(x_8); +x_24 = lean_int_div(x_7, x_23); +lean_dec(x_7); x_25 = lean_int_sub(x_22, x_24); lean_dec(x_24); lean_dec(x_22); @@ -1941,8 +1941,8 @@ if (x_40 == 0) { lean_object* x_41; x_41 = l_Std_Time_instReprPlainDate_repr___redArg___closed__24; -x_7 = x_39; -x_8 = x_38; +x_7 = x_38; +x_8 = x_39; x_9 = x_36; x_10 = x_41; goto block_32; @@ -1951,8 +1951,8 @@ else { lean_object* x_42; x_42 = l_Std_Time_PlainDate_toDaysSinceUNIXEpoch___closed__0; -x_7 = x_39; -x_8 = x_38; +x_7 = x_38; +x_8 = x_39; x_9 = x_36; x_10 = x_42; goto block_32; diff --git a/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c b/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c index f41f19663c..84ecab0bce 100644 --- a/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c +++ b/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c @@ -1648,9 +1648,9 @@ block_9: lean_object* x_7; lean_object* x_8; x_7 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_7, 0, x_5); -lean_ctor_set(x_7, 1, x_4); +lean_ctor_set(x_7, 1, x_3); lean_ctor_set(x_7, 2, x_2); -lean_ctor_set(x_7, 3, x_3); +lean_ctor_set(x_7, 3, x_4); x_8 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_8, 0, x_6); lean_ctor_set(x_8, 1, x_7); @@ -1659,35 +1659,35 @@ return x_8; block_22: { lean_object* x_18; uint8_t x_19; -x_18 = l_Std_Time_Month_Ordinal_days(x_17, x_12); -x_19 = lean_int_dec_lt(x_18, x_15); +x_18 = l_Std_Time_Month_Ordinal_days(x_17, x_11); +x_19 = lean_int_dec_lt(x_18, x_12); if (x_19 == 0) { lean_object* x_20; lean_dec(x_18); x_20 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_20, 0, x_13); -lean_ctor_set(x_20, 1, x_12); -lean_ctor_set(x_20, 2, x_15); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_20, 1, x_11); +lean_ctor_set(x_20, 2, x_12); x_2 = x_10; -x_3 = x_11; -x_4 = x_14; -x_5 = x_16; +x_3 = x_13; +x_4 = x_16; +x_5 = x_15; x_6 = x_20; goto block_9; } else { lean_object* x_21; -lean_dec(x_15); +lean_dec(x_12); x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_13); -lean_ctor_set(x_21, 1, x_12); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_11); lean_ctor_set(x_21, 2, x_18); x_2 = x_10; -x_3 = x_11; -x_4 = x_14; -x_5 = x_16; +x_3 = x_13; +x_4 = x_16; +x_5 = x_15; x_6 = x_21; goto block_9; } @@ -1695,17 +1695,17 @@ goto block_9; block_39: { lean_object* x_37; uint8_t x_38; -x_37 = lean_int_mod(x_32, x_28); -x_38 = lean_int_dec_eq(x_37, x_35); -lean_dec(x_35); +x_37 = lean_int_mod(x_34, x_28); +x_38 = lean_int_dec_eq(x_37, x_32); +lean_dec(x_32); lean_dec(x_37); -x_10 = x_29; -x_11 = x_31; -x_12 = x_30; -x_13 = x_32; +x_10 = x_30; +x_11 = x_29; +x_12 = x_31; +x_13 = x_33; x_14 = x_34; -x_15 = x_33; -x_16 = x_36; +x_15 = x_36; +x_16 = x_35; x_17 = x_38; goto block_22; } @@ -1713,19 +1713,19 @@ block_57: { lean_object* x_52; lean_object* x_53; uint8_t x_54; x_52 = lean_int_mod(x_48, x_43); -x_53 = lean_nat_to_int(x_44); +x_53 = lean_nat_to_int(x_47); x_54 = lean_int_dec_eq(x_52, x_53); lean_dec(x_52); if (x_54 == 0) { lean_dec(x_53); x_10 = x_45; -x_11 = x_47; -x_12 = x_46; -x_13 = x_48; -x_14 = x_49; -x_15 = x_51; -x_16 = x_50; +x_11 = x_44; +x_12 = x_51; +x_13 = x_46; +x_14 = x_48; +x_15 = x_50; +x_16 = x_49; x_17 = x_54; goto block_22; } @@ -1739,13 +1739,13 @@ if (x_56 == 0) { if (x_54 == 0) { -x_29 = x_45; -x_30 = x_46; -x_31 = x_47; -x_32 = x_48; -x_33 = x_51; -x_34 = x_49; -x_35 = x_53; +x_29 = x_44; +x_30 = x_45; +x_31 = x_51; +x_32 = x_53; +x_33 = x_46; +x_34 = x_48; +x_35 = x_49; x_36 = x_50; goto block_39; } @@ -1753,25 +1753,25 @@ else { lean_dec(x_53); x_10 = x_45; -x_11 = x_47; -x_12 = x_46; -x_13 = x_48; -x_14 = x_49; -x_15 = x_51; -x_16 = x_50; +x_11 = x_44; +x_12 = x_51; +x_13 = x_46; +x_14 = x_48; +x_15 = x_50; +x_16 = x_49; x_17 = x_54; goto block_22; } } else { -x_29 = x_45; -x_30 = x_46; -x_31 = x_47; -x_32 = x_48; -x_33 = x_51; -x_34 = x_49; -x_35 = x_53; +x_29 = x_44; +x_30 = x_45; +x_31 = x_51; +x_32 = x_53; +x_33 = x_46; +x_34 = x_48; +x_35 = x_49; x_36 = x_50; goto block_39; } @@ -1790,18 +1790,18 @@ x_74 = lean_int_ediv(x_65, x_73); lean_dec(x_65); x_75 = lean_int_emod(x_63, x_61); lean_dec(x_63); -x_76 = l_Fin_succ___redArg(x_66); -lean_dec(x_66); +x_76 = l_Fin_succ___redArg(x_64); +lean_dec(x_64); x_77 = lean_nat_dec_le(x_58, x_76); if (x_77 == 0) { lean_dec(x_76); -x_44 = x_64; +x_44 = x_68; x_45 = x_70; -x_46 = x_68; -x_47 = x_75; +x_46 = x_72; +x_47 = x_66; x_48 = x_67; -x_49 = x_72; +x_49 = x_75; x_50 = x_74; x_51 = x_59; goto block_57; @@ -1810,12 +1810,12 @@ else { lean_object* x_78; x_78 = lean_nat_to_int(x_76); -x_44 = x_64; +x_44 = x_68; x_45 = x_70; -x_46 = x_68; -x_47 = x_75; +x_46 = x_72; +x_47 = x_66; x_48 = x_67; -x_49 = x_72; +x_49 = x_75; x_50 = x_74; x_51 = x_78; goto block_57; @@ -1848,18 +1848,18 @@ lean_dec_ref(x_93); x_96 = l_Std_Time_PlainDateTime_ofTimestampAssumingUTC___closed__30; x_97 = lean_int_add(x_96, x_85); lean_dec(x_85); -x_98 = lean_int_mul(x_43, x_83); -lean_dec(x_83); +x_98 = lean_int_mul(x_43, x_81); +lean_dec(x_81); x_99 = lean_int_add(x_97, x_98); lean_dec(x_98); lean_dec(x_97); -x_100 = lean_int_mul(x_41, x_81); -lean_dec(x_81); +x_100 = lean_int_mul(x_41, x_83); +lean_dec(x_83); x_101 = lean_int_add(x_99, x_100); lean_dec(x_100); lean_dec(x_99); -x_102 = lean_int_mul(x_28, x_80); -lean_dec(x_80); +x_102 = lean_int_mul(x_28, x_82); +lean_dec(x_82); x_103 = lean_int_add(x_101, x_102); lean_dec(x_102); lean_dec(x_101); @@ -1876,9 +1876,9 @@ x_108 = lean_unsigned_to_nat(2u); x_109 = lean_nat_add(x_94, x_108); lean_dec(x_94); x_110 = lean_nat_to_int(x_109); -x_64 = x_90; -x_65 = x_82; -x_66 = x_105; +x_64 = x_105; +x_65 = x_80; +x_66 = x_90; x_67 = x_103; x_68 = x_110; goto block_79; @@ -1891,9 +1891,9 @@ lean_dec(x_103); x_112 = lean_nat_sub(x_94, x_106); lean_dec(x_94); x_113 = lean_nat_to_int(x_112); -x_64 = x_90; -x_65 = x_82; -x_66 = x_105; +x_64 = x_105; +x_65 = x_80; +x_66 = x_90; x_67 = x_111; x_68 = x_113; goto block_79; @@ -1910,10 +1910,10 @@ x_122 = lean_int_ediv(x_121, x_27); x_123 = lean_int_dec_eq(x_122, x_43); if (x_123 == 0) { -x_80 = x_116; -x_81 = x_115; -x_82 = x_117; -x_83 = x_118; +x_80 = x_115; +x_81 = x_118; +x_82 = x_116; +x_83 = x_117; x_84 = x_121; x_85 = x_122; goto block_114; @@ -1923,10 +1923,10 @@ else lean_object* x_124; x_124 = lean_int_sub(x_122, x_59); lean_dec(x_122); -x_80 = x_116; -x_81 = x_115; -x_82 = x_117; -x_83 = x_118; +x_80 = x_115; +x_81 = x_118; +x_82 = x_116; +x_83 = x_117; x_84 = x_121; x_85 = x_124; goto block_114; @@ -1944,9 +1944,9 @@ x_133 = l_Std_Time_PlainDateTime_ofTimestampAssumingUTC___closed__31; x_134 = lean_int_dec_eq(x_132, x_133); if (x_134 == 0) { -x_115 = x_128; -x_116 = x_126; -x_117 = x_127; +x_115 = x_126; +x_116 = x_127; +x_117 = x_128; x_118 = x_132; x_119 = x_131; goto block_125; @@ -1956,9 +1956,9 @@ else lean_object* x_135; x_135 = lean_int_sub(x_132, x_59); lean_dec(x_132); -x_115 = x_128; -x_116 = x_126; -x_117 = x_127; +x_115 = x_126; +x_116 = x_127; +x_117 = x_128; x_118 = x_135; x_119 = x_131; goto block_125; @@ -1971,8 +1971,8 @@ x_140 = lean_int_ediv(x_139, x_42); x_141 = lean_int_dec_eq(x_140, x_43); if (x_141 == 0) { -x_126 = x_138; -x_127 = x_137; +x_126 = x_137; +x_127 = x_138; x_128 = x_140; x_129 = x_139; goto block_136; @@ -1982,8 +1982,8 @@ else lean_object* x_142; x_142 = lean_int_sub(x_140, x_59); lean_dec(x_140); -x_126 = x_138; -x_127 = x_137; +x_126 = x_137; +x_127 = x_138; x_128 = x_142; x_129 = x_139; goto block_136; diff --git a/stage0/stdlib/Std/Time/Zoned/Offset.c b/stage0/stdlib/Std/Time/Zoned/Offset.c index 16ec5173c5..6555e887a9 100644 --- a/stage0/stdlib/Std/Time/Zoned/Offset.c +++ b/stage0/stdlib/Std/Time/Zoned/Offset.c @@ -307,7 +307,7 @@ return x_2; LEAN_EXPORT lean_object* l_Std_Time_TimeZone_Offset_toIsoString(lean_object* x_1, uint8_t x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_54; lean_object* x_55; lean_object* x_88; uint8_t x_89; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_54; lean_object* x_55; lean_object* x_88; uint8_t x_89; x_88 = l_Std_Time_TimeZone_Offset_toIsoString___closed__1; x_89 = lean_int_dec_le(x_88, x_1); if (x_89 == 0) @@ -333,8 +333,8 @@ block_12: if (x_2 == 0) { lean_object* x_6; lean_object* x_7; -x_6 = lean_string_append(x_3, x_4); -lean_dec_ref(x_4); +x_6 = lean_string_append(x_4, x_3); +lean_dec_ref(x_3); x_7 = lean_string_append(x_6, x_5); lean_dec_ref(x_5); return x_7; @@ -342,8 +342,8 @@ return x_7; else { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_8 = lean_string_append(x_3, x_4); -lean_dec_ref(x_4); +x_8 = lean_string_append(x_4, x_3); +lean_dec_ref(x_3); x_9 = ((lean_object*)(l_Std_Time_TimeZone_Offset_toIsoString___closed__0)); x_10 = lean_string_append(x_8, x_9); x_11 = lean_string_append(x_10, x_5); @@ -354,10 +354,10 @@ return x_11; block_18: { lean_object* x_17; -x_17 = lean_string_append(x_15, x_16); +x_17 = lean_string_append(x_14, x_16); lean_dec_ref(x_16); x_3 = x_13; -x_4 = x_14; +x_4 = x_15; x_5 = x_17; goto block_12; } @@ -367,23 +367,23 @@ if (x_21 == 0) { lean_object* x_23; uint8_t x_24; x_23 = l_Std_Time_TimeZone_Offset_toIsoString___closed__1; -x_24 = lean_int_dec_lt(x_20, x_23); +x_24 = lean_int_dec_lt(x_19, x_23); if (x_24 == 0) { lean_object* x_25; lean_object* x_26; -x_25 = lean_nat_abs(x_20); -lean_dec(x_20); +x_25 = lean_nat_abs(x_19); +lean_dec(x_19); x_26 = l_Nat_reprFast(x_25); -x_3 = x_19; -x_4 = x_22; +x_3 = x_22; +x_4 = x_20; x_5 = x_26; goto block_12; } else { 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_27 = lean_nat_abs(x_20); -lean_dec(x_20); +x_27 = lean_nat_abs(x_19); +lean_dec(x_19); x_28 = lean_unsigned_to_nat(1u); x_29 = lean_nat_sub(x_27, x_28); lean_dec(x_27); @@ -393,8 +393,8 @@ lean_dec(x_29); x_32 = l_Nat_reprFast(x_31); x_33 = lean_string_append(x_30, x_32); lean_dec_ref(x_32); -x_3 = x_19; -x_4 = x_22; +x_3 = x_22; +x_4 = x_20; x_5 = x_33; goto block_12; } @@ -404,24 +404,24 @@ else lean_object* x_34; lean_object* x_35; uint8_t x_36; x_34 = ((lean_object*)(l_Std_Time_TimeZone_Offset_toIsoString___closed__3)); x_35 = l_Std_Time_TimeZone_Offset_toIsoString___closed__1; -x_36 = lean_int_dec_lt(x_20, x_35); +x_36 = lean_int_dec_lt(x_19, x_35); if (x_36 == 0) { lean_object* x_37; lean_object* x_38; -x_37 = lean_nat_abs(x_20); -lean_dec(x_20); +x_37 = lean_nat_abs(x_19); +lean_dec(x_19); x_38 = l_Nat_reprFast(x_37); -x_13 = x_19; -x_14 = x_22; -x_15 = x_34; +x_13 = x_22; +x_14 = x_34; +x_15 = x_20; x_16 = x_38; goto block_18; } else { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_39 = lean_nat_abs(x_20); -lean_dec(x_20); +x_39 = lean_nat_abs(x_19); +lean_dec(x_19); x_40 = lean_unsigned_to_nat(1u); x_41 = lean_nat_sub(x_39, x_40); lean_dec(x_39); @@ -431,9 +431,9 @@ lean_dec(x_41); x_44 = l_Nat_reprFast(x_43); x_45 = lean_string_append(x_42, x_44); lean_dec_ref(x_44); -x_13 = x_19; -x_14 = x_22; -x_15 = x_34; +x_13 = x_22; +x_14 = x_34; +x_15 = x_20; x_16 = x_45; goto block_18; } @@ -442,11 +442,11 @@ goto block_18; block_53: { lean_object* x_52; -x_52 = lean_string_append(x_49, x_51); +x_52 = lean_string_append(x_50, x_51); lean_dec_ref(x_51); x_19 = x_47; x_20 = x_48; -x_21 = x_50; +x_21 = x_49; x_22 = x_52; goto block_46; } @@ -474,8 +474,8 @@ lean_object* x_66; lean_object* x_67; x_66 = lean_nat_abs(x_57); lean_dec(x_57); x_67 = l_Nat_reprFast(x_66); -x_19 = x_54; -x_20 = x_60; +x_19 = x_60; +x_20 = x_54; x_21 = x_63; x_22 = x_67; goto block_46; @@ -494,8 +494,8 @@ lean_dec(x_70); x_73 = l_Nat_reprFast(x_72); x_74 = lean_string_append(x_71, x_73); lean_dec_ref(x_73); -x_19 = x_54; -x_20 = x_60; +x_19 = x_60; +x_20 = x_54; x_21 = x_63; x_22 = x_74; goto block_46; @@ -513,10 +513,10 @@ lean_object* x_78; lean_object* x_79; x_78 = lean_nat_abs(x_57); lean_dec(x_57); x_79 = l_Nat_reprFast(x_78); -x_47 = x_54; -x_48 = x_60; -x_49 = x_75; -x_50 = x_63; +x_47 = x_60; +x_48 = x_54; +x_49 = x_63; +x_50 = x_75; x_51 = x_79; goto block_53; } @@ -534,10 +534,10 @@ lean_dec(x_82); x_85 = l_Nat_reprFast(x_84); x_86 = lean_string_append(x_83, x_85); lean_dec_ref(x_85); -x_47 = x_54; -x_48 = x_60; -x_49 = x_75; -x_50 = x_63; +x_47 = x_60; +x_48 = x_54; +x_49 = x_63; +x_50 = x_75; x_51 = x_86; goto block_53; }